/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    --color-dark-blue: #101f46;
    --color-reppa-blue: #3a57a6;
    --color-light-blue: #2a70de;
    --color-orange: #faa33e;
    --color-purple: #911385;
    --color-green: #0dbf28;
    --text-dark: #333333;
    --white: #ffffff;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s ease; 
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   BARRA FLOTANTE REDES SOCIALES
========================================= */
.floating-socials {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--color-light-blue);
    display: flex;
    flex-direction: column;
    padding: 10px 5px;
    z-index: 1000;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.floating-socials a {
    display: block;
    margin: 8px 0;
}

.floating-socials img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.floating-socials a:hover img { 
    transform: scale(1.2); 
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.brand-logo img { 
    width: 150px; 
}

.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 25px; 
}

.nav-list a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
}

.nav-list a:hover, 
.nav-list a.active {
    color: var(--color-light-blue);
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-content-box {
    background-color: rgba(58, 87, 166, 0.75);
    padding: 50px 60px;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 900px;
    border-radius: 4px;
}

.hero-logo-large {
    width: 350px;
    margin: 0 auto 20px auto;
}

.hero-content-box h1 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* =========================================
   BANDS
========================================= */
.cta-bands {
    display: flex;
    width: 100%;
}

.cta-band {
    flex: 1;
    text-align: center;
    padding: 45px 20px;
    color: var(--white);
    transition: filter 0.3s ease;
}

.cta-band:hover { 
    filter: brightness(1.1); 
    color: var(--white); 
}

.band-orange { background-color: var(--color-orange); }
.band-blue { background-color: var(--color-light-blue); }
.band-purple { background-color: var(--color-purple); }

.cta-band h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.cta-band p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* =========================================
   RESOURCES GRID
========================================= */
.resources-section {
    padding: 70px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 50px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.resource-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.resource-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.resource-card:hover img { 
    transform: scale(1.08); 
}

.resource-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
}

.overlay-orange::after { background-color: rgba(250, 163, 62, 0.75); }
.overlay-blue::after   { background-color: rgba(42, 112, 222, 0.75); }
.overlay-green::after  { background-color: rgba(13, 191, 40, 0.75); }
.overlay-purple::after { background-color: rgba(145, 19, 133, 0.75); }

.resource-text {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.resource-text h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* =========================================
   PRESENTATION
========================================= */
.presentation-section {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentation-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.presentation-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(250, 163, 62, 0.75);
    z-index: 2;
}

.presentation-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.presentation-content h2 {
    font-size: 2.8rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    background-color: var(--color-reppa-blue);
    color: var(--white);
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-download:hover { 
    background-color: var(--color-light-blue); 
}

/* =========================================
   QUOTE SECTION
========================================= */
.quote-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-section blockquote {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.quote-section cite {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background-color: var(--color-dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5e0;
}

.logo-col {
    display: flex;
    justify-content: center;
}

.logo-col img { 
    width: 220px; 
}

.contact-links {
    list-style: none;
    margin-top: 5px;
}

.contact-links a {
    color: #d1d5e0;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.contact-links a:hover { 
    color: var(--white); 
    text-decoration: underline; 
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #8c97b5;
    margin-top: 30px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
    .cta-bands { flex-direction: column; }
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .logo-col img { margin: 0 auto; }
}

@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .nav-list { flex-wrap: wrap; justify-content: center; }
    .hero-content-box { padding: 30px; }
    .hero-content-box h1 { font-size: 2rem; }
    .hero-logo-large { width: 250px; }
    .resources-grid { grid-template-columns: 1fr; }
    .floating-socials { display: none; }
    .quote-section blockquote { font-size: 1.4rem; }
}

/* =========================================
   PÁGINA: SOBRE REPPA
========================================= */
.bg-lime { background-color: #b1d235; color: #fff; }
.bg-green { background-color: #0dbf28; color: #fff; }
.bg-blue { background-color: #2a70de; color: #fff; }
.bg-purple { background-color: #911385; color: #fff; }
.bg-red { background-color: #e21c21; color: #fff; }
.bg-orange { background-color: #faa33e; color: #fff; }
.bg-dark-blue { background-color: #3a57a6; color: #fff; }
.text-white { color: #fff !important; }

.sobre-hero-banner {
    background-color: var(--color-orange);
    padding: 60px 20px;
    color: var(--white);
}

.sobre-hero-banner h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
}

.sobre-intro {
    padding: 50px 20px;
}

.sobre-intro h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sobre-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.sobre-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 60px;
}

.sobre-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.sobre-quote-red {
    background-color: #ce2127;
    color: var(--white);
    padding: 60px 20px;
}

.sobre-quote-red blockquote {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.sobre-quote-red cite {
    font-size: 1.2rem;
    font-style: italic;
}

.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.mv-text {
    background-color: #f7f9fc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
}

.mv-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mv-text p {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
}

.mv-img img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.icon-decorative {
    margin-top: 20px;
    width: 40px;
    height: 40px;
    background-image: url('../images/Logo-png.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    border-radius: 50%;
}

.valores-section {
    padding: 60px 0;
}

.valores-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.valor-box {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valor-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.valor-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.valor-box.full-width {
    grid-column: 1 / -1;
}

.constituida-header {
    padding-top: 60px;
}

.constituida-header h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.constituida-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.c-block {
    padding: 60px 40px;
}

.c-block h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.c-block p {
    font-size: 1.1rem;
}

.details-section {
    padding: 60px 20px;
}

.details-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.detail-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.detail-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.detail-card ul {
    list-style: none;
    color: #444;
    font-size: 0.95rem;
}

.detail-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.detail-card ul li::before {
    content: '•';
    color: var(--color-light-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.equipo-section {
    padding: 80px 20px;
}

.equipo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.equipo-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.equipo-card h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.equipo-card h5 {
    font-size: 0.95rem;
    color: var(--color-light-blue);
    margin-bottom: 10px;
    font-weight: normal;
}

.equipo-card p {
    font-size: 0.9rem;
    color: #666;
}

.banner-cierre {
    background-color: #f7f9fc;
    padding: 60px 20px;
}

.banner-cierre h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    font-weight: normal;
}

@media (max-width: 900px) {
    .mision-vision-grid, .valores-grid, .constituida-blocks {
        grid-template-columns: 1fr;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .sobre-gallery {
        grid-template-columns: 1fr;
    }
    .mision-vision-grid .mv-img:nth-child(2) { grid-row: 2; }
    .mision-vision-grid .mv-img:nth-child(3) { grid-row: 4; }
}

/* =========================================
   PÁGINA: EJES REPPA
========================================= */
.ejes-red-hero {
    background-color: #e21c21;
    color: var(--white);
    padding: 50px 20px;
}

.ejes-red-hero h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin: 0;
}

.ejes-quote-wrapper {
    padding: 60px 20px;
    max-width: 950px;
    margin: 0 auto;
}

.ejes-quote-wrapper p {
    font-size: 1.8rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.ejes-quote-wrapper cite {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

.ejes-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.eje-full-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 60px;
    min-height: 400px;
    color: var(--white);
    overflow: hidden;
}

.eje-full-card .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.eje-full-card .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.overlay-orange-solid { background-color: rgba(250, 163, 62, 0.85); }
.overlay-blue-solid   { background-color: rgba(42, 112, 222, 0.85); }
.overlay-green-solid  { background-color: rgba(13, 191, 40, 0.85); }
.overlay-purple-solid { background-color: rgba(145, 19, 133, 0.85); }

.eje-full-card .content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.eje-full-card h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.eje-full-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
}

.ejes-footer-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.ejes-footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .ejes-grid-full { grid-template-columns: 1fr; }
    .ejes-quote-wrapper p { font-size: 1.5rem; }
    .ejes-red-hero h1 { font-size: 2.5rem; }
    .eje-full-card { padding: 50px 30px; min-height: auto; }
}

/* =========================================
   PÁGINA: NOTICIAS
========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--color-reppa-blue) 0%, var(--color-light-blue) 100%);
    color: var(--white);
    padding: 80px 20px;
}

.page-hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 10px; 
    font-family: var(--font-heading);
}

.page-hero p { 
    font-size: 1.2rem; 
    opacity: 0.9; 
    max-width: 700px; 
    margin: 0 auto; 
}

.noticias-section {
    padding: 60px 20px 100px;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.noticia-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.noticia-img {
    height: 220px;
    overflow: hidden;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-img img {
    transform: scale(1.08);
}

.noticia-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.text-center {
    text-align: center !important;
}

.noticia-body .date {
    font-size: 0.85rem;
    color: var(--color-light-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 1px;
}

.noticia-body h2 {
    font-size: 1.4rem;
    color: var(--color-dark-blue);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.noticia-body p {
    font-size: 0.95rem;
    color: #555;
    flex: 1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.noticia-link {
    display: inline-block;
    color: var(--color-light-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.2s;
}

.noticia-link:hover {
    color: var(--color-reppa-blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .noticias-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.5rem; }
}

/* =========================================
   PÁGINA: ALIANZAS
========================================= */
.alianzas-section {
    padding: 60px 20px 100px;
}

.alianzas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.alianza-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alianza-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.alianza-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.alianza-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .alianzas-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    .alianza-card {
        padding: 20px;
    }
}

/* =========================================
   PÁGINA: CONTACTO
========================================= */
.contacto-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.split-layout.align-start {
    align-items: flex-start;
}

.left-col {
    padding-right: 40px;
}

.social-info {
    margin-bottom: 40px;
}

.social-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons-contact img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: transform 0.2s ease;
    object-fit: cover;
}

.social-icons-contact a:hover img {
    transform: scale(1.1);
}

.instagram-handle {
    font-size: 1.1rem;
    color: var(--color-light-blue);
    font-weight: 600;
}

.form-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    text-align: center;
}

.transparent-form .form-title {
    color: var(--color-light-blue);
}

.flex-group {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
}

.btn-submit-custom {
    width: 100px;
}

.quote-block-contact {
    margin-top: 60px;
}

.quote-block-contact .quote-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.quote-block-contact .quote-author {
    font-size: 1.5rem;
    font-style: italic;
    color: #666;
}

.right-col {
    padding: 50px 40px;
}

.black-text {
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 15px;
}

.blue-text {
    color: var(--color-light-blue);
    text-align: left;
}

.mt-40 {
    margin-top: 40px;
}

.btn-webpay {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f0f0;
    color: var(--text-dark);
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-webpay:hover {
    background-color: #e0e0e0;
}

.btn-webpay svg {
    fill: currentColor;
}

.checkbox-group-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.checkbox-group-inline.multi-line {
    gap: 10px 20px;
}

.checkbox-group-inline .checkbox {
    margin-bottom: 0;
}

.map-section {
    width: 100%;
    height: 400px;
    display: block;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .flex-group {
        flex-direction: column;
        gap: 0;
    }
    .left-col {
        padding-right: 0;
    }
    .right-col {
        padding: 30px 20px;
    }
    .quote-block-contact .quote-text {
        font-size: 2rem;
    }
}

/* =========================================
   FORMULARIOS PRO
========================================= */
.clean-form .form-group {
    margin-bottom: 24px;
}

.clean-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.clean-form input[type="text"],
.clean-form input[type="email"],
.clean-form input[type="tel"],
.clean-form input[type="date"],
.clean-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #2d3748;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.clean-form input[type="text"]:hover,
.clean-form input[type="email"]:hover,
.clean-form input[type="tel"]:hover,
.clean-form input[type="date"]:hover,
.clean-form textarea:hover {
    border-color: #cbd5e1;
}

.clean-form input[type="text"]:focus,
.clean-form input[type="email"]:focus,
.clean-form input[type="tel"]:focus,
.clean-form input[type="date"]:focus,
.clean-form textarea:focus {
    background-color: #ffffff;
    border-color: var(--color-light-blue);
    box-shadow: 0 0 0 4px rgba(42, 112, 222, 0.15);
}

.clean-form .checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: color 0.2s;
}

.clean-form .checkbox:hover {
    color: var(--color-light-blue);
}

.clean-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-light-blue);
    transition: transform 0.2s ease;
}

.clean-form input[type="checkbox"]:hover {
    transform: scale(1.1);
}

.clean-form .btn-primary {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-reppa-blue) 100%);
    border: none;
    color: var(--white);
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(42, 112, 222, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    width: 100%;
}

.clean-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 112, 222, 0.4);
}

.clean-form .btn-primary:active {
    transform: translateY(0);
}