/* ===== ROOT VARIABLES — LIGHT THEME ===== */
:root {
    --gold: #B8860B;
    --gold-light: #D4A017;
    --gold-pale: rgba(184,134,11,0.08);
    --gold-border: rgba(184,134,11,0.25);
    --bg: #FFFFFF;
    --bg-2: #F8F5F0;
    --bg-3: #F2EDE4;
    --bg-card: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-body: #444444;
    --text-muted: #777777;
    --border: rgba(0,0,0,0.08);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
    --white: #FFFFFF;
    --section-pad: 90px;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7;
    max-width: 100vw;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--text-dark); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ===== UTILITY ===== */
.text-gold { color: var(--gold) !important; }

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-sub {
    font-size: 0.97rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}
.divider-gold {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 16px 0 26px;
}
.divider-gold.center { margin: 16px auto 26px; }

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,134,11,0.3);
    color: #fff !important;
}
.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold) !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
#hero {
    background: linear-gradient(135deg, #fdf9f2 0%, #f8f3e8 60%, #f5ede0 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 0 60px;
    width: 100%;
}
#hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(184,134,11,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Trusted tag */
.hero-trusted-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,0.1);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 2px;
}

/* Main H1 */
.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0;
}
.hero-main-title span { color: var(--gold); }

/* 4 patient cards */
.hero-patients-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0 0;
}
.hero-patient-card { text-align: center; }
.hero-patient-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 2px solid var(--gold-border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.hero-patient-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hero-patient-card:hover .hero-patient-img-wrap img { transform: scale(1.04); }
.hero-patient-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Tagline */
.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.9rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
}

/* Stats row */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 0;
    box-shadow: var(--shadow);
}
.hero-stat-item {
    text-align: center;
    padding: 0 32px;
}
.hero-stat-item .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-item .stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    #hero { padding: 105px 0 40px; }
    .hero-patients-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hero-patient-img-wrap { aspect-ratio: 1/1; }
    .hero-stats-row { gap: 0; padding: 16px 0; }
    .hero-stat-item { padding: 8px 16px; }
    .hero-stat-item .stat-num { font-size: 1.5rem; }
    .hero-stat-divider { display: none; }
    .hero-tagline { font-size: 1.15rem; }
    .hero-main-title { font-size: 1.6rem; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 26px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-body);
}
.trust-item i { color: var(--gold); font-size: 1rem; }
.trust-divider { width: 1px; height: 26px; background: var(--border); }
@media (max-width: 767.98px) {
    .trust-item { padding: 5px 14px; font-size: 0.74rem; }
    .trust-divider { display: none; }
}

/* ===== BEFORE & AFTER SLIDER ===== */
#results { padding: var(--section-pad) 0; background: var(--bg-2); }

.results-slider-wrap {
    position: relative;
    overflow: hidden;       /* clip here, not on the track */
}
.results-slider {
    display: flex;
    gap: 24px;
    /* NO overflow:hidden here — track must be wider than wrapper */
    will-change: transform;
}
.result-slide {
    flex-shrink: 0;
    /* width set dynamically by JS */
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}
.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}
.result-card-imgs {
    position: relative;
    overflow: hidden;
}
.result-card-imgs img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.result-card:hover .result-card-imgs img {
    transform: scale(1.03);
}
.result-card-body { padding: 18px 20px; }
.result-card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.result-card-body p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.result-tag {
    display: inline-block;
    background: rgba(184,134,11,0.08);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}
.slider-btn {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.slider-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ===== SPECIALIZED TREATMENTS (CARD ROWS) ===== */
#treatments { padding: var(--section-pad) 0; background: var(--bg); }

.treatment-card-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}
.treatment-card-row.flex-row-reverse { flex-direction: row-reverse; }

.treatment-card-img-wrap {
    flex: 0 0 38%;
    max-width: 38%;
    overflow: hidden;
}
.treatment-card-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.treatment-card-row:hover .treatment-card-img-wrap img { transform: scale(1.04); }

.treatment-card-body {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.treatment-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.treatment-card-body > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}
.treatment-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
}
.tcf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-body);
}
.tcf-item i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

@media (max-width: 991.98px) {
    .treatment-card-row,
    .treatment-card-row.flex-row-reverse {
        flex-direction: column !important;
    }
    .treatment-card-img-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .treatment-card-img-wrap img { min-height: 260px; height: 260px; }
    .treatment-card-body { padding: 24px 22px; }
    .treatment-card-body h3 { font-size: 1.2rem; }
    .treatment-card-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .treatment-card-img-wrap img { min-height: 210px; height: 210px; }
    .treatment-card-body { padding: 18px 16px; }
    .treatment-card-body h3 { font-size: 1.1rem; }
    .treatment-card-features { grid-template-columns: 1fr; }
}

/* ===== SLIDER / SECTION BOTTOM CTA ===== */
.slider-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}
@media (max-width: 575.98px) {
    .slider-bottom-cta { flex-direction: column; align-items: stretch; }
    .slider-bottom-cta .btn-gold,
    .slider-bottom-cta .btn-outline-gold { justify-content: center; width: 100%; }
}

/* ===== WHY US ===== */
#why-us { padding: var(--section-pad) 0; background: var(--bg-2); }
.why-feature {
    display: flex; gap: 18px;
    margin-bottom: 28px; align-items: flex-start;
}
.why-feature-icon {
    width: 48px; height: 48px;
    background: rgba(184,134,11,0.08);
    border: 1.5px solid var(--gold-border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.why-feature-text h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: var(--text-dark); margin-bottom: 5px;
}
.why-feature-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.7; }
.why-highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.why-highlight-box:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.why-highlight-box .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.why-highlight-box p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ===== PROCESS ===== */
#process { padding: var(--section-pad) 0; background: var(--bg); }
.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px 26px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.process-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s ease;
}
.process-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.process-card:hover::after { width: 100%; }
.process-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; font-weight: 700;
    color: rgba(184,134,11,0.12);
    line-height: 1; margin-bottom: 14px;
}
.process-icon {
    width: 54px; height: 54px;
    background: rgba(184,134,11,0.08);
    border: 1.5px solid var(--gold-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--gold);
    margin: 0 auto 18px;
}
.process-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.process-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ===== DOCTORS ===== */
#doctors { padding: var(--section-pad) 0; background: var(--bg-2); }
.doctor-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.doctor-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.doctor-card-img {
    width: 100%; height: 300px;
    object-fit: cover; object-position: top;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}
.doctor-card:hover .doctor-card-img { filter: grayscale(0%); }
.doctor-card-body { padding: 22px; }
.doctor-card-body h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px; }
.doctor-card-body .doctor-title {
    font-size: 0.75rem; color: var(--gold);
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 10px; display: block;
}
.doctor-card-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.doctor-exp-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(184,134,11,0.08);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 1px; padding: 4px 12px;
    border-radius: 2px; margin-top: 12px;
}

/* ===== TESTIMONIALS ===== */
#testimonials { padding: var(--section-pad) 0; background: var(--bg); }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 26px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.testimonial-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.testimonial-card .quote-icon {
    font-size: 2.2rem; color: rgba(184,134,11,0.2);
    line-height: 1; margin-bottom: 14px;
    font-family: Georgia, serif;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 18px; font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--border); padding-top: 14px;
}
.testimonial-author .author-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 700;
    color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.86rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.7rem; color: var(--text-muted); }

/* ===== FAQ ===== */
#faq { padding: var(--section-pad) 0; background: var(--bg-2); }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    background: var(--bg-card);
}
.faq-item.active { border-color: var(--gold-border); }
.faq-question {
    width: 100%; background: var(--bg-card);
    border: none; padding: 18px 22px;
    text-align: left; color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    transition: background 0.2s ease;
}
.faq-question:hover { background: var(--bg-2); }
.faq-question .faq-icon {
    width: 24px; height: 24px;
    background: rgba(184,134,11,0.08);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.68rem; flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    background: var(--bg-card);
    font-size: 0.87rem; color: var(--text-muted); line-height: 1.8;
}
.faq-item.active .faq-answer { display: block; }

/* ===== CONSULTATION ===== */
#consultation { padding: var(--section-pad) 0; background: var(--bg); }
.consultation-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-label {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 7px;
}
.form-control, .form-select {
    background: var(--bg-2) !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text-dark) !important;
    border-radius: 4px; padding: 11px 15px;
    font-size: 0.9rem; transition: border-color 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1) !important;
    outline: none;
}
.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545 !important;
}
.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1) !important;
}
.invalid-feedback {
    display: none;
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 4px;
}
.is-invalid ~ .invalid-feedback { display: block; }
.form-control::placeholder { color: #aaa; }
.form-select option { background: #fff; }
textarea.form-control { resize: vertical; min-height: 110px; }
.consult-info-list { display: flex; flex-direction: column; gap: 16px; }
.consult-info-item {
    display: flex; align-items: flex-start;
    gap: 14px; font-size: 0.9rem;
    color: var(--text-muted); line-height: 1.6;
}
.consult-info-item i {
    color: var(--gold); font-size: 1rem;
    margin-top: 2px; flex-shrink: 0;
    width: 18px; text-align: center;
}
.consult-info-item a { color: var(--text-muted); transition: color 0.3s ease; }
.consult-info-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
#main-footer {
    background: #1a1208;
    border-top: 1px solid rgba(184,134,11,0.2);
    padding: 60px 0 30px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: #fff; margin-bottom: 12px; display: block;
}
.footer-logo span { color: var(--gold-light); }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 0.85rem;
    margin-right: 8px; transition: all 0.3s ease;
}
.footer-social a:hover { background: rgba(184,134,11,0.2); border-color: var(--gold); color: var(--gold-light); }
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    font-size: 0.84rem; color: rgba(255,255,255,0.45);
    transition: color 0.3s ease;
    display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a i { font-size: 0.58rem; color: var(--gold); }
.footer-contact-item {
    display: flex; gap: 12px;
    margin-bottom: 14px; align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color 0.3s ease; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 22px; margin-top: 36px;
    font-size: 0.76rem; color: rgba(255,255,255,0.25);
}
.disclaimer-bar {
    background: #120e05;
    border-top: 1px solid rgba(184,134,11,0.1);
    padding: 12px 0;
    font-size: 0.7rem; color: rgba(255,255,255,0.25); line-height: 1.6;
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
    position: fixed; bottom: 90px; right: 20px;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff; border: none; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 999;
    box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { transform: translateY(-3px); }
@media (min-width: 992px) { #scrollTop { bottom: 30px; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    :root { --section-pad: 56px; }
    .consultation-form { padding: 20px 16px; }
    .section-title { font-size: 1.6rem; }
    .why-highlight-box { padding: 20px 12px; }
    .why-highlight-box .big-num { font-size: 2.4rem; }
    /* Remove large gap on mobile for consultation row */
    #consultation .row.g-5 { --bs-gutter-y: 2rem; }
    #why-us .row.g-5 { --bs-gutter-y: 2rem; }
}

/* ===== CLINIC HIGHLIGHTS ===== */
#clinic { padding: var(--section-pad) 0; background: var(--bg-2); }

.clinic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.clinic-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s ease;
}
.clinic-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.clinic-card:hover::after { width: 100%; }
.clinic-card-icon {
    width: 54px; height: 54px;
    background: rgba(184,134,11,0.08);
    border: 1.5px solid var(--gold-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
    margin-bottom: 20px;
    transition: background 0.3s ease;
}
.clinic-card:hover .clinic-card-icon { background: rgba(184,134,11,0.15); }
.clinic-card h4 {
    font-size: 1.05rem; color: var(--text-dark);
    margin-bottom: 10px;
}
.clinic-card p {
    font-size: 0.86rem; color: var(--text-muted);
    line-height: 1.75; margin: 0;
}

/* ===== LEGAL PAGES (Privacy Policy / Terms) ===== */
.legal-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 32px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}
.legal-content h4:first-child { margin-top: 0; }
.legal-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}
.legal-content ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 6px;
}
.legal-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--gold-light); }


