/* ==============================================
    MAIN.CSS
    Berisi: Base styles, CSS variables, Navbar,
    Footer, semua page-specific styles, component
    styles (cards, buttons, forms, dll).
    TIDAK termasuk: @keyframes dan @media queries
(lihat animations.css dan responsive.css)
   ============================================== */

/* ==========================================
    CSS CUSTOM PROPERTIES (DESIGN TOKENS) 
========================================== */
:root {
    /* Brand Colors */
    --gold:        #FFD700;
    --gold-dark:   #FFA500;
    --gold-deep:   #e6a800;
    --gold-amber:  #c8890a;
    --navy:        #1a1a2e;
    --navy-mid:    #16213e;
    --dark-text:   #3d1f00;

    /* Neutral */
    --gray-light:  #f8f9fa;
    --gray-mid:    #6b7280;
    --gray-border: #f3f4f6;

    /* Shadows */
    --shadow-sm:   0 2px 10px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:   0 16px 40px rgba(0,0,0,0.12);

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-fast: 0.2s ease;
}

/* ==========================================
   BASE / GLOBAL
========================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray-light);
    overflow-x: hidden;
}

/* ==========================================
   FOUT PREVENTION
========================================== */
/* FOUT Prevention — gunakan .laladon-app sebagai class selector (ID tetap ada untuk JS) */
.laladon-app:not(.fonts-loaded) {
    opacity: 0;
}
.laladon-app.fonts-loaded {
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Semua gambar responsif */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reset section — override di responsive.css via overflow-x: hidden */
section {
    margin: 0;
    padding: 0;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================
   HEADER & NAVBAR
========================================== */

.main-navbar {
    box-shadow: var(--shadow-sm);
    background: #fff;
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    font-size: clamp(1rem, 2vw, 1.75rem);
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-family: 'Barlow Condensed', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-stretch: condensed;
    text-transform: uppercase;
}

.main-navbar .navbar-nav {
    gap: 1.5rem;
    padding-right: clamp(0rem, 2vw, 2rem);
    align-items: center;
}

.main-navbar .nav-link {
    font-weight: 600;
    color: #3d3d3d;
    padding: .55rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: .2px;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: color var(--transition-fast), background var(--transition-fast);
}

/* Dot indikator oranye di bawah item aktif */
.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-dark);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 165, 0, 0.6);
}

.main-navbar .nav-link::before { display: none; }

.main-navbar .nav-link:hover {
    color: var(--gold-dark);
    background: #fff8ee;
}

.main-navbar .nav-link.active {
    color: #e8900a;
    background: #fff5e0;
    font-weight: 700;
}

/* ==========================================
   DROPDOWN MENU STYLES
========================================== */
.main-navbar .dropdown-menu {
    border: 1px solid #f0e6cc;
    border-top: 2px solid var(--gold-dark);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    margin-top: 8px;
    background: #fff;
    animation: fadeInUp 0.2s ease forwards;
    overflow: hidden;
    padding: .35rem;
    min-width: 190px;
}

.main-navbar .dropdown-item {
    padding: .6rem 1rem;
    font-weight: 600;
    font-size: .875rem;
    color: #3d3d3d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all 0.18s ease;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
    background: #fff8ee;
    color: #e8900a;
    padding-left: 1.2rem;
}

/* ==========================================
   HERO CAROUSEL
========================================== */

/* Hero container — mengisi sisa layar di bawah navbar (62px) */
.hero-carousel {
    width: 100%;
    padding: 0;
    margin: 0;
    height: min(56.25vw, calc(100vh - 62px));
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: min(56.25vw, calc(100vh - 62px));
    min-height: 320px;
}

/* Hero image — isi penuh area 16:9 */
.hero-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(1.05) contrast(1.1);
    position: absolute;
    top: 0;
    left: 0;
}

/* ==========================================
   GOLD GRADIENT OVERLAY
========================================== */
.hero-overlay-gold {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
        rgba(26, 26, 46, 0.98) 0%,
        rgba(26, 26, 46, 0.90) 30%,
        rgba(26, 26, 46, 0.75) 50%,
        rgba(26, 26, 46, 0.40) 70%,
        transparent 100%
    );
}

/* ==========================================
   HERO CONTENT POSITIONING
========================================== */
.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: clamp(1rem, 5%, 5%);
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    max-width: min(650px, 90%);
    padding: 2rem;
}

/* ==========================================
   TYPOGRAPHY - HERO
========================================== */
.hero-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.hero-pretitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title-gold {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.text-highlight {
    position: relative;
    display: inline-block;
    color: var(--gold);
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    border-radius: 5px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

/* ==========================================
   HERO BUTTONS
========================================== */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 500px;
}
.btn-gold-primary, .btn-gold-outline{
    flex: 1;
    justify-content: center;
}

.btn-gold-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.3rem 2.8rem;
    font-size: 0.975rem;
    background: var(--gold-deep);
    color: var(--dark-text);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Arrow icon — pakai span::after supaya tidak bentrok dengan ripple ::after di mobile */
.btn-gold-primary span::after {
    content: '→';
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-gold-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: var(--gold-dark);
    color: var(--dark-text);
}

/* Arrow geser ke kanan saat hover */
.btn-gold-primary:hover span::after {
    transform: translateX(5px);
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.3rem 2.8rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.975rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-gold-outline:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: white;
}

/* ==========================================
   CAROUSEL CONTROLS
========================================== */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 215, 0, 0.95);
    transform: translateY(-50%) scale(1.1);
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

/* Stacked on right (desktop) */
.carousel-control-prev {
    left: auto;
    right: 50px;
    top: calc(50% - 35px);
}

.carousel-control-next {
    right: 50px;
    top: calc(50% + 35px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 20px;
    width: 20px;
}

/* Carousel indicators (dots) */
.carousel-indicators {
    bottom: 1rem;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.55);
    border: none;
    transition: all var(--transition-base);
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================
   WELCOME SECTION
========================================== */
.welcome-section {
    padding: 60px 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}



/* ==========================================
   CARD STYLES — Bootstrap .card override
   (Hanya dipakai jika halaman baru menambahkan .card)
========================================== */
.card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: none;
    box-shadow: var(--shadow-sm);
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


/* ==========================================
   FOOTER
========================================== */
footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

footer a:hover {
    color: #ffc107;
}

/* ==========================================
   PAGE HEADER — GOLD GRADIENT (SEMUA HALAMAN)
========================================== */
.page-header {
    position: relative;
    overflow: hidden;
    /* Gradasi kuning/emas cerah premium yang elegan dan tidak gelap */
    background: linear-gradient(135deg,
        #ffe44d 0%,
        #FFD700 30%,
        #FFC107 70%,
        #FFB300 100%
    );
    color: var(--dark-text);
    padding: 0;
}



/* Diamond/lattice pattern overlay */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.06) 0px,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.06) 0px,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 20px
        );
    pointer-events: none;
}

/* Glowing bottom border */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 90, 0, 0.5) 20%,
        rgba(139, 90, 0, 0.9) 50%,
        rgba(139, 90, 0, 0.5) 80%,
        transparent 100%
    );
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUpHeader 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-header-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(61, 31, 0, 0.75);
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUpHeader 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* Animasi Fade In Up Ekstra Smooth */
@keyframes fadeInUpHeader {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   FLOATING GEOMETRIC SHAPES
========================================== */
.geom-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1; /* Di bawah teks (z-index: 2) */
    pointer-events: none;
    backdrop-filter: blur(2px); /* Sedikit efek glassmorphism */
}

.shape-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -20px;
    left: 10%;
    animation: floatShape1 12s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    bottom: -50px;
    right: 5%;
    animation: floatShape2 18s ease-in-out infinite;
}

.shape-3 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 25%;
    right: 35%;
    animation: floatShape3 10s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes floatShape2 {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    33% { transform: rotate(135deg) translate(50px, -40px); }
    66% { transform: rotate(225deg) translate(-30px, 30px); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -60px) scale(1.2); }
}

/* ==========================================
   MODERN CONTENT PAGES — SHARED COMPONENTS
========================================== */

/* Section Title */

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-amber);
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(200, 137, 10, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
    margin: 0 auto 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Content Card */
.content-card {
    background: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.content-card .card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.content-card .card-icon-wrap.gold  { background: linear-gradient(135deg, #FFF3CD, #FFE082); color: var(--gold-amber); }
.content-card .card-icon-wrap.blue  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.content-card .card-icon-wrap.green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }

/* ==========================================
   SEJARAH PAGE — MODERN TIMELINE
========================================== */
.timeline-container {
    position: relative;
    padding: 1rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-deep) 100%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2.5rem);
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2.5rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.2rem;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.3), 0 4px 12px rgba(255,165,0,0.4);
    z-index: 2;
}

.timeline-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold);
    max-width: min(400px, 100%);
    width: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline-item.right .timeline-card {
    border-left: none;
    border-right: 4px solid var(--gold-dark);
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.timeline-year-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.timeline-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.timeline-card p {
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   VISI MISI PAGE
========================================== */
.vismis-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.vismis-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.vismis-card.blue::before  { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.vismis-card.green::before { background: linear-gradient(90deg, #22c55e, #15803d); }

.vismis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.vismis-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFF3CD, #FFE082);
}

.vismis-card.blue .vismis-icon-wrap  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.vismis-card.green .vismis-icon-wrap { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.vismis-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.vismis-card p,
.vismis-card li {
    color: var(--gray-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

.vismis-card ul {
    padding-left: 0;
    list-style: none;
}

.vismis-card ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.vismis-card ul li:last-child { border-bottom: none; }

.vismis-card ul li::before {
    content: '✦';
    color: var(--gold-dark);
    font-size: 0.7rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

/* ==========================================
   KEPALA SEKOLAH PAGE
========================================== */
/* ── Foto Kepala Sekolah (kepala_sekolah.php) ── */
.kepsek-photo-wrap {
    position: relative;
    display: inline-block;
    border-radius: 22px;
    isolation: isolate;
}

/* Border offset modern — dua layer subtle */
.kepsek-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #e6a800 100%);
    opacity: 0.35;
    z-index: 0;
}

/* Subtle ambient shadow layer */
.kepsek-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.18);
    z-index: 0;
    pointer-events: none;
}

.kepsek-photo-wrap img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 1;
    display: block;
    border: 4px solid #ffffff;
}

/* Dekorasi geometric — subtle accent */
.kepsek-deco-1 {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0.20;
    z-index: -1;
}

.kepsek-deco-2 {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 3px solid rgba(255, 215, 0, 0.30);
    background: transparent;
    z-index: -1;
}

.kepsek-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
    height: 100%;
}

.kepsek-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.kepsek-position {
    font-size: 1rem;
    color: var(--gray-mid);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-light);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.info-chip strong { color: var(--navy); }

.kepsek-quote {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    font-style: italic;
    color: #4b5563;
    line-height: 1.75;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.kepsek-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-amber);
}


/* ==========================================
   GURU STAF PAGE — MODERN CARD
 ========================================== */
.teacher-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    background: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.15);
}

/* Foto mengisi area atas */
.teacher-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
    flex-shrink: 0;
}

.teacher-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-card-img-wrap img {
    transform: scale(1.07);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay lembut di bawah foto */
.teacher-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.15));
}

/* Nama & jabatan di bawah foto — clean & modern */
.teacher-card-body {
    padding: 1.25rem 1.4rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-start;
}

.teacher-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.8rem;
}

.teacher-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 10px;
    opacity: 0.8;
}

.teacher-position {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark-text);
    background: var(--gold);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: auto 0 0 0;
}

/* Badge sudut kanan atas */
.teacher-badge-wrap {
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    z-index: 2;
}

.teacher-badge {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gold-amber);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    border: 1px solid rgba(255,215,0,0.4);
    letter-spacing: 0.5px;
}



/* ==========================================
   FASILITAS PAGE
========================================== */
.facility-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    height: 100%;
    background: #fff;
    border-bottom: 5px solid var(--gold);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, rgba(255,215,0,0.4) 0%, transparent 70%);
    z-index: 10;
    pointer-events: none;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}

.facility-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.facility-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.facility-card:hover .facility-img-wrap img { transform: scale(1.07); }

.facility-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.7) 100%);
}


.facility-body { padding: 1.5rem; }

.facility-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.facility-desc {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================
   BERITA PAGE
========================================== */
.news-filter-bar {
    background: #fff;
    border-radius: 50px;
    padding: 0.5rem;
    display: inline-flex;
    gap: 0.35rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    justify-content: center;
}

.news-filter-btn {
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--gray-mid);
    background: transparent;
}

.news-filter-btn:hover { background: var(--gray-border); color: var(--navy); }

.news-filter-btn.active {
    background: var(--gold);
    color: var(--dark-text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.news-card-modern {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.13);
}

.news-card-modern .img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.news-card-modern .img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card-modern:hover .img-wrap img { transform: scale(1.06); }

.news-cat-badge {
    position: absolute;
    top: 0.85rem; left: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-cat-badge.pengumuman { background: #fee2e2; color: #991b1b; }
.news-cat-badge.berita     { background: #dcfce7; color: #166534; }
.news-cat-badge.event      { background: #fef9c3; color: #854d0e; }

.news-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-date {
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    font-size: 0.865rem;
    color: var(--gray-mid);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-amber);
    text-decoration: none;
    margin-top: auto;
    transition: gap var(--transition-fast);
}

.news-read-more:hover { gap: 0.75rem; color: #a06500; }

.news-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: #9ca3af;
}

.news-empty-state .empty-icon {
    width: 80px; height: 80px;
    background: var(--gray-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}


/* ==========================================
   BUTTON — GOLD CTA (SHARED)
========================================== */
.btn-admin-add {
    background: var(--gold);
    color: var(--dark-text);
    border: none;
    border-radius: 50px;
    padding: .65rem 1.5rem;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: all .2s;
    font-family: 'Poppins', sans-serif;
}

.btn-admin-add:hover {
    transform: translateY(-2px);
    background: var(--gold-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: var(--dark-text);
}

/* ==========================================
   HAMBURGER BUTTON
========================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition-base), transform var(--transition-fast);
}

.hamburger-btn:hover {
    background: rgba(255, 165, 0, 0.08);
}

.hamburger-btn:active {
    transform: scale(0.92);
}

.hb-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 99px;
    background: var(--gold-dark);
    transition:
        transform  0.4s cubic-bezier(0.23, 1, 0.32, 1),
        opacity    0.25s ease,
        background var(--transition-base);
}

.hamburger-btn:hover .hb-bar {
    background: var(--gold-dark);
}

/* Open state → X */
.hamburger-btn[aria-expanded="true"] .hb-top {
    background: var(--gold-dark);
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hb-mid {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn[aria-expanded="true"] .hb-bot {
    background: var(--gold-dark);
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================
   MOBILE SIDEBAR — SLIDE FROM RIGHT
   Navy + Gold theme
========================================== */

/* Backdrop overlay */
.snav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1099;
    background: rgba(10, 10, 20, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.snav-backdrop--show {
    opacity: 1;
    visibility: visible;
}

/* Panel sidebar utama — muncul dari KANAN */
.snav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: min(320px, 88vw);
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
    border-left: 1px solid rgba(255, 215, 0, 0.12);
}

.snav--open {
    transform: translateX(0);
}

/* ── Header sidebar ── */
.snav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.snav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.snav-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
}

.snav-brand-name {
    display: block;
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.snav-brand-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Close button */
.snav-close {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    flex-shrink: 0;
}

.snav-close:hover {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.3);
}

/* ── Body / Navigation links ── */
.snav-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.2) transparent;
}

.snav-body::-webkit-scrollbar { width: 4px; }
.snav-body::-webkit-scrollbar-thumb { background: rgba(255, 215, 0, 0.2); border-radius: 4px; }

/* Nav link */
.snav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.25rem;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.925rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
    border-left: 3px solid transparent;
}

.snav-link:hover {
    background: rgba(255, 215, 0, 0.07);
    color: var(--gold);
    padding-left: 1.5rem;
    border-left-color: var(--gold);
}

/* Icon wrap */
.snav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 215, 0, 0.7);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.snav-link:hover .snav-icon {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
}

/* Chevron for accordion */
.snav-chevron {
    margin-left: auto;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease, color var(--transition-fast);
}

.snav-toggle[aria-expanded="true"] .snav-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

/* Accordion group */
.snav-group { position: relative; }

/* Submenu */
.snav-sub {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.18);
    transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.snav-sublink {
    display: block;
    padding: 0.6rem 1.25rem 0.6rem 3.5rem;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.snav-sublink:hover {
    background: rgba(255, 215, 0, 0.06);
    color: var(--gold);
    border-left-color: rgba(255, 215, 0, 0.4);
}

/* Gold divider line between accordion groups */
.snav-group + .snav-link,
.snav-group + .snav-group {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

/* ==========================
   VISI MISI SDN LALADON 03
   ========================== */

/* ── VISI ── */
.vm-visi {
    padding: 100px 0 90px;
    background: linear-gradient(180deg, #fefce8 0%, #fef9ee 40%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.vm-visi::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
    top: -180px; right: -100px;
    pointer-events: none;
}
.vm-visi-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.vm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.vm-badge-gold {
    background: rgba(255,215,0,0.15);
    color: #92400e;
    border: 1px solid rgba(255,215,0,0.3);
}
.vm-badge-navy {
    background: rgba(15,23,42,0.05);
    color: var(--navy, #0f172a);
    border: 1px solid rgba(15,23,42,0.1);
}
.vm-visi-heading {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--navy);
    margin: 24px 0 48px;
    letter-spacing: -0.02em;
}

/* Visi Card */
.vm-glass {
    padding: 48px 52px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    position: relative;
}
.vm-glass-quote {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(255,165,0,0.25);
}
.vm-glass-quote svg {
    color: #fff;
}
.vm-glass-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.9;
    margin: 0 0 20px;
}
.vm-glass-attr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--gold-amber);
    font-weight: 700;
}
.vm-glass-attr::before,
.vm-glass-attr::after {
    content: '';
    width: 32px; height: 1.5px;
    background: var(--gold);
    opacity: 0.4;
}

/* ── MISI ── */
.vm-misi {
    padding: 100px 0;
    background: #fff;
}
.vm-section-h {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 16px 0 12px;
}
.vm-section-sub {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 400px;
}
.vm-misi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.vm-misi-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.vm-misi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
    border-color: rgba(255,215,0,0.5);
}
.vm-misi-card:nth-child(n) {
    grid-column: span 2;
}
.vm-misi-card-num {
    font-size: 7rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(15,23,42,0.03);
    position: absolute;
    right: -10px;
    bottom: -30px;
    line-height: 1;
    z-index: -1;
    transition: all 0.5s ease;
}
.vm-misi-card:hover .vm-misi-card-num {
    -webkit-text-stroke: 1.5px rgba(255,215,0,0.4);
    color: rgba(255,215,0,0.08);
    transform: scale(1.1) rotate(-5deg);
}
.vm-misi-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,215,0,0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}
.vm-misi-card:hover .vm-misi-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(255,215,0,0.3);
}
.vm-misi-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}
.vm-misi-card-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ── TUJUAN ── */
.vm-tujuan {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.vm-tujuan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.vm-tujuan-card {
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vm-tujuan-card:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 16px 48px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.vm-tujuan-card-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.3));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.vm-tujuan-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.vm-tujuan-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}


/* Styles from footer.php */
    /* ── FOOTER — Satu tema gold dengan beranda ── */
    :root {
        --footer-gold: #FFD700;
        --footer-gold-dark: #FFA500;
        --footer-bg: linear-gradient(165deg, #0a1228 0%, #06102e 35%, #050a1a 100%);
        --footer-bg-gold-tint: linear-gradient(165deg, rgba(255, 215, 0, 0.03) 0%, transparent 40%, rgba(255, 165, 0, 0.02) 100%);
    }

    footer.site-footer {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: var(--footer-bg);
        color: #e2e8f0;
        padding-top: 4.5rem;
        padding-bottom: 0;
        position: relative;
        overflow: hidden;
    }

    footer.site-footer::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--footer-bg-gold-tint);
        pointer-events: none;
    }

    footer.site-footer .container {
        position: relative;
        z-index: 1;
    }

    footer.site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 5%, var(--footer-gold) 30%, var(--footer-gold-dark) 50%, var(--footer-gold) 70%, transparent 95%);
        opacity: 0.9;
        z-index: 1;
    }

    /* Judul kolom — gold seperti beranda */
    .footer-col-title {
        color: var(--footer-gold);
        font-weight: 700;
        letter-spacing: 0.02em;
        margin-bottom: 1.25rem;
        padding-bottom: 0;
        border: none;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    }

    .footer-col-title::after {
        display: none;
    }

    /* Kontak — ikon gold */
    .footer-contact p {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9375rem;
        color: rgba(226, 232, 240, 0.9);
        margin-bottom: 0.875rem;
        line-height: 1.6;
    }

    .footer-contact p:last-of-type {
        margin-bottom: 0;
    }

    .footer-contact i {
        width: 18px;
        height: 18px;
        color: var(--footer-gold);
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* Social — default gold ring, hover gold fill */
    .footer-social-wrap {
        display: flex;
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .social-icon-btn {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255, 215, 0, 0.06);
        border: 1px solid rgba(255, 215, 0, 0.2);
        color: var(--footer-gold);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .social-icon-btn:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
        border-color: var(--footer-gold);
        color: #1a1a2e;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
    }

    .social-icon-btn.yt:hover {
        color: #fff;
        border-color: #ff4444;
        background: rgba(255, 68, 68, 0.85);
    }

    .social-icon-btn.tiktok:hover {
        color: #000;
        border-color: #00f2ea;
        background: rgba(0, 242, 234, 0.2);
    }

    /* Link list — hover gold */
    .footer-link-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-link-list li {
        margin-bottom: 0.5rem;
    }

    .footer-link-list a {
        color: rgba(226, 232, 240, 0.85);
        text-decoration: none;
        font-size: 0.9375rem;
        font-weight: 500;
        transition: color 0.2s, padding-left 0.2s;
        display: inline-block;
    }

    .footer-link-list a:hover {
        color: var(--footer-gold);
        padding-left: 4px;
    }

    /* Map container — gold border hover */
    .map-container {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 215, 0, 0.12);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.05);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .map-container:hover {
        border-color: rgba(255, 215, 0, 0.35);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 215, 0, 0.08);
    }

    .map-container iframe {
        display: block;
        filter: grayscale(0.1) contrast(1.02);
    }

    /* Pemisah konten & copyright */
    .footer-hr {
        border: none;
        height: 0;
        margin: 2.75rem 0 1.5rem;
    }

    /* Copyright — gold aksen */
    .footer-bottom {
        padding-bottom: 1.25rem;
    }

    .footer-copy {
        font-size: 0.8125rem;
        color: rgba(226, 232, 240, 0.55);
        margin: 0;
        font-weight: 500;
    }

    .footer-copy strong {
        color: var(--footer-gold);
        font-weight: 600;
    }

    /* Back to top — gold theme */
    .back-to-top {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255, 215, 0, 0.08);
        border: 1px solid rgba(255, 215, 0, 0.25);
        color: var(--footer-gold);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, var(--footer-gold), var(--footer-gold-dark));
        border-color: var(--footer-gold);
        color: #1a1a2e;
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    }

    /* Responsive — diseragamkan dengan sistem baru */
    @media (max-width: 1024px) {
        footer.site-footer {
            padding-top: 3rem;
        }
    }

    @media (max-width: 767.98px) {
        footer.site-footer {
            padding-top: 2.5rem;
        }




        footer.site-footer,
        footer.site-footer p,
        footer.site-footer h4,
        footer.site-footer ul,
        footer.site-footer li,
        footer.site-footer .text-center,
        footer.site-footer .text-md-end {
            text-align: left;
        }

        footer.site-footer .footer-copy {
            text-align: center;
        }

        footer.site-footer .d-flex:not(.footer-social-wrap):not(.back-to-top) {
            justify-content: flex-start;
        }

        footer.site-footer .map-container iframe {
            height: 200px;
        }

        footer.site-footer .row>div {
            margin-bottom: 1.5rem;
        }

        footer.site-footer .row>div:last-child {
            margin-bottom: 0;
        }

        footer.site-footer .footer-bottom .col-md-4 {
            text-align: right;
            display: flex;
            justify-content: flex-end;
            margin-top: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        footer.site-footer {
            padding-top: 2rem;
        }

        footer.site-footer .map-container iframe {
            height: 165px;
        }

        .footer-col-title {
            font-size: 1rem;
            letter-spacing: 0.075em;
        }

        footer.site-footer .footer-copy {
            font-size: 0.75rem;
            text-align: center;
        }
    }


/* Styles from contact.php */
    /* ── Info Cards ── */
    .contact-info-card {
        background: #fff;
        border-radius: 16px;
        padding: 2rem 1.75rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        height: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .contact-info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.11);
    }

    .contact-icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .contact-icon-wrap.gold {
        background: linear-gradient(135deg, #FFF3CD, #FFE082);
        color: #c8890a;
    }

    .contact-icon-wrap.blue {
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        color: #1d4ed8;
    }

    .contact-icon-wrap.green {
        background: linear-gradient(135deg, #dcfce7, #bbf7d0);
        color: #15803d;
    }

    .contact-card-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 0.5rem;
    }

    .contact-card-text {
        font-size: 0.9rem;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
    }

    /* ── Form Card ── */
    .contact-form-card {
        background: #fff;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    }

    .contact-label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.4rem;
        letter-spacing: 0.3px;
    }

    .contact-input {
        width: 100%;
        border: 1.5px solid #e5e7eb;
        border-radius: 10px;
        padding: 0.7rem 1rem;
        font-size: 0.92rem;
        font-family: 'Poppins', sans-serif;
        color: #1a1a2e;
        background: #fafafa;
        transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
        outline: none;
    }

    .contact-input:focus {
        border-color: #FFD700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
        background: #fff;
    }

    .contact-textarea {
        resize: vertical;
        min-height: 130px;
    }

    .contact-success-msg {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: linear-gradient(135deg, #dcfce7, #bbf7d0);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
        border: 1px solid #bbf7d0;
    }

    .contact-error-msg {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: #fef2f2;
        color: #dc2626;
        border-radius: 10px;
        padding: 0.8rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.88rem;
        font-weight: 500;
    }

    /* tombol kirim WA */
    .btn-wa-submit {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        background: linear-gradient(135deg, #25d366, #20ba58);
        color: #fff;
        font-weight: 700;
        font-size: 0.95rem;
        border: none;
        border-radius: 12px;
        padding: 0.95rem 1.5rem;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
        font-family: 'Poppins', sans-serif;
        width: 100%;
    }

    .btn-wa-submit:hover {
        background: linear-gradient(135deg, #20ba58, #128c7e);
        transform: translateY(-2px);
        box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
    }

    .btn-wa-submit:active {
        transform: translateY(0);
    }

    /* ── Map Card ── */
    .contact-map-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    }

    .map-embed-wrap {
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid #f3f4f6;
    }

    /* ── Hours Card ── */
    .contact-hours-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    }

    .hours-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hours-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.55rem 0.75rem;
        border-radius: 8px;
        background: #f9fafb;
        font-size: 0.875rem;
    }

    .hours-row.closed {
        background: #fef2f2;
    }

    .hours-day {
        font-weight: 600;
        color: #374151;
    }

    .hours-time {
        color: #6b7280;
        font-weight: 500;
    }

    .hours-row.closed .hours-time {
        color: #dc2626;
        font-weight: 600;
    }

    /* ── Social Buttons ── */
    .contact-social-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s, box-shadow 0.3s;
        color: #fff;
    }

    .contact-social-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

    .contact-social-btn.instagram {
        background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .contact-social-btn.youtube {
        background: #ff0000;
    }

    .contact-social-btn.tiktok {
        background: #010101;
    }

    /* ── WhatsApp Card ── */
    .contact-whatsapp-card {
        background: linear-gradient(135deg, #e7fbe6 0%, #dcfce7 100%);
        border: 1.5px solid #bbf7d0;
        border-radius: 20px;
        padding: 1.5rem 1.75rem;
        position: relative;
        overflow: hidden;
    }

    .contact-whatsapp-card::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 110px;
        height: 110px;
        background: rgba(37, 211, 102, 0.1);
        border-radius: 50%;
    }

    .wa-badge {
        display: inline-block;
        background: #25d366;
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 0.2rem 0.65rem;
        border-radius: 20px;
        margin-bottom: 0.85rem;
        text-transform: uppercase;
    }

    .wa-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    }

    .wa-title {
        font-size: 1rem;
        font-weight: 700;
        color: #14532d;
        margin: 0 0 0.15rem;
    }

    .wa-sub {
        font-size: 0.78rem;
        color: #16a34a;
        margin: 0;
    }

    .btn-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: #25d366;
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        border-radius: 12px;
        padding: 0.75rem 1.25rem;
        text-decoration: none;
        transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
        background: #128c7e;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    }

    /* ── FAQ Card ── */
    .contact-faq-card {
        background: #fff;
        border-radius: 20px;
        padding: 1.5rem 1.75rem;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
        border: 1.5px solid #fef9c3;
    }

    .faq-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #1a1a2e;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .faq-item {
        border-radius: 10px;
        background: #fafafa;
        border: 1px solid #f3f4f6;
        overflow: hidden;
        transition: border-color 0.2s;
    }

    .faq-item[open] {
        border-color: #FFD700;
        background: #fffdf0;
    }

    .faq-question {
        cursor: pointer;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #374151;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        user-select: none;
    }

    .faq-question::-webkit-details-marker {
        display: none;
    }

    .faq-question::after {
        content: '+';
        font-size: 1.1rem;
        font-weight: 700;
        color: #c8890a;
        transition: transform 0.2s;
        flex-shrink: 0;
    }

    .faq-item[open] .faq-question::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 1rem 0.75rem;
        font-size: 0.82rem;
        color: #6b7280;
        line-height: 1.65;
        margin: 0;
    }


/* Styles from berita_detail.php */
/* ── Article ── */
.article-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.article-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.article-inner {
    padding: 2rem 2.5rem 2.5rem;
}
.art-cat-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.art-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: .75rem;
}
.art-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.75rem;
}
.art-meta-item {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    color: #64748b;
}
.art-content {
    font-size: .95rem;
    line-height: 1.85;
    color: #334155;
}
.art-hr {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 1.75rem 0;
}
.art-back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: #c8890a;
    text-decoration: none;
    transition: gap .2s;
}
.art-back-link:hover { gap: .6rem; color: #a06c07; }

/* ── Sidebar Cards ── */
.sb-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.25rem;
}
.sb-card-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #c8890a;
    border-bottom: 1px solid #f8fafc;
}
.sb-card-head svg,
.sb-card-head i[data-lucide] { color: #c8890a; flex-shrink: 0; }

/* Sidebar news item */
.sb-news-item {
    display: flex;
    gap: .75rem;
    padding: .85rem 1.1rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f8fafc;
    transition: background .15s ease;
}
.sb-news-item:last-child { border-bottom: none; }
.sb-news-item:hover { background: #fffbeb; }
.sb-news-item img {
    width: 58px;
    height: 44px;
    object-fit: cover;
    border-radius: 7px;
    flex-shrink: 0;
    background: #f1f5f9;
}
.sb-news-title {
    font-size: .8rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin: 0 0 .25rem;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}
.sb-news-date {
    font-size: .72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* Sidebar category item */
.sb-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 1.1rem;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid #f8fafc;
    transition: all .18s ease;
}
.sb-cat-item:last-child { border-bottom: none; }
.sb-cat-item:hover { background: #fffbeb; color: #c8890a; padding-left: 1.4rem; }
.sb-cat-item span {
    font-size: .72rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    padding: .1rem .55rem;
}


/* Styles from galeri.php */
    /* ── Galeri Grid ── */
    .galeri-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1rem;
    }

    .galeri-item {
        cursor: pointer;
        border-radius: 12px;
        overflow: hidden;
    }

    .galeri-img-wrap {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
        background: #e5e7eb;
    }

    .galeri-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
        display: block;
    }

    .galeri-item:hover .galeri-img-wrap img {
        transform: scale(1.06);
    }

    .galeri-overlay {
        position: absolute;
        inset: 0;
        background: rgba(13, 27, 68, .55);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity .3s ease;
        border-radius: 12px;
    }

    .galeri-item:hover .galeri-overlay {
        opacity: 1;
    }

    .galeri-overlay-content {
        text-align: center;
    }

    .galeri-overlay-caption {
        color: #fff;
        font-size: .82rem;
        margin: .4rem 1rem 0;
        font-weight: 500;
        text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
    }

    .galeri-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(13, 27, 68, .75);
        color: #FFD700;
        font-size: .68rem;
        font-weight: 600;
        padding: 2px 10px;
        border-radius: 20px;
        letter-spacing: .03em;
        backdrop-filter: blur(4px);
    }

    /* ── Lightbox ── */
    .galeri-lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .92);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: lbFadeIn .2s ease;
    }

    .galeri-lightbox.lb-open {
        display: flex;
    }

    @keyframes lbFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .lb-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 90vw;
        max-height: 85vh;
    }

    .lb-content img {
        max-width: 90vw;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
        transition: opacity .2s;
    }

    .lb-caption {
        color: #e5e7eb;
        font-size: .88rem;
        margin-top: .75rem;
        text-align: center;
        max-width: 600px;
        line-height: 1.5;
    }

    .lb-close {
        position: absolute;
        top: 16px;
        right: 20px;
        background: rgba(255, 255, 255, .15);
        border: none;
        color: #fff;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .2s;
        backdrop-filter: blur(4px);
    }

    .lb-close:hover {
        background: rgba(255, 255, 255, .3);
    }

    .lb-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, .15);
        border: none;
        color: #fff;
        border-radius: 50%;
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .2s;
        backdrop-filter: blur(4px);
    }

    .lb-nav:hover {
        background: rgba(255, 255, 255, .3);
    }

    .lb-prev {
        left: 16px;
    }

    .lb-next {
        right: 16px;
    }

    .lb-counter {
        position: absolute;
        bottom: 16px;
        color: rgba(255, 255, 255, .6);
        font-size: .8rem;
    }


/* Footer Logo Inline Styles Extracted */
.footer-brand-wrap { border-bottom: 1px solid rgba(255,215,0,0.12); }
.footer-logo-img { border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,215,0,0.2), 0 4px 16px rgba(0,0,0,0.4); }
.footer-brand-title { font-size: 1.1rem; font-weight: 700; color: #FFD700; letter-spacing: 0.05em; line-height: 1.2; }
.footer-brand-sub { font-size: 0.8rem; color: rgba(226,232,240,0.6); margin-top: 2px; }
