/* =============================================
   GYAN VALLEY PUBLIC SCHOOL — MAIN STYLESHEET
   Navy #0d1b4b | Gold #c9a84c | White #fff
   ============================================= */

:root {
    --navy: #0d1b4b;
    --navy-mid: #162466;
    --navy-light: #1e3080;
    --gold: #c9a84c;
    --gold-light: #e2c276;
    --gold-pale: #f5e8c3;
    --white: #ffffff;
    --off-white: #f8f6f1;
    --text-dark: #1a1a2e;
    --text-mid: #444466;
    --text-light: #6b7280;
    --border: #e5e0d4;
    --shadow: 0 4px 24px rgba(13,27,75,0.10);
    --shadow-lg: 0 12px 48px rgba(13,27,75,0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, .playfair { font-family: 'Playfair Display', serif; }
.cinzel { font-family: 'Cinzel', serif; }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 8px 0;
    letter-spacing: 0.02em;
}
.topbar-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}
.topbar-link:hover { color: var(--gold); }

/* ---- NAVBAR ---- */
.main-navbar {
    background: var(--white) !important;
    border-bottom: 3px solid var(--gold);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(13,27,75,0.08);
    transition: all 0.3s;
}
.main-navbar.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(13,27,75,0.15);
}
.navbar-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}
.brand-sub {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}
.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid) !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy) !important; font-weight: 600; }
.nav-link:hover { color: var(--navy) !important; }
.btn-admission {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 20px !important;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}
.btn-admission:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201,168,76,0.5);
    color: var(--navy) !important;
}

/* ---- PAGE HERO (internal pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
}
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- SECTION UTILITIES ---- */
.section-label {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    border-left: 3px solid var(--gold);
    margin-bottom: 14px;
}
.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.gold-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 16px 0;
}
.gold-underline.center { margin: 16px auto; }

/* ---- BUTTONS ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
    text-decoration: none;
    display: inline-block;
}
.btn-gold:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    font-size: 0.9rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-navy:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ---- CARDS ---- */
.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* =======================================
   HOME PAGE — HERO SECTION
   ======================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1235 40%, #1a2a70 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-gold-ring {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
    pointer-events: none;
}
.hero-gold-ring::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.hero-badge i { font-size: 0.9rem; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}
.hero-title .gold-word { color: var(--gold); }
.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    color: var(--gold-light);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo-display {
    width: min(340px, 80vw);
    height: min(340px, 80vw);
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow:
        0 0 0 12px rgba(201,168,76,0.08),
        0 0 0 24px rgba(201,168,76,0.04),
        var(--shadow-lg);
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    z-index: 2;
    text-transform: uppercase;
}
.scroll-dot {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    position: relative;
}
.scroll-dot::after {
    content: '';
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 18px; }
}

/* ---- ANNOUNCEMENT STRIP ---- */
.announcement-strip {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 14px 0;
    overflow: hidden;
}
.marquee-wrap { display: flex; align-items: center; gap: 0; white-space: nowrap; }
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.marquee-track span::before { content: '★  '; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- WHY US SECTION ---- */
.why-section { padding: 90px 0; background: var(--off-white); }
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.feature-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ---- FOUNDERS PREVIEW (HOME) ---- */
.founders-section { padding: 90px 0; background: var(--navy); position: relative; overflow: hidden; }
.founders-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.founder-card-home {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.founder-card-home:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
}
.founder-card-home::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}
.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.founder-role {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.founder-bio { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ---- MISSION BANNER ---- */
.mission-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.mission-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}
.mission-quote-mark {
    font-size: 5rem;
    color: rgba(13,27,75,0.12);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

/* ---- ABOUT PAGE ---- */
.about-story { padding: 90px 0; }
.story-text p { font-size: 1.02rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.about-highlight {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.about-highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(201,168,76,0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.about-highlight p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; position: relative; }
.founder-profile-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.founder-profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.founder-card-top {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 40px 24px 24px;
    text-align: center;
    position: relative;
}
.founder-card-top::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.founder-img-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
}
.founder-card-top .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.founder-card-top .role {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}
.founder-card-body { padding: 24px; }
.founder-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ---- GALLERY PAGE ---- */
.gallery-section { padding: 70px 0; }
.gallery-filter { margin-bottom: 40px; }
.filter-btn {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-mid);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin: 4px;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.gallery-grid { columns: 3; gap: 16px; }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img, .gallery-item video {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,75,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-size: 0.85rem; font-weight: 600; }
.gallery-item-cat { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.08em; }
.gallery-placeholder {
    background: linear-gradient(135deg, var(--off-white), var(--border));
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.82rem;
    gap: 8px;
}
.gallery-placeholder i { font-size: 2rem; color: var(--gold); }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 90px 0; }
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 180px; height: 180px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
}
.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-detail-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-detail-val { font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.contact-detail-val a { color: var(--gold-light); text-decoration: none; }
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    box-shadow: var(--shadow);
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,27,75,0.08);
    outline: none;
}
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-label span { color: var(--gold); }

/* ---- FAQ PAGE ---- */
.faq-section { padding: 90px 0; }
.faq-accordion .accordion-button {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    padding: 20px 24px;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: var(--off-white);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    filter: hue-rotate(200deg);
}
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-accordion .accordion-body {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.75;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
}

/* ---- ADMIN PAGES ---- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--navy);
    padding: 30px 0;
    flex-shrink: 0;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 100;
}
.admin-brand {
    padding: 0 24px 30px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}
.admin-brand span { color: var(--gold); }
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(201,168,76,0.08);
    color: var(--gold);
    border-left-color: var(--gold);
}
.admin-nav-link i { font-size: 1.05rem; width: 20px; }
.admin-main {
    margin-left: 260px;
    flex: 1;
    background: #f5f7fa;
    min-height: 100vh;
}
.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-topbar h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin: 0; font-weight: 700; }
.admin-content { padding: 32px; }
.admin-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
}
.admin-stat-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.admin-stat-icon.navy { background: rgba(13,27,75,0.1); color: var(--navy); }
.admin-stat-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.admin-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.admin-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; border-bottom: 2px solid var(--border); }
.admin-table td { font-size: 0.88rem; vertical-align: middle; }
.badge-cat {
    background: rgba(13,27,75,0.08);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.04em;
}

/* ---- FOOTER ---- */
.site-footer {
    background: #060e24;
    color: rgba(255,255,255,0.65);
    position: relative;
}
.footer-wave { line-height: 0; margin-bottom: -1px; }
.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}
.footer-brand-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links i { font-size: 0.65rem; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    align-items: flex-start;
}
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-social {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-divider { border-color: rgba(255,255,255,0.07); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.2); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .hero-stats { gap: 24px; }
    .hero-image-wrap { margin-top: 40px; }
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
}
@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 80px 0 60px; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 1.5rem; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .contact-form-wrap, .contact-info-card { padding: 30px 24px; }
}