:root {
    --navy: #0a1628;
    --navy-mid: #121f36;
    --navy-light: #1a2d4a;
    --gold: #c8a55c;
    --gold-light: #e2c882;
    --gold-pale: #f5e6c0;
    --white: #ffffff;
    --off-white: #f0ede8;
    --gray-100: #e8e5e0;
    --gray-200: #c4c0b8;
    --gray-500: #7a7670;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --accent-teal: #2a9d8f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.7rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--off-white), transparent);
    z-index: 2;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 165, 92, 0.12);
    border: 1px solid rgba(200, 165, 92, 0.25);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title em {
    color: var(--gold);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.hero-cta-group .btn-primary {
    min-height: 64px;
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 20px rgba(200, 165, 92, 0.35);
}

.hero-cta-group .btn-primary:hover {
    box-shadow: 0 8px 35px rgba(200, 165, 92, 0.5);
    transform: translateY(-3px);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 165, 92, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease 0.3s both;
}

.hero-eye-graphic {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(200, 165, 92, 0.15), rgba(42, 157, 143, 0.08), transparent 70%);
    border: 1px solid rgba(200, 165, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-eye-graphic::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(200, 165, 92, 0.05);
    animation: pulse-ring 4s ease-in-out infinite;
}

.hero-eye-inner {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--gold), #8a6d32);
    position: relative;
    box-shadow: 0 0 60px rgba(200, 165, 92, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero-eye-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: var(--navy);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-eye-inner::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 30%;
    width: 25px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: rotate(-30deg);
    filter: blur(2px);
}

/* ===== SECTION COMMONS ===== */
.section-light {
    background: var(--off-white);
    padding: 6rem 2rem;
}

.section-dark {
    background: var(--navy);
    padding: 6rem 2rem;
}

.section-alt {
    background: var(--white);
    padding: 6rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-teal));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon.smile {
    background: rgba(42, 157, 143, 0.1);
}

.service-icon.lasik {
    background: rgba(200, 165, 92, 0.1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ===== DOCTOR ===== */
.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(200, 165, 92, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.doctor-credentials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.doctor-credential {
    background: rgba(200, 165, 92, 0.08);
    border: 1px solid rgba(200, 165, 92, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--gray-500);
    text-align: center;
}

.doctor-credential strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.doctor-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-info .specialty {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.doctor-info p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.doctor-highlights {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doctor-highlights li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding-left: 1.5rem;
    position: relative;
}

.doctor-highlights li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 0.35rem;
}

/* ===== REVIEWS ===== */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.review-platform {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    min-width: 180px;
}

.review-platform .stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-platform .score {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.review-platform .platform-name {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 0.3rem;
}

.review-platform .count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(200, 165, 92, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.testimonial-source {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.2rem;
}

/* Google Review Screenshot Cards */
.google-reviews-strip {
    margin-top: 2.5rem;
    text-align: center;
}

.google-reviews-strip h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.2rem;
}

.google-review-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.g-review-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    max-width: 280px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.g-review-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.g-review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4285f4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.g-review-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #202124;
    line-height: 1.2;
}

.g-review-date {
    font-size: 0.65rem;
    color: #70757a;
}

.g-review-stars {
    color: #fbbc04;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.g-review-text {
    font-size: 0.78rem;
    color: #4d5156;
    line-height: 1.5;
}

.g-review-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: #70757a;
}

.g-review-badge svg {
    width: 12px;
    height: 12px;
}

/* Urgencia sutil */
.urgency-bar {
    background: linear-gradient(135deg, rgba(200, 165, 92, 0.12), rgba(200, 165, 92, 0.06));
    border: 1px solid rgba(200, 165, 92, 0.25);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 600;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ===== VIDEOS SECTION ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

/* YouTube 16:9 wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* TikTok vertical wrapper */
.video-wrapper-tiktok {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper-tiktok blockquote {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

.video-wrapper-tiktok iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
}

/* Instagram Reel wrapper */
.video-wrapper-reel {
    position: relative;
    width: 100%;
    min-height: 550px;
    overflow: hidden;
    background: var(--navy);
}

.video-wrapper-reel iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;
    border: 0;
}

.video-card-info {
    padding: 1.2rem 1.5rem;
}

.video-card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.video-card-info p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.video-card-info .video-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.badge-tiktok {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.badge-youtube {
    background: rgba(255, 0, 0, 0.08);
    color: #c00;
}

.badge-instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.08), rgba(253, 29, 29, 0.08));
    color: #833ab4;
}

/* ===== MEDIA PRESENCE ===== */
.media-section {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 6rem 2rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.media-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.media-logo-item:hover {
    opacity: 1;
}

.media-logo-item .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.media-logo-item .logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.media-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.media-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
}

.media-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== PROCESS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent-teal), var(--gold));
    opacity: 0.2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #a88840);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(200, 165, 92, 0.3);
}

.process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== LOCATION + MAP ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    min-height: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    transition: border-color 0.3s;
}

.location-detail:hover {
    border-color: var(--gold);
}

.location-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 165, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-detail p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.location-detail strong {
    color: var(--text-dark);
}

.location-cta {
    margin-top: 1rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.final-cta .section-inner {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.final-cta .btn-primary {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #060e1a;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 0px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

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

    .google-review-cards {
        flex-direction: column;
        align-items: center;
    }

    .g-review-card {
        max-width: 100%;
    }

    .urgency-bar {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .reviews-stats {
        gap: 1.5rem;
    }

    .media-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

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

    .doctor-credentials {
        flex-direction: column;
    }
}