/* ==========================================================================
   GLOWMED® LUXURY DARK & GOLD DESIGN SYSTEM (style.css)
   ========================================================================== */

/* ---------- 1. ROOT DESIGN TOKENS ---------- */
:root {
    /* Color Palette */
    --bg-dark-obsidian: #08090d;
    --bg-card-glass: rgba(17, 19, 28, 0.7);
    --bg-card-solid: #11131c;
    --bg-card-hover: #191c29;
    
    --gold-primary: #d4af37;
    --gold-secondary: #aa7c11;
    --gold-light: #f5e4b3;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa7c11 50%, #d4af37 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.2);
    
    --text-primary: #f5f7ff;
    --text-secondary: #a0a5c0;
    --text-muted: #676b88;
    
    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-hover: rgba(212, 175, 55, 0.4);
    
    /* System Styling Variables */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 1.2 LIGHT THEME TOKENS ---------- */
body.light-theme {
    --bg-dark-obsidian: #f3f4f7;
    --bg-card-glass: rgba(255, 255, 255, 0.9);
    --bg-card-solid: #ffffff;
    --bg-card-hover: #fafbfc;
    
    --text-primary: #000000;
    --text-secondary: #1f2229;
    --text-muted: #4e525a;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-hover: rgba(170, 124, 17, 0.4);
}

body.light-theme .alt-bg {
    background-color: #ebedf2;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .wa-channel-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(37, 211, 102, 0.01) 100%);
    border-color: rgba(37, 211, 102, 0.15);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.02);
}

body.light-theme .doctor-status-banner-section {
    background: #f3f4f7;
}

body.light-theme .booking-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

body.light-theme .status-banner-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

body.light-theme .doctor-profile-card {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
}

body.light-theme .procedure-card,
body.light-theme .testimonial-card,
body.light-theme .edu-card {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

body.light-theme footer {
    background: #f7f8fa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme footer h2,
body.light-theme footer h3 {
    color: #12131a;
}

body.light-theme footer p,
body.light-theme footer a {
    color: #4a5568;
}

body.light-theme footer .footer-credits p {
    color: #a0aec0;
}

body.light-theme .luxury-header {
    background: rgba(255, 255, 255, 0.85);
}

body.light-theme .doctor-status-bar {
    background: #f1f3f9;
}

body.light-theme .day-badge.available {
    background: rgba(46, 204, 113, 0.08);
}

body.light-theme .day-badge.closed {
    background: rgba(231, 76, 60, 0.08);
}

/* ---------- 2. RESET & GLOBAL STYLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-obsidian);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-secondary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    line-height: 1.35;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.alt-bg {
    background-color: rgba(17, 19, 28, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.gradient-text {
    background: linear-gradient(135deg, #f5e4b3 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 800;
}

/* ---------- 2.5 DOCTOR STATUS BIG BANNER ---------- */
.doctor-status-banner-section {
    padding: 20px 0 10px;
    background: var(--bg-dark-obsidian);
}

.status-banner-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.status-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.status-icon {
    font-size: 1.4rem;
}

.status-banner-header h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin: 0;
    flex-grow: 1;
    color: var(--text-primary);
}

.admin-edit-trigger {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-edit-trigger:hover {
    background: var(--gold-gradient);
    color: #000;
}

.status-banner-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.days-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.day-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.day-badge.available {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.2);
}

.day-badge.closed {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
}

.time-status-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.02);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.time-label {
    color: var(--text-secondary);
}

.time-value {
    color: var(--gold-primary);
    font-weight: 700;
}

.days-status-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-row-grouped {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.status-label-text {
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-label-text.green {
    color: #2ecc71;
}

.status-label-text.red {
    color: #e74c3c;
}
.admin-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 13, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2100;
    justify-content: center;
    align-items: center;
}

.admin-modal-overlay.active {
    display: flex;
}

.admin-modal-content {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    position: relative;
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.modal-close {
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-instruction {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.week-days-editor {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.day-edit-btn {
    padding: 10px 5px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.day-edit-btn.available {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.2);
}

/* ---------- 3. GOLDEN TOP BAR MESSAGE ---------- */
.glow-top-bar {
    background: #000;
    border-bottom: 1px solid var(--gold-primary);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.scroll-content span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-right: 50px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ---------- 4. PREMIUM GLASS HEADER ---------- */
.luxury-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 9, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper img {
    height: 48px;
    width: auto;
    filter: drop-shadow(var(--gold-glow));
}

.brand-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.brand-text p {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold-primary);
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta-gold {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 22px;
    border-radius: 40px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--gold-glow);
}

.btn-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-call-icon {
    display: none; /* Shows on mobile */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.btn-theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-theme-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

body.light-theme .btn-theme-toggle {
    background: rgba(0, 0, 0, 0.03);
}

/* ---------- 5. HERO SECTION (JORDAR LUXURY) ---------- */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-glow-orb-1 {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-orb-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 25px;
}

.pulse-gold {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary-luxury {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 45px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    box-shadow: var(--gold-glow);
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary-luxury {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 45px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.btn-secondary-luxury:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- 6. SECTION HEADER ---------- */
.section-header {
    max-width: 600px;
    margin: 0 auto 55px;
}

.luxury-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.luxury-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 15px;
    line-height: 1.35;
}

.luxury-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ---------- 7. INTERACTIVE QUIZ CARD ---------- */
.quiz-glass-card {
    background: var(--bg-card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.quiz-step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quiz-step.active {
    display: block;
    opacity: 1;
}

.quiz-step h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quiz-option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.quiz-option-card:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.option-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.quiz-option-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.quiz-option-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.btn-back {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: block;
    margin: 0 auto;
}

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

/* ---------- 8. CLINIC PROCEDURES GRID ---------- */
.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.procedure-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.procedure-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-inner {
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.procedure-card:hover .icon-box {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: var(--gold-glow);
}

.procedure-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.procedure-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.btn-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-card-action i {
    transition: transform 0.3s;
}

.procedure-card:hover .btn-card-action i {
    transform: translateX(5px);
}

/* ---------- 9. DYNAMIC SLIDERS / TABS ---------- */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 700;
    box-shadow: var(--gold-glow);
}

.slider-outer-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-wrapper {
    display: none;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.slider-wrapper.active {
    display: block;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg-card-solid);
    cursor: zoom-in;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-caption-bar h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.slide-zoom-hint {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-nav:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.1s linear;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--gold-primary);
}

.slider-empty-msg {
    padding: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    background: var(--bg-card-solid);
}

/* ---------- 10. WHATSAPP CHANNEL CARD ---------- */
.wa-channel-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(37, 211, 102, 0.01) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.05);
}

.wa-channel-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wa-icon-large {
    font-size: 3rem;
    color: #25D366;
    line-height: 1;
}

.wa-text h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.wa-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-wa-channel {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 14px 28px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa-channel:hover {
    background: #1da154;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

/* ---------- 11. DOCTOR PROFILE CARD ---------- */
.doctor-profile-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.doctor-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-image-container img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--gold-glow);
    object-fit: cover;
    transition: var(--transition-smooth);
}

body.light-theme .doctor-image-container img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.08);
}

.doctor-name {
    font-size: 2.2rem;
    margin: 5px 0 12px;
}

.doctor-qualifications {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.divider-gold {
    height: 1px;
    background: var(--gold-gradient);
    margin: 20px 0;
    width: 150px;
}

.doctor-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.doc-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
}

.doc-badge i {
    color: var(--gold-primary);
}

.doctor-credentials-visual {
    background: rgba(255,255,255,0.01);
    border-left: 1px solid rgba(255,255,255,0.05);
    padding-left: 50px;
}

.experience-box {
    margin-bottom: 35px;
}

.exp-num {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.cred-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cred-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* ---------- 11.5 CLINICAL PROTOCOLS & PATIENT CARE ---------- */
#protocols {
    background: var(--bg-dark-obsidian);
}

.protocol-subheading {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.protocol-subheading i {
    color: var(--gold-primary);
}

/* Treatment Journey Timeline */
.protocol-journey-container {
    margin-bottom: 60px;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold-primary);
    margin: 0 auto 20px;
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    border-color: var(--gold-primary);
    background: var(--bg-card-hover);
}

.timeline-step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 10px;
}

/* Care Instructions */
.care-instructions-container {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.care-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 0;
}

.care-tab-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.care-tab-btn:hover, .care-tab-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212,175,55,0.08);
}

body.light-theme .care-tab-btn {
    background: rgba(0,0,0,0.02);
}

.care-tab-content {
    display: none;
}

.care-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.care-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
}

body.light-theme .care-card {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.05);
}

.care-card h4 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill-pre {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
}

.pill-post {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
}

.care-card ul {
    list-style: none;
}

.care-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.care-card li i {
    color: var(--gold-primary);
    margin-top: 3px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .care-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- 12. REVIEW & TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
}

.stars-gold {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-author {
    font-weight: 700;
    font-size: 0.85rem;
}

.client-author span {
    font-weight: 400;
    color: var(--text-muted);
}

.btn-review-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-review-google:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

/* ---------- 13. EXPERT EDUCATIONAL GUIDES ---------- */
.edu-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.edu-card {
    background: var(--bg-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.edu-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.edu-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.edu-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.btn-edu-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.btn-edu-link:hover {
    color: var(--text-primary);
}

/* ---------- 14. BOOKING & AI WAITLIST ---------- */
.booking-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.booking-icon-header {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.booking-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.booking-card .subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.booking-card .desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.btn-submit-premium {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--gold-glow);
    margin-top: 10px;
}

.btn-submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Eka widget container styling */
.eka-widget-anchor {
    width: 100%;
    min-height: 500px;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--gold-primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eka-loading p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- 15. MAP & DIRECTIONS ---------- */
.directions-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.clinic-info-details {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    line-height: 1;
}

.info-row h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    margin-bottom: 5px;
}

.info-row p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-row .plus-code, .info-row .emerg-contact {
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 5px;
}

.action-buttons-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-location-action {
    flex: 1;
    min-width: 140px;
    padding: 12px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
}

.btn-maps {
    background: var(--gold-gradient);
    color: #000;
}

.btn-maps:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.btn-socials {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-socials:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--gold-primary);
}

.social-connect-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-connect-bar a {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.social-connect-bar a:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.google-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 350px;
}

.google-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- 16. PERSISTENT FLOATING BUTTONS ---------- */
.persistent-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    position: relative;
}

.float-btn span {
    position: absolute;
    right: 64px;
    background: #000;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    white-space: nowrap;
}

.float-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.float-wa {
    background: #25D366;
}

.float-wa:hover {
    background: #1da154;
    transform: scale(1.1);
}

.float-book {
    background: var(--gold-gradient);
    color: #000;
}

.float-book:hover {
    transform: scale(1.1);
    box-shadow: var(--gold-glow);
}

.float-top {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.float-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-top:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

/* ---------- 17. LIGHTBOX STYLING ---------- */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 13, 0.95);
    backdrop-filter: blur(25px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--gold-primary);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.lightbox-nav-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

.lightbox-img-wrapper {
    max-width: 80%;
    max-height: 80vh;
    text-align: center;
}

.lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    border: 1px solid var(--border-color);
}

.lightbox-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

/* ---------- 18. LUXURY FOOTER ---------- */
footer {
    background: #040508;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand-column img {
    height: 40px;
    margin-right: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 1.3rem;
}

.footer-brand-column p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-links-column h3, .footer-contact-column h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column li {
    margin-bottom: 12px;
}

.footer-links-column a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links-column a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact-column p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact-column p i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.footer-credits {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-credits p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---------- 12.5 INTERACTIVE BEFORE/AFTER SPLIT SLIDER ---------- */
.comparison-showcase-container {
    margin-top: 60px;
    background: var(--bg-card-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.comparison-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.comparison-toggle {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 0;
}

.comp-toggle-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comp-toggle-btn:hover, .comp-toggle-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212,175,55,0.08);
}

body.light-theme .comp-toggle-btn {
    background: rgba(0,0,0,0.02);
}

.split-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    user-select: none;
}

.split-img-before, .split-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.split-img-before img, .split-img-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before is on top, and its width will change dynamically */
.split-img-before {
    z-index: 2;
    width: 50%; /* Starts at 50% split */
    border-right: 2px solid var(--gold-primary);
}

.split-img-after {
    z-index: 1;
}

.label-badge {
    position: absolute;
    bottom: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.label-badge.before {
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.label-badge.after {
    right: 20px;
    background: var(--gold-gradient);
    color: #000;
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    margin-left: -20px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    width: 2px;
    height: 100%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
}

.handle-button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-card-solid);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212,175,55,0.3);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.slider-handle:hover .handle-button {
    transform: scale(1.1);
}

.case-ledger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.case-ledger-card {
    background: rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition-smooth);
}

.case-ledger-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

body.light-theme .case-ledger-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.06);
}

.case-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 8px;
}

.case-header h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-primary);
}

.case-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.case-body p strong {
    color: var(--text-primary);
}

.case-outcome {
    border-top: 1px dashed var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .case-ledger-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- 15. CLINICAL FAQ ACCORDION ---------- */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

body.light-theme .faq-item {
    background: #ffffff;
    border-color: rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ---------- 16. GLOWMED® FLOATING CONTROL CENTER ---------- */
.glowmed-control-center {
    position: fixed;
    top: 200px;
    right: 20px;
    z-index: 99999;
    width: 190px;
    background: rgba(17, 19, 28, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    font-family: var(--font-body);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, width 0.3s ease;
    user-select: none;
    touch-action: none;
}

.glowmed-control-center:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.control-center-handle {
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 8px 12px;
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.handle-dots {
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 5px;
}

.handle-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.btn-widget-collapse {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0 4px;
    display: flex;
    align-items: center;
}

.control-center-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.glowmed-control-center.collapsed .control-center-body {
    display: none;
}

.glowmed-control-center.collapsed {
    width: auto;
}

.glowmed-control-center.collapsed .handle-title {
    display: none;
}

.glowmed-control-center.collapsed .btn-widget-collapse i {
    transform: rotate(180deg);
}

.widget-row {
    display: flex;
    gap: 8px;
}

.widget-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.widget-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary);
}

.widget-lang-dropdown {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
}

.widget-lang-dropdown.active {
    display: flex;
}

.widget-dropdown-item {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
}

.widget-dropdown-item:hover, .widget-dropdown-item.active {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary);
}

.widget-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 4px 0;
}

.widget-ecosystem-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ecosystem-link {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
}

.ecosystem-link:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    transform: translateX(3px);
}

.ecosystem-link i {
    color: var(--gold-primary);
}

/* Light theme support */
body.light-theme .glowmed-control-center {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

body.light-theme .widget-btn {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
    color: #111;
}

body.light-theme .widget-btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

body.light-theme .ecosystem-link {
    color: #333;
}

body.light-theme .ecosystem-link:hover {
    background: rgba(212, 175, 55, 0.08);
}

/* Hide Google Translate original top bar */
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-te-gadget {
    display: none !important;
}
.goog-te-combo {
    display: none !important;
}

/* ---------- 17. HORIZONTAL TABS ROLLER SCROLLER ---------- */
.roller-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 10px;
    margin-bottom: 25px;
}

.scroll-container {
    display: flex !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-grow: 1;
    gap: 10px;
    padding: 5px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Safari/Chrome */
}

.roller-nav-btn {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    z-index: 10;
    flex-shrink: 0;
}

.roller-nav-btn:hover {
    background: var(--gold-primary);
    color: #111;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

body.light-theme .roller-nav-btn {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Ensure child buttons do not wrap */
.care-tabs button, .comparison-toggle button {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---------- 18. GOOGLE REVIEWS SLIDER ---------- */
.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 15px;
    margin-top: 30px;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    flex-grow: 1;
    padding: 10px 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 992px) {
    .review-card {
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

.review-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.1);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.review-author-meta h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.review-author-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-g-logo {
    width: 18px;
    height: 18px;
}

.review-stars {
    color: #f1c40f;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.review-nav-btn {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    z-index: 10;
}

.review-nav-btn:hover {
    background: var(--gold-primary);
    color: #111;
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

/* Google Verified Rating Badge Styles */
.google-rating-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.rating-badge-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rating-g {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-g i {
    color: #4285f4; /* Google blue */
    font-size: 1rem;
}

.rating-score {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: rgba(212,175,55,0.1);
    padding: 2px 8px;
    border-radius: 6px;
}

.rating-stars-badge {
    color: #f1c40f;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.rating-verified {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-verified i {
    color: #2ecc71; /* Success green */
}

body.light-theme .rating-badge-item {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* ---------- 19. CASE STUDY LIGHTBOX ---------- */
.case-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 13, 0.95);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(20px);
}

.case-lightbox.active {
    display: flex;
}

.case-lightbox-content {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    animation: casePop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes casePop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.case-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.case-lightbox-close:hover {
    color: var(--gold-primary);
}

.case-lightbox-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.case-lightbox-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 10px 0 20px 0;
}

.case-lightbox-divider {
    height: 1px;
    background: rgba(212,175,55,0.15);
    margin-bottom: 25px;
}

.case-lightbox-section {
    margin-bottom: 20px;
}

.case-lightbox-section h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.case-lightbox-section p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.case-lightbox-section.outcome p {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Add zoom button styles inside case cards */
.case-zoom-trigger {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: 15px;
    align-self: flex-start;
}

.case-zoom-trigger:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212,175,55,0.08);
}

body.light-theme .case-lightbox {
    background: rgba(240, 242, 245, 0.95);
}

body.light-theme .case-zoom-trigger {
    background: rgba(0,0,0,0.02);
}

/* ---------- 19. RESPONSIVE DESIGN (MEDIA QUERIES) ---------- */
@media (max-width: 992px) {
    .desktop-nav {
        display: none; /* Mobile Menu handled via clean scroll down CTAs */
    }
    
    .btn-call-icon {
        display: flex;
    }
    
    .doctor-profile-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }
    
    .doctor-credentials-visual {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        padding-top: 30px;
    }
    
    .booking-split-container {
        grid-template-columns: 1fr;
    }
    
    .directions-split {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn-primary-luxury, .btn-secondary-luxury {
        width: 100%;
        max-width: 320px;
        padding: 14px 28px;
    }
    
    .trust-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .quiz-glass-card {
        padding: 30px 20px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
    }

    .glowmed-control-center {
        top: auto !important;
        bottom: 85px !important;
        right: 15px !important;
        left: auto !important;
        width: 170px;
    }
}

/* Global Google Translate Neutralizers */
html {
    top: 0px !important;
    position: static !important;
}
body {
    top: 0px !important;
    position: static !important;
    margin-top: 0px !important;
}
.skiptranslate {
    display: none !important;
}

