/* ===== 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; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7;
}
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 {
    min-height: 100vh;
    background: linear-gradient(135deg, #fdf9f2 0%, #f8f3e8 60%, #f5ede0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}
#hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    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.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 2px;
    margin-bottom: 26px;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.85;
    margin-bottom: 34px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.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.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-image-wrap { position: relative; text-align: center; }
.hero-image-wrap img {
    border-radius: 6px;
    width: 100%;
    max-width: 480px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-image-badge {
    position: absolute;
    bottom: 30px; left: -20px;
    background: #fff;
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.hero-image-badge .badge-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem; flex-shrink: 0;
}
.hero-image-badge .badge-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1;
}
.hero-image-badge .badge-text span {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
@media (max-width: 991.98px) {
    .hero-image-wrap { margin-top: 40px; }
    .hero-image-badge { left: 10px; bottom: 20px; }
    .hero-stats { gap: 20px; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
}

/* ===== 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 (TABS) ===== */
#treatments { padding: var(--section-pad) 0; background: var(--bg); }

.treatment-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
}
@media (max-width: 767.98px) {
    .treatment-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .treatment-tabs::-webkit-scrollbar { display: none; }
    .treatment-tab-btn { flex-shrink: 0; }
}
.treatment-tab-btn {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 9px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.treatment-tab-btn i { font-size: 0.85rem; color: var(--gold); }
.treatment-tab-btn:hover,
.treatment-tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(184,134,11,0.25);
}
.treatment-tab-btn.active i,
.treatment-tab-btn:hover i { color: #fff; }

.treatment-panel { display: none; }
.treatment-panel.active { display: flex; }

.treatment-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}
.treatment-detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.treatment-detail-body { padding: 36px 40px; }
.treatment-detail-body .treatment-tag {
    display: inline-block;
    background: rgba(184,134,11,0.08);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.treatment-detail-body h3 {
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.treatment-detail-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 24px;
}
.treatment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.treatment-feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text-body);
}
.treatment-feature-item i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
@media (max-width: 575.98px) {
    .treatment-features { grid-template-columns: 1fr; }
    .treatment-detail-body { padding: 24px 20px; }
}

/* ===== 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: 60px; }
    .consultation-form { padding: 24px 18px; }
}

/* ===== 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); }
