:root {
    --blue: #0A66C2;
    --blue-light: #1a7fd4;
    --blue-deep: #064e9c;
    --blue-pale: #e8f2fc;
    --blue-glow: rgba(10, 102, 194, 0.35);
    --white: #ffffff;
    --off-white: #f5f9ff;
    --text: #0d1b2a;
    --text-muted: #4a6280;
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(10, 102, 194, 0.18);
    --shadow: 0 8px 40px rgba(10, 102, 194, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 102, 194, 0.18);
    --radius: 20px;
    --radius-lg: 32px;
    --transition: all 0.38s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(10, 102, 194, 0.08);
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 30px rgba(10, 102, 194, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 100px;
    max-width: 220px;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 100px;
    max-width: 210px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white !important;
    padding: 9px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px var(--blue-glow);
    transition: var(--transition) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--blue-glow) !important;
    background: rgba(255, 255, 255, 0) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 5% 30px;
    border-bottom: 1px solid var(--blue-pale);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.mobile-menu a:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.mobile-menu.open {
    display: flex;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    background: linear-gradient(160deg, #f0f7ff 0%, #ddeeff 40%, #f5f9ff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.06;
    animation: waveMove 14s ease-in-out infinite alternate;
}

.wave-1 {
    background: radial-gradient(ellipse at 60% 40%, var(--blue) 0%, transparent 65%);
    top: -50%;
    left: -50%;
    animation-duration: 16s;
}

.wave-2 {
    background: radial-gradient(ellipse at 30% 70%, #1a90ff 0%, transparent 60%);
    top: -30%;
    left: -30%;
    animation-duration: 20s;
    animation-direction: alternate-reverse;
    opacity: 0.08;
}

.wave-3 {
    background: radial-gradient(ellipse at 80% 20%, #64b5f6 0%, transparent 55%);
    animation-duration: 12s;
    opacity: 0.05;
}

@keyframes waveMove {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1.2) rotate(8deg);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(10, 102, 194, 0.08);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(26, 127, 212, 0.07);
    bottom: 0;
    left: 10%;
    animation-duration: 11s;
}

@keyframes orbPulse {
    from {
        transform: scale(1);
        opacity: 0.6;
    }

    to {
        transform: scale(1.3);
        opacity: 1;
    }
}

.particles-container {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 102, 194, 0.1);
    border: 1px solid rgba(10, 102, 194, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 24px;
    animation: fadeSlideUp 0.6s ease forwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(10, 102, 194, 0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
    color: var(--blue);
    font-style: italic;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), transparent);
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.7s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px var(--blue-glow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 130%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--blue-glow);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue);
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--blue);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    animation: fadeSlideUp 0.7s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.hero-divider {
    width: 1px;
    background: rgba(10, 102, 194, 0.15);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-image-wrap {
    position: relative;
    width: 420px;
    height: 480px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.hero-card-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(232, 242, 252, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 102, 194, 0.15);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.doc-svg {
    width: 85%;
    height: 85%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 102, 194, 0.12);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
}

.floating-card-1 {
    top: 30px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 2.5s;
}

.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.fc-icon-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.fc-icon-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.fc-text-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.fc-text-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-top: 2px;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SECTIONS COMMON ─── */
section {
    padding: 90px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

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

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ─── ABOUT ─── */
#about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-visual-wrap {
    position: relative;
}

.about-img-bg {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--blue-pale), #c8dff7);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration {
    width: 80%;
    height: 80%;
}

.about-badge-cert {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.15);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-icon {
    font-size: 32px;
}

.cert-text-1 {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cert-text-2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.about-text .section-sub {
    max-width: 100%;
    margin-bottom: 24px;
}

.about-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-mv-card {
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.about-mv-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.about-mv-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.about-mv-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.about-mv-text {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.about-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    flex: 1;
    min-width: 100px;
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.about-stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.about-stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ─── SERVICES ─── */
#services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--blue-pale), transparent);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-card-bg {
    transform: scale(1.5);
    opacity: 0.5;
}

.service-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--blue-pale), #d0e9ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    box-shadow: 0 6px 20px var(--blue-glow);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-expand {
    margin-top: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-card.expanded .service-expand {
    max-height: 200px;
}

.service-expand-inner {
    border-top: 1px solid var(--blue-pale);
    padding-top: 14px;
    margin-top: 4px;
}

.service-expand ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-expand li {
    font-size: 0.83rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

.service-expand li::before {
    content: '→';
    color: var(--blue);
    font-weight: 700;
}

.service-arrow {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    gap: 10px;
}

/* ─── WHY CHOOSE US ─── */
#why {
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#why::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

#why .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

#why .section-tag::before {
    background: rgba(255, 255, 255, 0.5);
}

#why .section-title {
    color: white;
}

#why .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.why-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.why-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

/* ─── APPOINTMENT ─── */
#appointment {
    background: var(--off-white);
}

.appt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appt-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 16px;
}

.appt-info p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.appt-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.appt-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(10, 102, 194, 0.1);
}

.appt-feature-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.appt-feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.appt-form-card {
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.appt-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(10, 102, 194, 0.18);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
    background: white;
    overflow: hidden;
}

.testimonials-track-wrap {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.testimonials-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTrack {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testi-card {
    background: var(--off-white);
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius);
    padding: 28px;
    width: 320px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.testi-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ─── CONTACT ─── */
#contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    background: var(--blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.contact-card-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.map-wrap {
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

.hours-card {
    background: white;
    border: 1px solid rgba(10, 102, 194, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 16px;
}

.hours-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--off-white);
    font-size: 0.88rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text-muted);
    font-weight: 500;
}

.hours-time {
    color: var(--text);
    font-weight: 600;
}

.hours-open {
    color: #22c55e;
    font-weight: 700;
    font-size: 0.78rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 5% 28px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin: 16px 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    color: white;
}

.social-btn:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.87rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-icon {
    margin-top: 1px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-contact-icon-pin,
.footer-contact-icon-phone {
    color: #ff5a5a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
}

.wa-tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
    margin-right: 10px;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
}

.wa-btn::before,
.wa-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: waPulse 2.5s ease-out infinite;
}

.wa-btn::after {
    animation-delay: 1.25s;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.wa-btn:hover {
    transform: scale(1.1);
}

.wa-icon {
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 1;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
    .brand-logo {
        height: 46px;
        max-width: 190px;
    }

    .footer-brand-logo {
        height: 42px;
        max-width: 180px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrap {
        width: 320px;
        height: 370px;
    }

    .floating-card-1 {
        right: -10px;
    }

    .floating-card-2 {
        left: -10px;
    }

    .about-grid,
    .appt-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .brand-logo {
        height: 40px;
        max-width: 160px;
    }

    .footer-brand-logo {
        height: 38px;
        max-width: 155px;
    }

    section {
        padding: 70px 5%;
    }

    .hero-image-wrap {
        width: 280px;
        height: 320px;
    }

    .about-mv {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        gap: 16px;
    }
}
