﻿/* ============================================
   Dr. Mohsin Website - Main Stylesheet
   Exact match to original Next.js project
   Colors: Navy #0A1428, Gold #C9A227, Slate #7A92AE
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0A1428;
    --navy-deep: #0A1320;
    --navy-mid: #0C1524;
    --navy-light: #0D1730;
    --navy-card: #102A43;
    --gold: #C9A227;
    --gold-light: #E3C565;
    --gold-bright: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #E8C766, #C9A227);
    --gold-marquee: linear-gradient(90deg, #B8941E, #D4AF37, #E3C565, #D4AF37, #B8941E);
    --slate: #7A92AE;
    --slate-light: #9FB3CC;
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #6B84A8;
    --border: rgba(255,255,255,0.05);
    --border-gold: rgba(201,162,39,0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    background: var(--navy);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container-lg { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   TopBar â€” Gold Marquee
   ============================================ */
.topbar-marquee {
    position: relative; z-index: 50;
    background: var(--gold-marquee);
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee-scroll 40s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.marquee-item i { color: var(--navy); font-size: 14px; }
.marquee-item span { color: var(--navy-mid); }
.marquee-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(16,42,67,0.25);
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ============================================
   Header / Navbar
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(12,21,36,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.header-inner { }
.header-container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.brand {
    text-decoration: none; flex-shrink: 0;
}
.brand-full { display: block; }
.brand-name-full {
    font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: #fff;
}
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-secondary); text-decoration: none;
    transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.desktop-cta { display: flex; align-items: center; gap: 8px; }
.btn-header {
    padding: 10px 20px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.04em; border: 1px solid var(--gold);
    background: transparent; color: var(--gold);
}
.btn-header:hover { background: var(--gold); color: var(--navy); }
.mobile-toggle {
    display: none; background: none; border: none;
    color: var(--text-primary); font-size: 20px; cursor: pointer;
    padding: 8px; border-radius: 8px;
}
.lang-switcher { margin-right: 4px; }
.lang-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 6px;
    background: rgba(255,255,255,0.05); text-decoration: none;
    transition: background 0.2s;
}
.lang-btn:hover { background: rgba(201,162,39,0.15); }
.lang-label { font-size: 11px; font-weight: 700; color: var(--gold-light); }

/* Buttons */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; font-size: 13px; font-weight: 600;
    border-radius: 8px; text-decoration: none;
    background: var(--gold-gradient); color: var(--navy);
    transition: all 0.25s; border: none; cursor: pointer;
}
.btn-gold:hover { background: linear-gradient(135deg, #F0D47E, #D4AF37); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,162,39,0.35); }
.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; font-size: 13px; font-weight: 600;
    border-radius: 8px; text-decoration: none;
    background: transparent; border: 1.5px solid var(--gold); color: #8A6D1F;
    transition: all 0.25s; cursor: pointer;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full {
    width: 100%; justify-content: center;
    padding: 15px 24px; font-size: 15px; font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(201,162,39,0.2);
}
.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,162,39,0.3);
}
.btn-full:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201,162,39,0.2);
}

/* Mobile Menu */
.mobile-menu {
    display: none; position: absolute; inset-x: 0; top: 100%;
    max-height: 0; opacity: 0; overflow-y: auto;
    background: var(--navy-mid);
    border-bottom: none;
    transition: max-height 0.3s, opacity 0.3s;
    pointer-events: none;
}
.mobile-menu.open {
    max-height: calc(100vh - 68px); opacity: 1;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    pointer-events: auto;
}
.mobile-menu-inner { padding: 16px 20px; }
.mobile-link {
    display: block; padding: 12px 16px; font-size: 15px; font-weight: 500;
    color: #E2E8F0; text-decoration: none; border-radius: 8px;
    transition: all 0.2s;
}
.mobile-link:hover { background: rgba(201,162,39,0.1); color: var(--gold-light); }
.mobile-cta { padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }

/* ============================================
   Hero Section — Full Image
   ============================================ */
.hero-full {
    width: 100%;
    margin-top: -104px;
    padding-top: 104px;
    position: relative;
}
.hero-full-img {
    width: 100%;
    line-height: 0;
}
.hero-full-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   Hero Section — Full Original Design
   ============================================ */
.hero {
    position: relative; overflow: hidden;
    min-height: 600px; height: 100svh;
    margin-top: -104px; padding-top: 104px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0A1428 0%, #0D1730 50%, #102A43 100%);
}
.hero-img-wrapper {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 55%; z-index: 1;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
}
.hero-gradient {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(90deg, #0A1428 0%, rgba(10,20,40,0.85) 35%, rgba(10,20,40,0.4) 60%, transparent 100%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 10;
    height: 100%; display: flex; align-items: center;
    max-width: 1280px; margin: 0 auto; padding: 64px 2vw 80px;
}
.hero-left { max-width: 560px; }
.hero-right {
    position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
    z-index: 15; text-align: right;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}
.hero-eyebrow span {
    font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold-light);
}
.hero-eyebrow-line {
    flex: 1; height: 1px; max-width: 120px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Title */
.hero-title { margin-bottom: 20px; }
.hero-title-line {
    display: block;
    font-size: clamp(36px, 6vw, 64px);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700; line-height: 1.1;
    color: #fff;
}
.hero-title-line.gold { color: var(--gold); }

/* Doctor Info */
.hero-doctor-name {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700; color: #fff;
    margin-bottom: 6px;
}
.hero-doctor-titles {
    font-size: 14px; color: var(--slate-light);
    margin-bottom: 16px;
}
.hero-desc {
    font-size: 15px; line-height: 1.7; color: #8FA8C8;
    margin-bottom: 28px; max-width: 48ch;
}

/* Info Cards */
.hero-cards {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; margin-bottom: 32px;
}
.hero-card {
    padding: 14px; border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.hero-card-icon {
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.1);
    margin-bottom: 10px;
}
.hero-card-icon i { color: var(--gold); font-size: 14px; }
.hero-card-label {
    font-size: 12px; font-weight: 700; color: var(--gold-light);
    margin-bottom: 4px;
}
.hero-card-value { font-size: 12px; color: #8FA8C8; line-height: 1.4; }

/* CTA Buttons */
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-hero {
    padding: 14px 28px; font-size: 14px; font-weight: 600;
    border-radius: 8px;
}
.btn-hero i { font-size: 12px; }

/* Right Badge */
.hero-badge-right {
    padding: 12px 16px; border-left: 3px solid var(--gold);
    text-align: left;
}
.hero-badge-label {
    display: block; font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; color: var(--gold-light);
    margin-bottom: 2px;
}
.hero-badge-sub {
    display: block; font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; color: #8FA8C8;
}

/* Bottom Bar */
.hero-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 15; padding: 16px 24px;
    background: rgba(10,20,40,0.7);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; color: #7A92AE;
    flex-wrap: wrap; gap: 12px;
}
.hero-bottom-left {
    display: flex; align-items: center; gap: 8px;
}
.hero-bottom-dept { font-weight: 700; letter-spacing: 0.08em; color: #B0C4DE; }
.hero-bottom-sep { color: rgba(255,255,255,0.2); }
.hero-bottom-num { font-weight: 600; color: var(--gold-light); }
.hero-bottom-center { font-weight: 500; letter-spacing: 0.05em; }
.hero-bottom-right {
    display: flex; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 0.04em;
}
.hero-bottom-dot { color: rgba(255,255,255,0.2); }

/* EKG Animation */
.hero-ekg {
    position: absolute; bottom: 80px; left: 0; right: 0;
    z-index: 12; height: 60px; pointer-events: none;
    opacity: 0.5;
}
.hero-ekg svg { width: 100%; height: 100%; }
.ekg-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: ekg-draw 4s ease-in-out infinite;
}
@keyframes ekg-draw {
    0% { stroke-dashoffset: 1200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1200; }
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-img-wrapper { width: 50%; }
    .hero-right { display: none; }
}
@media (max-width: 768px) {
    .hero-img-wrapper {
        width: 100%; opacity: 0.3;
    }
    .hero-gradient {
        background: linear-gradient(180deg, rgba(10,20,40,0.6) 0%, #0A1428 100%);
    }
    .hero-content { padding: 40px 20px 100px; }
    .hero-left { max-width: 100%; }
    .hero-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Section Common (Legacy classes)
   ============================================ */
.section { padding: 80px 0; }
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: #7A92AE; margin-bottom: 12px;
}
.section-title {
    font-size: clamp(24px, 4vw, 32px); font-weight: 800;
    line-height: 1.3; color: var(--text-primary);
}
.section-title span { color: var(--gold); }
.section-desc {
    font-size: 15px; line-height: 1.7; color: #7A92AE;
    margin-top: 12px; max-width: 56ch; margin-left: auto; margin-right: auto;
}
.section-divider {
    width: 64px; height: 2px; margin: 24px auto 0;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5), transparent);
}

/* ============================================
   About Section â€” Doctor Info
   ============================================ */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A1428 0%, #0D1730 50%, #0A1428 100%);
    padding: 0;
}
.about-glow {
    pointer-events: none;
    position: absolute;
    top: -160px;
    right: -192px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    opacity: 0.04;
    background: radial-gradient(circle, #C9A227 0%, transparent 70%);
}
.about-container {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 20px 56px;
}
@media (min-width: 640px) {
    .about-container { padding: 64px 32px 80px; }
}

/* Eyebrow */
.about-eyebrow {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #6B84A8;
    margin-bottom: 12px;
}
@media (min-width: 640px) {
    .about-eyebrow { font-size: 11px; }
}

/* Heading */
.about-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    color: #FFFFFF;
    margin-bottom: 40px;
}
@media (min-width: 640px) {
    .about-heading { font-size: 30px; margin-bottom: 48px; }
}
@media (min-width: 1024px) {
    .about-heading { font-size: 34px; }
}

/* Tab Navigation */
.about-tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.about-tab-list {
    display: flex;
    align-items: center;
    gap: 0;
}
.about-tab-divider {
    width: 1px;
    height: 20px;
    margin: 0 12px;
    background: rgba(255,255,255,0.08);
}
@media (min-width: 640px) {
    .about-tab-divider { margin: 0 16px; }
}
.about-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.25s;
}
.about-tab-num {
    font-size: 22px;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    color: rgba(107,132,168,0.5);
    transition: color 0.25s;
}
.about-tab-btn.active .about-tab-num { color: #C9A227; }
.about-tab-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B84A8;
    transition: color 0.25s;
}
@media (min-width: 640px) {
    .about-tab-label { font-size: 12px; }
}
.about-tab-btn.active .about-tab-label { color: #F1F5F9; }
.about-tab-indicator {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 1px;
    background: #C9A227;
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.3s;
}
.about-tab-btn.active .about-tab-indicator {
    transform: scaleX(1);
    opacity: 1;
}

/* Separator */
.about-separator {
    width: 100%;
    height: 1px;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.06);
}
@media (min-width: 640px) {
    .about-separator { margin-bottom: 48px; }
}

/* Main Grid â€” 2-column */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 340px;
        gap: 56px;
    }
}

/* Content Area */
.about-content-area { min-width: 0; }

/* Tab Panels */
.about-panel { transition: opacity 0.3s, transform 0.3s; }
.about-panel[style*="display: none"] { opacity: 0; transform: translateY(8px); }
.about-panel.active { opacity: 1; transform: translateY(0); }

/* â”€â”€ Biography Tab â”€â”€ */
.about-bio { display: flex; flex-direction: column; gap: 40px; }
.about-bio-section {}
.about-bio-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6B84A8;
    margin-bottom: 16px;
}
.about-bio-name {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 4px;
}
@media (min-width: 768px) {
    .about-bio-name { font-size: 30px; }
}
.about-bio-specialty {
    font-size: 14px;
    font-weight: 600;
    color: #C9A227;
    margin-bottom: 20px;
}
.about-bio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 12px;
    font-weight: 500;
    color: #7A92AE;
}
.about-bio-sep { color: rgba(255,255,255,0.12); }
.about-bio-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.about-bio-location svg { color: #C9A227; }

.about-bio-text {
    font-size: 15px;
    line-height: 1.9;
    color: #9FB3CC;
    max-width: 58ch;
}
@media (min-width: 768px) {
    .about-bio-text { font-size: 16px; }
}

.about-bio-focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .about-bio-focus-grid { grid-template-columns: 1fr 1fr; }
}
.about-bio-focus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
.about-bio-focus-num {
    font-size: 18px;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
    color: rgba(201,162,39,0.45);
}
.about-bio-focus-text {
    font-size: 13px;
    line-height: 1.4;
    color: #D0DCE8;
}

.about-bio-strengths { display: flex; flex-direction: column; gap: 10px; }
.about-bio-strength-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #9FB3CC;
}
.about-bio-strength-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #C9A227;
}

.about-bio-snapshot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}
@media (min-width: 640px) {
    .about-bio-snapshot { grid-template-columns: repeat(3, 1fr); }
}
.about-bio-snapshot-item {
    padding: 16px;
    background: #0D1730;
}
.about-bio-snapshot-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6B84A8;
    margin-bottom: 6px;
}
.about-bio-snapshot-value {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #D0DCE8;
}

/* â”€â”€ Journey Tab â”€â”€ */
.about-journey {}
.about-journey-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6B84A8;
    margin-bottom: 40px;
}
.about-journey-timeline { position: relative; }
.about-journey-line {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 15px;
    width: 1px;
    background: linear-gradient(180deg, rgba(201,162,39,0.35), rgba(201,162,39,0.05));
}
.about-journey-item {
    display: flex;
    gap: 20px;
    position: relative;
    margin-bottom: 40px;
}
.about-journey-item:last-child { margin-bottom: 0; }
.about-journey-marker {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}
.about-journey-circle {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,20,40,0.9);
    border: 1px solid rgba(201,162,39,0.3);
}
.about-journey-circle span {
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #C9A227;
}
.about-journey-content {
    padding-top: 2px;
    flex: 1;
    min-width: 0;
}
.about-journey-phase {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 4px;
}
.about-journey-title {
    font-size: 13px;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 8px;
}
.about-journey-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.about-journey-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(201,162,39,0.1);
    color: #C9A227;
    border: 1px solid rgba(201,162,39,0.15);
}
.about-journey-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #8FA3B8;
    max-width: 54ch;
}

/* â”€â”€ Expertise Tab â”€â”€ */
.about-expertise {}
.about-expertise-header {
    margin-bottom: 40px;
}
.about-expertise-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6B84A8;
    margin-bottom: 12px;
}
.about-expertise-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #8FA3B8;
    max-width: 56ch;
}
.about-expertise-category { margin-bottom: 32px; }
.about-expertise-category:last-child { margin-bottom: 0; }
.about-expertise-cat-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.about-expertise-cat-num {
    font-size: 28px;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    line-height: 1;
    color: rgba(201,162,39,0.4);
}
.about-expertise-cat-info { flex: 1; min-width: 0; }
.about-expertise-cat-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 8px;
}
.about-expertise-cat-intro {
    font-size: 13px;
    line-height: 1.8;
    color: #8FA3B8;
    max-width: 54ch;
    margin-bottom: 16px;
}
.about-expertise-items {
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (min-width: 640px) {
    .about-expertise-items { margin-left: 48px; }
}
.about-expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s;
}
.about-expertise-item:hover {
    border-color: rgba(201,162,39,0.15);
    background: rgba(255,255,255,0.025);
}
.about-expertise-item-num {
    font-size: 10px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(201,162,39,0.4);
}
.about-expertise-item-text {
    font-size: 12px;
    line-height: 1.4;
    color: #D0DCE8;
}
.about-expertise-divider {
    width: 100%;
    height: 1px;
    margin: 32px 0;
    background: rgba(255,255,255,0.05);
}

/* â”€â”€ Philosophy Tab â”€â”€ */
.about-philosophy {}
.about-philosophy-header {
    margin-bottom: 40px;
}
.about-philosophy-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6B84A8;
    margin-bottom: 12px;
}
.about-philosophy-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #8FA3B8;
    max-width: 56ch;
}
.about-philosophy-list {}
.about-philosophy-item {}
.about-philosophy-row {
    display: flex;
    gap: 20px;
    padding: 24px 0;
}
.about-philosophy-num {
    font-size: 32px;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    line-height: 1;
    color: rgba(201,162,39,0.35);
}
.about-philosophy-info { flex: 1; min-width: 0; }
.about-philosophy-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 8px;
}
.about-philosophy-body {
    font-size: 13px;
    line-height: 1.85;
    color: #8FA3B8;
    max-width: 52ch;
}
.about-philosophy-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.04);
}

/* CTA Row */
.about-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}
.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    min-height: 40px;
    background: rgba(201,162,39,0.12);
    color: #C9A227;
    border: 1px solid rgba(201,162,39,0.2);
}
@media (min-width: 640px) {
    .about-cta-badge { font-size: 11px; }
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    min-height: 40px;
    background: #C9A227;
    color: #0A1428;
    text-decoration: none;
    transition: all 0.2s;
}
@media (min-width: 640px) {
    .about-cta-btn { font-size: 12px; }
}
.about-cta-btn:hover {
    background: #D4AF37;
    box-shadow: 0 4px 20px -4px rgba(201,162,39,0.3);
}

/* Portrait â€” Desktop */
.about-portrait-area {
    display: none;
}
@media (min-width: 1024px) {
    .about-portrait-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.about-portrait {
    position: relative;
    margin-bottom: 32px;
}
.about-portrait-glow {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(40px);
    background: #C9A227;
    pointer-events: none;
}
.about-portrait-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    opacity: 0.06;
    background: linear-gradient(180deg, transparent, rgba(201,162,39,0.4), transparent);
    pointer-events: none;
}
.about-portrait-img {
    position: relative;
    z-index: 10;
    height: 360px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.3));
    transition: transform 0.5s ease-out;
}
.about-portrait-img:hover { transform: translateY(-8px); }

.about-credentials {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-cred-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.about-cred-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6B84A8;
}
.about-cred-value {
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    color: #D0DCE8;
}

/* Portrait â€” Mobile */
.about-portrait-mobile {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 8px;
    position: relative;
}
@media (min-width: 1024px) {
    .about-portrait-mobile { display: none; }
}
.about-portrait-mobile .about-portrait-glow {
    bottom: 16px;
    width: 180px;
    height: 180px;
    opacity: 0.07;
}
.about-portrait-img-mobile {
    position: relative;
    z-index: 10;
    height: 220px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));
}

.about-credentials-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 32px;
}
@media (min-width: 1024px) {
    .about-credentials-mobile { display: none; }
}

/* ============================================
   Section Common
   ============================================ */
.section-header-center { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-eyebrow {
    display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: #7A92AE; margin-bottom: 12px;
}
.section-heading {
    font-size: clamp(24px, 4vw, 32px); font-weight: 800;
    line-height: 1.3; color: var(--text-primary);
}
.section-heading .gold { color: var(--gold); }
.section-subtitle {
    font-size: 15px; line-height: 1.7; color: #7A92AE;
    margin-top: 12px; max-width: 56ch; margin-left: auto; margin-right: auto;
}
.top-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* ============================================
   Services â€” LIGHT background (#F2F6FA)
   ============================================ */
.section-services {
    padding: 80px 0;
    background: #F2F6FA;
    position: relative;
}
.section-services .section-eyebrow { color: #7A92AE; }
.section-services .section-heading { color: #102A43; }
.section-services .section-subtitle { color: #64748B; }
.section-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C9A227, transparent);
    opacity: 0.3;
}
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    border: 1px solid #E8EDF3;
    box-shadow: 0 2px 8px rgba(16,42,67,0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column; height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, #D4AF37, #E3C565);
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16,42,67,0.10), 0 2px 8px rgba(201,162,39,0.08);
    border-color: rgba(201,162,39,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-card-featured {
    border-color: rgba(201,162,39,0.35);
    background: linear-gradient(135deg, #FFFCF5 0%, #fff 100%);
}
.service-card-featured::before { opacity: 1; }
.service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    color: #B45309;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(180,83,9,0.08);
}
.service-icon i { font-size: 20px; transition: transform 0.4s; }
.service-card:hover .service-icon {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(217,119,6,0.3);
    transform: scale(1.05);
}
.service-card:hover .service-icon i { transform: scale(1.1); }
.service-title {
    font-size: 15px; font-weight: 700; color: #102A43;
    margin-bottom: 8px; line-height: 1.4;
    transition: color 0.3s;
}
.service-card:hover .service-title { color: #B45309; }
.service-desc {
    font-size: 13.5px; color: #64748B; line-height: 1.65;
    flex-grow: 1;
}
.service-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
    font-size: 13px; font-weight: 700; color: #B45309; text-decoration: none;
    transition: all 0.3s;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
}
.service-link i { font-size: 11px; transition: transform 0.3s; }
.service-link:hover { gap: 10px; color: #92400E; }
.service-link:hover i { transform: translateX(3px); }

/* ============================================
   Expertise â€” DARK (#0E1E36)
   ============================================ */
.section-expertise {
    position: relative; padding: 64px 0 80px; overflow: hidden;
    background: linear-gradient(180deg, #0E1E36 0%, #0A1428 100%);
}
.section-expertise::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.section-expertise::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,162,39,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.expertise-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.expertise-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 22px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.expertise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.expertise-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,162,39,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 24px rgba(201,162,39,0.06);
    background: rgba(255,255,255,0.04);
}
.expertise-card:hover::before { opacity: 1; }
.expertise-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0.06) 100%);
    flex-shrink: 0;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
.expertise-icon i { color: #C9A227; font-size: 17px; transition: all 0.4s; }
.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, rgba(201,162,39,0.25) 0%, rgba(201,162,39,0.12) 100%);
    box-shadow: 0 2px 12px rgba(201,162,39,0.15);
}
.expertise-card:hover .expertise-icon i { color: #E3C565; transform: scale(1.1); }
.expertise-text { min-width: 0; position: relative; z-index: 1; }
.expertise-title {
    font-size: 14px; font-weight: 600; color: #E8EDF3;
    margin-bottom: 5px; line-height: 1.35;
    transition: color 0.3s;
}
.expertise-card:hover .expertise-title { color: #F1E6C3; }
.expertise-desc {
    font-size: 13px; color: #7A92AE; line-height: 1.6;
    transition: color 0.3s;
}
.expertise-card:hover .expertise-desc { color: #8FA4BE; }

/* ============================================
   Chamber â€” DARK (#0A1428)
   ============================================ */
.section-chamber {
    position: relative; padding: 64px 0 80px; overflow: hidden;
    background: #0A1428;
}
.chamber-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.chamber-card {
    padding: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(201,162,39,0.18);
    display: flex; flex-direction: column; transition: all 0.25s;
}
.chamber-card:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-2px); }
.chamber-badge {
    display: inline-flex; align-self: flex-start;
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 4px; margin-bottom: 24px;
    background: rgba(201,162,39,0.12); color: #C9A227;
    border: 1px solid rgba(201,162,39,0.2);
}
.chamber-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.chamber-info-icon {
    width: 40px; height: 40px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.1); flex-shrink: 0;
}
.chamber-info-icon i { color: rgba(201,162,39,0.7); font-size: 18px; }
.chamber-name { font-size: 16px; font-weight: 600; color: #E8EDF3; margin-bottom: 4px; }
.chamber-address { font-size: 13px; color: #7A92AE; }
.chamber-details { flex-grow: 1; margin-bottom: 32px; }
.chamber-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.chamber-detail-icon {
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.08); flex-shrink: 0;
}
.chamber-detail-icon i { color: rgba(201,162,39,0.6); font-size: 14px; }
.chamber-detail span { font-size: 13px; font-weight: 500; color: #B0C4DE; }
.chamber-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px 24px; font-size: 13px; font-weight: 700;
    border-radius: 4px; text-decoration: none; min-height: 44px;
    background: #C9A227; color: #0A1428; transition: all 0.25s;
}
.chamber-cta:hover { background: #D4AF37; box-shadow: 0 4px 16px -2px rgba(201,162,39,0.3); }
.chamber-map-wrapper { display: flex; flex-direction: column; }
.chamber-map {
    position: relative; border-radius: 8px; overflow: hidden; flex-grow: 1;
    border: 1px solid rgba(255,255,255,0.07); min-height: 320px;
}
.chamber-map-frame {
    width: 100%; height: 100%; position: absolute; inset: 0; border: 0;
    filter: saturate(0.85) brightness(0.8) contrast(1.05);
}
.chamber-map-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(10,20,40,0.15) 100%);
}
.chamber-map-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
    font-size: 12px; font-weight: 500; color: #6B84A8; text-decoration: none;
    transition: color 0.2s;
}
.chamber-map-link:hover { color: #C9A227; }

/* ============================================
   Academic â€” DARK (#0E1E36)
   ============================================ */
.section-academic {
    position: relative; padding: 64px 0 80px; overflow: hidden;
    background: linear-gradient(180deg, #0E1E36 0%, #0A1428 100%);
}
.academic-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.academic-card {
    padding: 28px 24px; border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden;
}
.academic-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, #E3C565);
    opacity: 0; transition: opacity 0.4s;
}
.academic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,162,39,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.05);
}
.academic-card:hover::before { opacity: 1; }
.academic-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(201,162,39,0.15) 0%, rgba(201,162,39,0.05) 100%);
    margin-bottom: 18px; transition: all 0.4s;
}
.academic-icon i { color: #C9A227; font-size: 20px; transition: all 0.4s; }
.academic-card:hover .academic-icon {
    background: linear-gradient(135deg, rgba(201,162,39,0.25) 0%, rgba(201,162,39,0.1) 100%);
    box-shadow: 0 2px 12px rgba(201,162,39,0.15);
}
.academic-card:hover .academic-icon i { color: #E3C565; transform: scale(1.1); }
.academic-title {
    font-size: 15px; font-weight: 700; color: #E8EDF3;
    margin-bottom: 8px; line-height: 1.4;
}
.academic-card:hover .academic-title { color: #F1E6C3; }
.academic-desc {
    font-size: 13.5px; color: #7A92AE; line-height: 1.65;
}
.academic-card:hover .academic-desc { color: #8FA4BE; }
@media (max-width: 768px) {
    .academic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .academic-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Blog â€” DARK background
   ============================================ */
.section-blog { padding: 80px 0 96px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    display: flex; flex-direction: column; border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.25s; text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.25); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.blog-visual { position: relative; width: 100%; height: 180px; overflow: hidden; }
.blog-svg { width: 100%; height: 100%; }
.blog-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-gradient-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
    background: linear-gradient(to top, rgba(16,42,67,0.6), transparent);
}
.blog-tag-badge {
    position: absolute; bottom: 12px; left: 16px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 4px;
    background: rgba(201,162,39,0.15); color: #C9A227;
    border: 1px solid rgba(201,162,39,0.2);
}
.blog-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-read-time { font-size: 11px; font-weight: 500; color: #7A92AE; margin-bottom: 8px; }
.blog-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; line-height: 1.35; }
.blog-desc { font-size: 14px; color: #7A92AE; line-height: 1.7; flex: 1; }
.blog-cta {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
    font-size: 13px; font-weight: 600; color: #C9A227; transition: gap 0.25s;
}
.blog-card:hover .blog-cta { gap: 12px; }

/* ============================================
   Reviews â€” DARK (#0A1428)
   ============================================ */
.section-reviews { padding: 64px 0 80px; background: #0A1428; }
.reviews-summary {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-top: -24px; margin-bottom: 40px;
}
.reviews-avg { font-size: 48px; font-weight: 800; color: #fff; line-height: 1; }
.reviews-summary-text { text-align: left; }
.reviews-stars { display: flex; gap: 4px; }
.reviews-stars i { color: #FBBF24; font-size: 18px; }
.reviews-summary-text p { font-size: 13px; color: #93A9C4; margin-top: 8px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    padding: 28px; border-radius: 18px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: all 0.25s; display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -12px rgba(0,0,0,0.55); border-color: rgba(201,162,39,0.35); }
.review-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.review-stars i { color: #FBBF24; font-size: 16px; }
.review-quote {
    font-size: 36px; line-height: 1; color: rgba(201,162,39,0.35);
    margin-bottom: 4px; user-select: none;
}
.review-text { font-size: 15px; color: var(--text-secondary); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.review-footer {
    border-top: 1px solid rgba(255,255,255,0.09); padding-top: 16px;
}
.review-name { font-size: 15px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-verified {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
    background: rgba(201,162,39,0.14); color: var(--gold-light);
}
.review-date { font-size: 12px; color: #93A9C4; margin-top: 4px; }

/* Review Form */
.review-form-wrapper {
    margin-top: 48px; max-width: 768px; margin-left: auto; margin-right: auto;
    background: #fff; border-radius: 20px; padding: 36px;
    border: 1px solid #E7EDF1; box-shadow: 0 1px 3px rgba(16,42,67,0.06);
}
.review-form-title { font-size: 20px; font-weight: 700; color: #102A43; }
.review-form-desc { font-size: 14px; color: #62748A; margin: 6px 0 24px; line-height: 1.6; }
.review-form-row { display: grid; grid-template-columns: 1fr 220px; gap: 20px; margin-bottom: 20px; }
.star-input { display: flex; gap: 4px; }
.star-btn {
    padding: 8px; margin: 0 -2px; border: none; background: none;
    cursor: pointer; border-radius: 8px; transition: transform 0.2s;
}
.star-btn:hover { transform: scale(1.1); }
.star-btn i { font-size: 24px; color: #E2E8F0; transition: color 0.2s; }
.star-btn.active i { color: #FBBF24; }
.star-btn:hover i { color: #FBBF24; }
.review-form-msg { font-size: 14px; font-weight: 500; color: #8A6D1F; min-height: 20px; }

/* Trust Points */
.trust-points {
    list-style: none; display: flex; flex-wrap: wrap;
    justify-content: center; gap: 32px; margin-top: 32px;
    font-size: 13px; font-weight: 500; color: #93A9C4;
}
.trust-points li { display: inline-flex; align-items: center; gap: 8px; }
.trust-check {
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.12); flex-shrink: 0;
}
.trust-check i { color: #8A6D1F; font-size: 10px; }

/* ============================================
   Gallery
   ============================================ */
.section-gallery { padding: 80px 0; }
.gallery-placeholder {
    text-align: center; padding: 64px 0; border-radius: 16px;
    background: rgba(201,162,39,0.05); border: 1px dashed rgba(201,162,39,0.2);
}
.gallery-placeholder p { font-size: 14px; color: #64748B; }
.gallery-cta { text-align: center; margin-top: 48px; }
.btn-gold-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 9999px;
    font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
    text-decoration: none; transition: all 0.3s;
    background: linear-gradient(135deg, #C9A227, #E3C565);
    color: #0A1428; box-shadow: 0 4px 24px rgba(201,162,39,0.25);
}
.btn-gold-pill:hover { transform: scale(1.05); }

/* ============================================
   Footer
   ============================================ */
.site-footer { position: relative; background: #0A1320; }
.footer-atmosphere {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,162,39,0.03) 0%, transparent 70%);
}
.footer-divider-top { position: relative; }
.footer-divider-line { height: 1px; background: rgba(255,255,255,0.06); }
.footer-divider-accent {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    height: 1px; width: 80px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), transparent);
}
.footer-main { position: relative; max-width: 1280px; margin: 0 auto; padding: 56px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 40px; }
.footer-doctor-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-gold-line { width: 40px; height: 2px; margin-bottom: 12px; background: linear-gradient(90deg, #C9A227, transparent); }
.footer-specialty { font-size: 14px; font-weight: 600; color: #C9A227; margin-bottom: 4px; }
.footer-position { font-size: 14px; color: #7A92AE; margin-bottom: 12px; }
.footer-hospital { font-size: 14px; color: #5A7A94; line-height: 1.6; margin-bottom: 20px; }
.footer-cta-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #C9A227; text-decoration: none;
    transition: gap 0.25s;
}
.footer-cta-link:hover { gap: 10px; }
.footer-section-title {
    font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: #7A92AE; margin-bottom: 20px;
}
.footer-link-list { list-style: none; }
.footer-link-list li { margin-bottom: 12px; }
.footer-link {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: #8FA3B6; text-decoration: none;
    transition: color 0.25s;
}
.footer-link:hover { color: #C9A227; }
.footer-link-bar {
    width: 0; height: 1px; background: #C9A227;
    transition: width 0.25s;
}
.footer-link:hover .footer-link-bar { width: 12px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { margin-bottom: 16px; }
.footer-contact-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: #8FA3B6; text-decoration: none;
    transition: color 0.25s;
}
.footer-contact-item:hover { color: #C9A227; }
.footer-contact-icon {
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.12);
    flex-shrink: 0;
}
.footer-contact-icon i { color: #C9A227; font-size: 14px; }
.footer-bottom { position: relative; }
.footer-divider-bottom { height: 1px; background: rgba(255,255,255,0.05); }
.footer-copyright {
    max-width: 1280px; margin: 0 auto; padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: #8899AA;
}
.footer-heart { color: #C9A227; }

/* ============================================
   Form Styles
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: #334155; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 12px 16px; border-radius: 12px;
    border: 1px solid #CBD5E1; font-size: 15px;
    font-family: inherit; transition: all 0.2s;
    background: #fff; color: #1E293B;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
    background: #fff;
}
.form-textarea { resize: vertical; min-height: 110px; }

/* ============================================
   Appointment Section â€” Two-Panel Layout
   ============================================ */
.section-appointment {
    padding: 80px 0;
    background: linear-gradient(180deg, #F2F6FA 0%, #E8EDF3 100%);
    position: relative;
}
.section-appointment .section-eyebrow { color: #7A92AE; }
.section-appointment .section-heading { color: #102A43; }
.section-appointment::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.2), transparent);
}
.appointment-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; max-width: 1000px; margin: 0 auto;
    align-items: stretch;
}
.appointment-contact-panel { border-radius: 20px; overflow: hidden; }
.appointment-contact-inner {
    background: linear-gradient(160deg, #102A43 0%, #0A1428 100%);
    border-radius: 20px; padding: 36px 32px;
    color: #fff; display: flex; flex-direction: column;
    justify-content: center; height: 100%;
    position: relative;
    overflow: hidden;
}
.appointment-contact-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.appointment-contact-inner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, #E3C565, #C9A227);
    opacity: 0.6;
}
.appointment-doctor-row {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
    position: relative; z-index: 1;
}
.appointment-doctor-avatar {
    width: 68px; height: 68px; border-radius: 18px;
    overflow: hidden; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(201,162,39,0.15) 0%, rgba(201,162,39,0.05) 100%);
    border: 2px solid rgba(201,162,39,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.appointment-doctor-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.appointment-doctor-name {
    font-size: 20px; font-weight: 700; line-height: 1.3; color: #fff;
    margin-bottom: 6px;
}
.appointment-verified-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(201,162,39,0.2) 0%, rgba(201,162,39,0.08) 100%);
    color: #E3C565;
    border: 1px solid rgba(201,162,39,0.15);
}
.appointment-verified-badge i { font-size: 12px; }
.appointment-info-list {
    list-style: none; display: flex; flex-direction: column; gap: 18px;
    margin-bottom: 32px; color: #CBD5E1;
    position: relative; z-index: 1;
}
.appointment-info-list li {
    display: flex; align-items: center; gap: 14px; font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
}
.appointment-info-list li:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,162,39,0.1);
}
.appointment-info-icon {
    color: #E3C565; font-size: 16px; width: 20px;
    text-align: center; flex-shrink: 0;
}
.appointment-whatsapp-btn {
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff; padding: 14px 22px; border-radius: 14px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: all 0.3s;
    position: relative; z-index: 1;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.appointment-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.appointment-whatsapp-btn i { font-size: 18px; }
.appointment-form-panel {
    background: #fff; border-radius: 20px; padding: 36px 32px;
    border: 1px solid #E7EDF1;
    box-shadow: 0 4px 20px rgba(16,42,67,0.06), 0 1px 4px rgba(16,42,67,0.04);
    position: relative;
}
.appointment-form-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 32px; right: 32px;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, #E3C565, #C9A227);
    border-radius: 0 0 4px 4px;
}
.appointment-form .form-label { color: #334155; font-size: 13px; letter-spacing: 0.02em; }
.appointment-form .form-input,
.appointment-form .form-select,
.appointment-form .form-textarea {
    background: #F8FAFC; border-color: #E2E8F0; color: #1E293B;
    border-radius: 10px; padding: 13px 16px;
    transition: all 0.3s;
}
.appointment-form .form-input:hover,
.appointment-form .form-select:hover,
.appointment-form .form-textarea:hover {
    border-color: #CBD5E1;
    background: #fff;
}
.appointment-form .form-input:focus,
.appointment-form .form-select:focus,
.appointment-form .form-textarea:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
    background: #fff;
}
.appointment-form-msg { font-size: 14px; font-weight: 500; color: #8A6D1F; min-height: 20px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) {
    .appointment-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   Contact Section
   ============================================ */
.section-contact { padding: 80px 0; }
.contact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.contact-card {
    padding: 24px; border-radius: 12px; text-align: center;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
}
.contact-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.1); margin: 0 auto 16px;
}
.contact-icon i { color: #C9A227; font-size: 18px; }
.contact-label { font-size: 11px; font-weight: 600; color: #6B84A8; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-value { font-size: 14px; color: #fff; font-weight: 500; }

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.reveal-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}
/* Direction: up (default) */
.reveal-up { transform: translateY(50px); }
/* Direction: down */
.reveal-down { transform: translateY(-50px); }
/* Direction: left */
.reveal-left { transform: translateX(-50px); }
/* Direction: right */
.reveal-right { transform: translateX(50px); }
/* Direction: scale */
.reveal-scale { transform: scale(0.9); }
/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.reveal-visible > * {
    opacity: 1;
    transform: translateY(0) !important;
}
.reveal-stagger.reveal-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.reveal-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.reveal-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.reveal-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.reveal-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.reveal-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.reveal-visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.reveal-visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.reveal-visible > *:nth-child(9) { transition-delay: 0.64s; }
.reveal-stagger.reveal-visible > *:nth-child(10) { transition-delay: 0.72s; }
.reveal-stagger.reveal-visible > *:nth-child(11) { transition-delay: 0.8s; }
.reveal-stagger.reveal-visible > *:nth-child(12) { transition-delay: 0.88s; }
.reveal-stagger.reveal-visible > *:nth-child(13) { transition-delay: 0.96s; }
.reveal-stagger.reveal-visible > *:nth-child(14) { transition-delay: 1.04s; }
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal > * { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================
   Gallery â€” Continuous Sliding Carousel
   ============================================ */
.gallery-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}
.gallery-carousel-track {
    display: flex;
    gap: 16px;
    animation: gallery-scroll 30s linear infinite;
    width: max-content;
}
.gallery-carousel-track:hover {
    animation-play-state: paused;
}
.gallery-carousel-item {
    flex-shrink: 0;
    width: 220px;
    height: 293px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-carousel-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    transform: scale(1.03);
}
.gallery-carousel-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.gallery-carousel-item:hover img { transform: scale(1.08); }
.gallery-carousel-item .gallery-overlay {
    position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
    background: linear-gradient(to top, rgba(12,21,36,0.7) 0%, transparent 100%);
    pointer-events: none;
}
.gallery-carousel-item:hover .gallery-overlay { opacity: 1; }
@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (min-width: 768px) {
    .gallery-carousel-item { width: 260px; height: 347px; }
}

/* Gallery fade edges */
.gallery-carousel-wrapper::before,
.gallery-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}
.gallery-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.gallery-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy) 0%, transparent 100%);
}
.section-gallery .gallery-carousel-wrapper::before,
.section-gallery .gallery-carousel-wrapper::after {
    background: linear-gradient(90deg, #0A1428 0%, transparent 100%);
}
.section-gallery .gallery-carousel-wrapper::after {
    background: linear-gradient(270deg, #0A1428 0%, transparent 100%);
}

/* ============================================
   Blog â€” View More Button
   ============================================ */
.blog-view-more {
    text-align: center;
    margin-top: 48px;
}
.blog-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s;
}
.blog-view-more-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.blog-view-more-btn i { font-size: 13px; transition: transform 0.3s; }
.blog-view-more-btn:hover i { transform: translateX(4px); }

/* ============================================
   Admin Panel
   ============================================ */
.admin-login {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; background: var(--navy);
}
.login-card {
    width: 100%; max-width: 400px; padding: 40px;
    border-radius: 16px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}
.login-title { font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 8px; }
.login-subtitle { font-size: 13px; color: #7A92AE; text-align: center; margin-bottom: 32px; }
.login-error {
    padding: 12px; border-radius: 8px; margin-bottom: 20px;
    background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
    color: #fca5a5; font-size: 13px;
}
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: #102A43; border-right: 1px solid rgba(255,255,255,0.05);
    padding: 24px 16px; position: fixed; height: 100vh; overflow-y: auto;
}
.sidebar-brand { font-size: 16px; font-weight: 700; color: #fff; padding: 0 12px; margin-bottom: 32px; }
.sidebar-brand span { color: #C9A227; }
.sidebar-nav { list-style: none; }
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 8px;
    font-size: 13px; color: #7A92AE; text-decoration: none;
    transition: all 0.2s;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.sidebar-nav a.active { background: rgba(201,162,39,0.1); color: #C9A227; }
.sidebar-nav i { width: 18px; text-align: center; }
.admin-main { margin-left: 260px; flex: 1; padding: 24px; }
.dash-content { width: 100%; max-width: 100%; overflow-x: hidden; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-title { font-size: 24px; font-weight: 700; color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { padding: 24px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.stat-label { font-size: 12px; color: #7A92AE; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; color: #fff; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 700; color: #6B84A8; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid rgba(255,255,255,0.05); }
.data-table td { padding: 12px 16px; font-size: 13px; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.05); }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.badge-success { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-warning { background: rgba(234,179,8,0.15); color: #facc15; }
.badge-danger { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-info { background: rgba(59,130,246,0.15); color: #60a5fa; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .academic-grid { grid-template-columns: repeat(2, 1fr); }
    .chamber-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .desktop-nav, .desktop-cta { display: none !important; }
    .mobile-toggle { display: block; }
    .mobile-menu { display: block; }
    .hero { min-height: auto; height: auto; padding-top: 104px; padding-bottom: 80px; }
    .hero-badges { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .academic-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-copyright { flex-direction: column; gap: 8px; text-align: center; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 10px 48px; text-align: center;
    background: linear-gradient(135deg, #E8C766 0%, #C9A227 100%);
    color: #102A43; font-size: 14px; line-height: 1.5; position: relative; z-index: 20;
}
.announcement-icon { font-size: 15px; flex-shrink: 0; }
.announcement-text { margin: 0; }
.announcement-close {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: rgba(16,42,67,0.12); border: none; color: #102A43;
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.announcement-close:hover { background: rgba(16,42,67,0.24); }
.announcement-close i { font-size: 14px; }
@media (max-width: 640px) {
    .announcement-bar { font-size: 13px; padding: 10px 40px; }
    .announcement-icon { display: none; }
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 40;
    width: 56px; height: 56px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    background: #25D366; color: #fff; font-size: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,0.45); }
@media (min-width: 640px) { .whatsapp-btn { display: flex; } }

/* ============================================
   Home Gallery Section
   ============================================ */
.gallery-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.gallery-item {
    position: relative; display: block; overflow: hidden;
    border-radius: 16px; aspect-ratio: 3 / 4;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18); transition: box-shadow 0.3s;
}
.gallery-item:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.gallery-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
    background: linear-gradient(to top, rgba(12,21,36,0.7) 0%, transparent 100%);
    pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   Blog Cards -> Links
   ============================================ */
.blog-link { display: block; text-decoration: none; color: inherit; border-radius: 16px; }
.blog-link:hover { text-decoration: none; }
.blog-link .blog-card { height: 100%; }

/* ============================================
   Toast Notifications
   ============================================ */
.site-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    max-width: 420px;
    pointer-events: auto;
}
.site-toast-show {
    transform: translateY(0);
    opacity: 1;
}
.site-toast-success {
    background: #102A43;
    color: #fff;
    border-left: 4px solid #22C55E;
}
.site-toast-error {
    background: #102A43;
    color: #fff;
    border-left: 4px solid #EF4444;
}
.site-toast-icon { font-size: 18px; flex-shrink: 0; }
.site-toast-success .site-toast-icon { color: #22C55E; }
.site-toast-error .site-toast-icon { color: #EF4444; }
.site-toast-text { flex: 1; line-height: 1.4; }
.site-toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.site-toast-close:hover { color: #fff; }
@media (max-width: 640px) {
    .site-toast { bottom: 16px; right: 16px; left: 16px; max-width: none; }
}

/* ============================================
   PREMIUM SCROLL ANIMATION SYSTEM
   Awwwards-level motion enhancement
   ============================================ */

/* â”€â”€ Section Reveal â”€â”€ */
.prem-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.prem-reveal.prem-visible {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

/* â”€â”€ Section Header Stagger â”€â”€ */
.prem-header-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.prem-header-item.prem-visible {
    opacity: 1;
    transform: translateY(0) !important;
}
.prem-header-item:nth-child(1) { transition-delay: 0s; }
.prem-header-item:nth-child(2) { transition-delay: 0.1s; }
.prem-header-item:nth-child(3) { transition-delay: 0.2s; }

/* â”€â”€ Card Stagger â”€â”€ */
.prem-stagger {
    /* parent container */
}
.prem-stagger > * {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.prem-stagger.prem-visible > * {
    opacity: 1;
    transform: translateY(0) !important;
}
.prem-stagger.prem-visible > *:nth-child(1) { transition-delay: 0s; }
.prem-stagger.prem-visible > *:nth-child(2) { transition-delay: 0.08s; }
.prem-stagger.prem-visible > *:nth-child(3) { transition-delay: 0.16s; }
.prem-stagger.prem-visible > *:nth-child(4) { transition-delay: 0.24s; }
.prem-stagger.prem-visible > *:nth-child(5) { transition-delay: 0.32s; }
.prem-stagger.prem-visible > *:nth-child(6) { transition-delay: 0.4s; }
.prem-stagger.prem-visible > *:nth-child(7) { transition-delay: 0.48s; }
.prem-stagger.prem-visible > *:nth-child(8) { transition-delay: 0.56s; }
.prem-stagger.prem-visible > *:nth-child(9) { transition-delay: 0.64s; }
.prem-stagger.prem-visible > *:nth-child(10) { transition-delay: 0.72s; }
.prem-stagger.prem-visible > *:nth-child(11) { transition-delay: 0.8s; }
.prem-stagger.prem-visible > *:nth-child(12) { transition-delay: 0.88s; }
.prem-stagger.prem-visible > *:nth-child(13) { transition-delay: 0.96s; }
.prem-stagger.prem-visible > *:nth-child(14) { transition-delay: 1.04s; }

/* â”€â”€ Split Reveal (Chamber, Appointment) â”€â”€ */
.prem-split-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.prem-split-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.prem-split-left.prem-visible,
.prem-split-right.prem-visible {
    opacity: 1;
    transform: translateX(0) !important;
}

/* â”€â”€ Footer Reveal â”€â”€ */
.prem-footer-col {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.prem-footer-col.prem-visible {
    opacity: 1;
    transform: translateY(0) !important;
}
.prem-footer-col:nth-child(1) { transition-delay: 0s; }
.prem-footer-col:nth-child(2) { transition-delay: 0.08s; }
.prem-footer-col:nth-child(3) { transition-delay: 0.16s; }
.prem-footer-col:nth-child(4) { transition-delay: 0.24s; }

.prem-footer-bottom {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.prem-footer-bottom.prem-visible {
    opacity: 1;
}

/* â”€â”€ Parallax depth layers â”€â”€ */
.prem-parallax {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* â”€â”€ Icon micro-motion â”€â”€ */
.prem-icon-reveal {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.prem-icon-reveal.prem-visible {
    opacity: 1;
    transform: scale(1) !important;
}

/* â”€â”€ Reduced Motion â”€â”€ */
@media (prefers-reduced-motion: reduce) {
    .prem-reveal,
    .prem-header-item,
    .prem-stagger > *,
    .prem-split-left,
    .prem-split-right,
    .prem-footer-col,
    .prem-footer-bottom,
    .prem-icon-reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .prem-parallax {
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PRELOADER — Cinematic entrance with glowing ring animation
   ═══════════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A1428;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  animation: preloaderPulse 2s ease-in-out infinite;
}
.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}
.preloader-ring:nth-child(2) {
  width: 80px;
  height: 80px;
  border-top-color: #C9A227;
  border-right-color: rgba(201,162,39,0.3);
  animation: preloaderSpin 1.2s linear infinite;
}
.preloader-ring:nth-child(3) {
  width: 60px;
  height: 60px;
  border-bottom-color: #C9A227;
  border-left-color: rgba(201,162,39,0.3);
  animation: preloaderSpin 1.6s linear infinite reverse;
}
.preloader-ring:nth-child(4) {
  width: 40px;
  height: 40px;
  border-top-color: #C9A227;
  border-right-color: rgba(201,162,39,0.3);
  animation: preloaderSpin 1s linear infinite;
}
.preloader-text {
  position: relative;
  display: flex;
  gap: 4px;
  margin-top: 60px;
}
.preloader-dot {
  font-size: 24px;
  color: #C9A227;
  animation: preloaderDotBounce 1.4s ease-in-out infinite;
}
.preloader-dot:nth-child(2) { animation-delay: 0.2s; }
.preloader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes preloaderDotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-8px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION — Decorative glow & floating elements
   ═══════════════════════════════════════════════════════════════════ */
.about-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.astro-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: astroFloat 6s ease-in-out infinite;
}
.astro-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #C9A227;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.astro-decoration--1 { top: 15%; right: 10%; animation-delay: 0s; }
.astro-decoration--2 { bottom: 20%; left: 8%; animation-delay: -2s; width: 20px; height: 20px; }
.astro-decoration--3 { top: 30%; left: 15%; animation-delay: -4s; width: 15px; height: 15px; opacity: 0.5; }

@keyframes astroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(5deg); }
  66% { transform: translateY(5px) rotate(-3deg); }
}

/* ═══════════════════════════════════════════════════════════════════
   PARALLAX BACKGROUNDS — Decorative floating elements per section
   ═══════════════════════════════════════════════════════════════════ */
.parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.parallax-bg-shape {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.parallax-bg-shape--gold {
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
}
.parallax-bg-shape--blue {
  background: radial-gradient(circle, rgba(122,146,174,0.04) 0%, transparent 70%);
}
.parallax-bg-shape--1 { width: 300px; height: 300px; top: 10%; left: 5%; }
.parallax-bg-shape--2 { width: 200px; height: 200px; top: 60%; right: 8%; }
.parallax-bg-shape--3 { width: 150px; height: 150px; bottom: 15%; left: 20%; }

@media (prefers-reduced-motion: reduce) {
  .astro-decoration,
  .parallax-bg-shape { animation: none; }
}

/* ============================================
   ADMIN DASHBOARD — Analytics Command Center
   ============================================ */

/* Dashboard Header */
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.dash-title { font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 4px; letter-spacing: -0.02em; }
.dash-subtitle { font-size: 13px; color: #64748b; margin: 0; }
.dash-header-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dash-period-selector { display: flex; gap: 4px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 3px; }
.dash-period-btn { padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; color: #64748b; text-decoration: none; transition: all 0.15s; border: none; background: none; cursor: pointer; }
.dash-period-btn:hover { color: #94a3b8; background: rgba(255,255,255,0.04); }
.dash-period-btn.active { color: #0A1428; background: #C9A227; }
.dash-updated { font-size: 11px; color: #475569; }

/* KPI Grid */
.dash-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.dash-kpi-card { padding: 20px; border-radius: 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.2s, transform 0.2s; }
.dash-kpi-card:hover { border-color: rgba(201,162,39,0.2); transform: translateY(-1px); }
.dash-kpi-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dash-kpi-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(201,162,39,0.1); color: #C9A227; font-size: 13px; }
.dash-kpi-change { font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 4px; }
.dash-kpi-change.up { color: #4ade80; background: rgba(34,197,94,0.1); }
.dash-kpi-change.down { color: #f87171; background: rgba(239,68,68,0.1); }
.dash-kpi-change i { font-size: 9px; }
.dash-kpi-value { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.dash-kpi-label { font-size: 12px; color: #64748b; font-weight: 500; }

/* Cards */
.dash-card { padding: 24px; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); margin-bottom: 24px; min-width: 0; overflow: hidden; }
.dash-card-full { margin-bottom: 24px; }
.dash-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.dash-card-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 2px; }
.dash-card-subtitle { font-size: 12px; color: #64748b; margin: 0; }

/* Row Layouts */
.dash-row-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin-bottom: 0; min-width: 0; }
.dash-row-1-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 0; min-width: 0; }
.dash-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 0; min-width: 0; }
.dash-row-2-1 .dash-card, .dash-row-1-1 .dash-card, .dash-row-3 .dash-card { margin-bottom: 24px; }

/* Chart */
.dash-chart-wrap { height: 280px; position: relative; }
.dash-chart-sm { height: 180px; }
.dash-chart-legend { display: flex; gap: 16px; flex-shrink: 0; }
.dash-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #64748b; white-space: nowrap; }
.dash-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Traffic Sources */
.dash-sources-list { display: flex; flex-direction: column; gap: 2px; }
.dash-source-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 6px; transition: background 0.15s; }
.dash-source-item:hover { background: rgba(255,255,255,0.03); }
.dash-source-left { display: inline-flex; align-items: center; gap: 8px; }
.dash-source-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.dash-source-name { font-size: 13px; color: #cbd5e1; display: inline-block; margin-right: 4px; }
.dash-source-right { display: inline-flex; align-items: center; gap: 10px; }
.dash-source-count { font-size: 13px; font-weight: 600; color: #fff; display: inline-block; margin-right: 6px; }
.dash-source-pct { font-size: 11px; color: #64748b; min-width: 36px; text-align: right; }

/* ── HEATMAP PREMIUM ── */
.hm-card { padding: 28px 32px; }
.hm-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.hm-header-left { min-width: 0; }
.hm-title { margin: 0 0 2px; font-size: 18px; font-weight: 700; color: #f1f5f9; letter-spacing: -0.01em; }
.hm-subtitle { margin: 0; font-size: 13px; color: #64748b; }
.hm-header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; flex-wrap: wrap; }
.hm-range-select { display: flex; align-items: center; gap: 8px; }
.hm-range-label { font-size: 11px; color: #475569; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hm-range-dropdown { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 5px 10px; font-size: 12px; color: #cbd5e1; font-family: inherit; cursor: pointer; outline: none; transition: border-color 0.15s; }
.hm-range-dropdown:hover { border-color: rgba(201,162,39,0.3); }
.hm-range-dropdown:focus { border-color: #C9A227; }
.hm-range-dropdown option { background: #0f1729; color: #cbd5e1; }

.hm-legend { display: flex; align-items: center; gap: 4px; }
.hm-legend-label { font-size: 10px; color: #475569; font-weight: 500; }
.hm-legend-cell { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; }

.hm-level-0 { background: rgba(255,255,255,0.04); }
.hm-level-1 { background: rgba(201,162,39,0.15); }
.hm-level-2 { background: rgba(201,162,39,0.30); }
.hm-level-3 { background: rgba(201,162,39,0.55); }
.hm-level-4 { background: #C9A227; }

.hm-summary { display: flex; align-items: center; gap: 0; margin-bottom: 20px; padding: 14px 20px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 10px; }
.hm-stat { flex: 1; text-align: center; }
.hm-stat-value { display: block; font-size: 20px; font-weight: 800; color: #f1f5f9; line-height: 1.2; letter-spacing: -0.02em; }
.hm-stat-label { display: block; font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.hm-stat-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.06); flex-shrink: 0; }

.hm-grid-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.hm-grid-body { display: flex; gap: 10px; min-width: fit-content; }
.hm-weekdays { display: flex; flex-direction: column; gap: 3px; padding-top: 24px; flex-shrink: 0; }
.hm-weekdays span { height: 14px; font-size: 10px; color: #475569; display: flex; align-items: center; font-weight: 500; }
.hm-scroll { flex: 1; min-width: 0; }
.hm-months { display: flex; gap: 0; margin-bottom: 8px; }
.hm-month-label { font-size: 11px; color: #475569; text-align: left; font-weight: 500; padding-left: 2px; }
.hm-month-current { color: #94a3b8; font-weight: 600; }
.hm-grid { display: flex; flex-wrap: wrap; gap: 3px; }
.hm-cell { width: 14px; height: 14px; border-radius: 3px; cursor: pointer; flex-shrink: 0; transition: transform 0.15s ease, outline 0.12s ease, box-shadow 0.15s ease; outline: 2px solid transparent; outline-offset: 1px; }
.hm-cell:hover { transform: scale(1.15); outline-color: rgba(201,162,39,0.4); }
.hm-cell:focus-visible { outline-color: #C9A227; outline-offset: 2px; }
.hm-cell-today { outline: 2px solid rgba(201,162,39,0.5); outline-offset: 1px; }

.hm-tooltip { display: none; position: fixed; z-index: 9999; background: rgba(10,18,35,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px 16px; pointer-events: none; min-width: 180px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.hm-tip-date { font-size: 12px; font-weight: 600; color: #f1f5f9; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hm-tip-metric { display: flex; justify-content: space-between; align-items: center; padding: 3px 0; }
.hm-tip-metric-label { font-size: 11px; color: #64748b; }
.hm-tip-metric-value { font-size: 12px; font-weight: 700; color: #e2e8f0; }
.hm-tip-metric-gold .hm-tip-metric-value { color: #C9A227; }

@media (max-width: 768px) {
    .hm-card { padding: 20px 16px; }
    .hm-header { flex-direction: column; gap: 12px; }
    .hm-header-right { width: 100%; justify-content: space-between; }
    .hm-summary { flex-wrap: wrap; gap: 8px; padding: 12px 14px; }
    .hm-stat { min-width: calc(50% - 8px); }
    .hm-stat-divider { display: none; }
    .hm-cell { width: 12px; height: 12px; }
    .hm-weekdays span { height: 12px; font-size: 9px; }
}

/* Table */
.dash-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th { padding: 10px 12px; text-align: left; font-size: 10px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap; }
.dash-table td { padding: 10px 12px; font-size: 13px; color: #94a3b8; border-bottom: 1px solid rgba(255,255,255,0.04); }
.dash-table tr:hover td { background: rgba(255,255,255,0.02); }
.dash-td-page { font-weight: 600; color: #e2e8f0; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-engagement-bar { width: 80px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.dash-engagement-fill { height: 100%; background: #C9A227; border-radius: 3px; transition: width 0.3s; }
.dash-empty-row { text-align: center; color: #475569; padding: 40px 16px !important; }
.dash-empty-row i { display: block; font-size: 20px; margin-bottom: 8px; opacity: 0.5; }

/* Badges */
.dash-badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.dash-badge-success { background: rgba(34,197,94,0.12); color: #4ade80; }
.dash-badge-warning { background: rgba(234,179,8,0.12); color: #facc15; }
.dash-badge-danger { background: rgba(239,68,68,0.12); color: #f87171; }

/* Action Buttons */
.dash-action-group { display: flex; gap: 6px; }
.dash-btn { padding: 5px 12px; border-radius: 5px; font-size: 11px; font-weight: 600; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; transition: all 0.15s; }
.dash-btn-approve { background: rgba(34,197,94,0.15); color: #4ade80; }
.dash-btn-approve:hover { background: rgba(34,197,94,0.25); }
.dash-btn-reject { background: rgba(239,68,68,0.1); color: #f87171; }
.dash-btn-reject:hover { background: rgba(239,68,68,0.2); }
.dash-action-done { color: #475569; font-size: 12px; }
.dash-view-all { font-size: 12px; color: #C9A227; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.dash-view-all:hover { color: #d4ad35; }

/* Appointment Stats */
.dash-appt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.dash-appt-stat { text-align: center; padding: 12px 8px; background: rgba(255,255,255,0.02); border-radius: 8px; }
.dash-appt-stat-value { display: block; font-size: 22px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.dash-appt-stat-label { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }

/* Device/Browser Bars */
.dash-device-list { display: flex; flex-direction: column; gap: 12px; }
.dash-device-item { display: flex; align-items: center; gap: 12px; }
.dash-device-left { display: flex; align-items: center; gap: 8px; min-width: 90px; font-size: 13px; color: #cbd5e1; }
.dash-device-left i { color: #64748b; font-size: 12px; width: 16px; text-align: center; }
.dash-device-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.dash-device-bar { height: 100%; background: #C9A227; border-radius: 3px; transition: width 0.4s ease; }
.dash-device-pct { font-size: 12px; font-weight: 600; color: #94a3b8; min-width: 40px; text-align: right; }

/* Geo */
.dash-geo-list { display: flex; flex-direction: column; gap: 2px; }
.dash-geo-item { display: flex; align-items: center; padding: 8px 10px; border-radius: 6px; transition: background 0.15s; }
.dash-geo-item:hover { background: rgba(255,255,255,0.03); }
.dash-geo-country { flex: 1; font-size: 13px; color: #cbd5e1; }
.dash-geo-visitors { font-size: 13px; font-weight: 600; color: #fff; margin-right: 12px; }
.dash-geo-pct { font-size: 11px; color: #64748b; min-width: 36px; text-align: right; }

/* Live Visitors */
.dash-live-unavailable { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; text-align: center; }
.dash-live-pulse { width: 12px; height: 12px; border-radius: 50%; background: #475569; margin-bottom: 16px; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.2); } }
.dash-live-unavailable p { font-size: 14px; color: #94a3b8; margin: 0 0 6px; font-weight: 600; }
.dash-live-unavailable span { font-size: 12px; color: #475569; }

/* Activity Feed */
.dash-activity-feed { display: flex; flex-direction: column; gap: 2px; max-height: 340px; overflow-y: auto; }
.dash-activity-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; border-radius: 8px; transition: background 0.15s; }
.dash-activity-item:hover { background: rgba(255,255,255,0.02); }
.dash-activity-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 11px; flex-shrink: 0; }
.dash-activity-icon-green { background: rgba(34,197,94,0.12); color: #4ade80; }
.dash-activity-icon-yellow { background: rgba(234,179,8,0.12); color: #facc15; }
.dash-activity-icon-red { background: rgba(239,68,68,0.12); color: #f87171; }
.dash-activity-icon-blue { background: rgba(59,130,246,0.12); color: #60a5fa; }
.dash-activity-icon-purple { background: rgba(168,85,247,0.12); color: #a855f7; }
.dash-activity-feed-body { flex: 1; min-width: 0; }
.dash-activity-desc { font-size: 13px; color: #cbd5e1; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-activity-time { font-size: 11px; color: #475569; }

/* Performance Grid */
.dash-perf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 12px; margin-bottom: 16px; }
.dash-perf-item { text-align: center; padding: 14px 8px; background: rgba(255,255,255,0.02); border-radius: 8px; }
.dash-perf-value { display: block; font-size: 20px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.dash-perf-label { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }
.dash-perf-highlight { padding: 12px; background: rgba(201,162,39,0.06); border: 1px solid rgba(201,162,39,0.12); border-radius: 8px; margin-bottom: 12px; }
.dash-perf-hl-label { font-size: 10px; color: #C9A227; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }
.dash-perf-hl-value { font-size: 13px; color: #e2e8f0; font-weight: 600; display: block; margin-bottom: 2px; }
.dash-perf-hl-meta { font-size: 11px; color: #64748b; }
.dash-perf-recent { display: flex; flex-direction: column; gap: 2px; }
.dash-perf-recent-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 6px; transition: background 0.15s; }
.dash-perf-recent-item:hover { background: rgba(255,255,255,0.03); }
.dash-perf-recent-title { font-size: 12px; color: #cbd5e1; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 12px; }
.dash-perf-recent-meta { font-size: 11px; color: #475569; flex-shrink: 0; }

/* Website Health */
.dash-health-list { display: flex; flex-direction: column; gap: 2px; }
.dash-health-item { display: flex; align-items: center; padding: 10px 12px; border-radius: 6px; transition: background 0.15s; }
.dash-health-item:hover { background: rgba(255,255,255,0.03); }
.dash-health-dot { width: 8px; height: 8px; border-radius: 50%; margin-right: 12px; flex-shrink: 0; }
.dash-health-dot.green { background: #4ade80; }
.dash-health-dot.yellow { background: #facc15; }
.dash-health-dot.red { background: #f87171; }
.dash-health-label { flex: 1; font-size: 13px; color: #94a3b8; }
.dash-health-value { font-size: 13px; font-weight: 600; color: #e2e8f0; }

/* Quick Actions */
.dash-actions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.dash-action-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; text-decoration: none; color: #94a3b8; font-size: 12px; font-weight: 500; transition: all 0.15s; }
.dash-action-btn:hover { background: rgba(201,162,39,0.08); border-color: rgba(201,162,39,0.2); color: #C9A227; }
.dash-action-btn i { font-size: 18px; color: #64748b; transition: color 0.15s; }
.dash-action-btn:hover i { color: #C9A227; }

/* Empty States */
.dash-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; }
.dash-empty i { font-size: 28px; color: #334155; margin-bottom: 12px; }
.dash-empty p { font-size: 14px; color: #94a3b8; margin: 0 0 6px; font-weight: 600; }
.dash-empty span { font-size: 12px; color: #475569; max-width: 280px; }
.dash-empty-sm { padding: 28px 16px; }
.dash-empty-sm i { font-size: 20px; margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .dash-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .dash-row-2-1, .dash-row-1-1 { grid-template-columns: 1fr; }
    .dash-row-3 { grid-template-columns: 1fr; }
    .dash-header { flex-direction: column; }
    .dash-appt-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-main { margin-left: 0; }
}
@media (max-width: 640px) {
    .dash-kpi-grid { grid-template-columns: 1fr; }
    .dash-actions-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-chart-legend { display: none; }
}
