@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&family=Amiri:wght@400;700&display=swap');

:root {
    --gold: #D4A017;
    --gold-light: #F5D568;
    --gold-dark: #B8860B;
    --gold-50: #FFFBEB;
    --gold-100: #FEF3C7;
    --gold-200: #FDE68A;
    --gold-500: #D4A017;
    --gold-600: #C5920E;
    --gold-700: #A57B0B;
    --gold-gradient: linear-gradient(135deg, #D4A017 0%, #F5D568 50%, #D4A017 100%);
    --gold-gradient-hover: linear-gradient(135deg, #F5D568 0%, #D4A017 50%, #F5D568 100%);
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --dark: #1C1108;
    --cream: #FFFBEB;
    --cream-dark: #FEF3C7;
    --green: #059669;
    --green-light: #10B981;
    --text: #374151;
    --text-light: #6B7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px -10px rgba(212, 160, 23, 0.35);
    --border: 1px solid var(--gray-200);
    --border-gold: 1px solid var(--gold-200);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    /* Make room for bottom nav */
    body { padding-bottom: 92px; }
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border);
    transition: var(--transition);
}

/* Ensure hero slider never overlays the fixed navbar */
.hero,
.hero-slider,
.slider-track,
.slide,
.slide-bg,
.slide-overlay {
    z-index: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.25);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-700);
    background: var(--gold-50);
}

.nav-cta {
    background: var(--gold-gradient) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    margin-left: 0.75rem;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.25);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: #000;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    transform: scale(1);
    filter: brightness(0.8);
}

.slide-bg.active {
    opacity: 0.5;
    animation: slowZoom 6s ease forwards;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 10, 5, 0.75) 0%,
        rgba(15, 10, 5, 0.55) 40%,
        rgba(15, 10, 5, 0.35) 70%,
        rgba(180, 134, 11, 0.15) 100%
    );
    z-index: 1;
}


.slide-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
}

.slide-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 160, 23, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-700);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image-cover {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 160, 23, 0.35);
    box-shadow: var(--shadow-xl), 0 18px 45px -20px rgba(212, 160, 23, 0.45);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
}

.hero-image-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.12) 0%, rgba(245, 213, 104, 0.06) 100%);
}

.hero-image-cover::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: calc(var(--radius-xl) - 10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Keep placeholder hidden if cover is present */
.hero-image .hero-image-placeholder { display: none; }

.slide.active .hero-image-cover {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(245, 213, 104, 0.1) 100%);
}

.hero-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--radius-xl) - 8px);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
    border: var(--border);
}

.floating-card.card-1 {
    top: 10%;
    right: -40px;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 1.5s;
}

.floating-card .icon {
    width: 44px;
    height: 44px;
    background: var(--gold-50);
    border: var(--border-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-card .text h4 {
    font-size: 0.95rem;
    color: var(--gray-900);
    font-weight: 700;
}

.floating-card .text span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    overflow: visible;
    z-index: 5;
}

.slider-track {
    position: relative;
    z-index: 20;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(20px);
    position: relative;
    z-index: 20;
}

.slider-track {
    position: relative;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(20px);
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(212, 160, 23, 0.25);
    color: var(--gold-light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 160, 23, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-text h3 {
    font-size: 1.25rem;
    color: var(--gold-100);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.5),
        1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 520px;
    font-weight: 500;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.4),
        1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-text h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-text p {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0.92;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--gold-700);
    padding: 0.875rem 2rem;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.slide.active .hero-badge {
    animation: fadeInUp 0.5s ease 0.2s both;
}

.slide.active .hero-text h2 {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.slide.active .hero-text h3 {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.slide.active .hero-text p {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.slide.active .hero-buttons {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.slide.active .hero-image {
    animation: fadeInRight 0.7s ease 0.4s both;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold-700);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--gold-700);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    margin-left: -26px;
}

.slider-next {
    margin-right: -26px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1rem 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-dot:hover {
    background: var(--white);
}

.slider-dot.active {
    background: var(--white);
    border-color: var(--white);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: var(--border);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 0 0 2px 2px;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
    background: var(--gold-50);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-50);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: scale(1.1);
}

.stat-card h3 {
    font-size: 2.25rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-card p {
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Section Common Styles */
.section {
    padding: 7rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gold-50);
    color: var(--gold-700);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: var(--border-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Programs Section */
.programs {
    background: var(--gray-50);
    position: relative;
}

.programs-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: var(--border);
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-200);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    height: 200px;
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--gold-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.program-icon::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 2px dashed rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.program-card:hover .program-icon::after {
    border-color: rgba(212, 160, 23, 0.4);
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.program-content p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.program-link {
    color: var(--gold-600);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.program-link:hover {
    gap: 0.75rem;
    color: var(--gold-700);
}

/* Features Section */
.features {
    background: var(--white);
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    text-align: center;
    border: var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.3);
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.gallery {
    background: var(--gray-50);
}

.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    height: 260px;
    background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-200) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
    border: var(--border-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(28, 17, 8, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    position: relative;
    border: var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.25);
}

.testimonial-info h4 {
    color: var(--gray-900);
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-info span {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 7rem 2rem;
    background: var(--gray-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(245, 213, 104, 0.1) 0%, transparent 50%);
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--gray-950);
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

/* Brand colors for social icons */
.footer-social a[aria-label="Facebook"] { color: #1877F2; }
.footer-social a[aria-label="Instagram"] { color: #E1306C; }
.footer-social a[aria-label="YouTube"] { color: #FF0000; }
.footer-social a[aria-label="X"] { color: #E5E7EB; }
.footer-social a[aria-label="TikTok"] { color: #25F4EE; }
.footer-social a[aria-label="LinkedIn"] { color: #0A66C2; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

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

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-contact .icon {
    color: var(--gold-400);
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Page Header (for inner pages) */
.page-header {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(180deg, var(--gold-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 160, 23, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.breadcrumb {
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    position: relative;
}

.breadcrumb a {
    color: var(--gold-600);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-700);
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Contact Page */
.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: var(--transition);
    border: var(--border);
}

.contact-info-card:hover {
    border-color: var(--gold-200);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-50);
    border: var(--border-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--gold-gradient);
    border-color: transparent;
}

.contact-details h4 {
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-details p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

.map-container {
    height: 280px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: var(--border);
}

/* Steps (Pendaftaran) */
.steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: var(--border);
    transition: var(--transition);
    min-width: 180px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-300);
    font-size: 1.5rem;
    font-weight: 300;
}

.step:hover {
    border-color: var(--gold-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.step h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.step p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border: var(--border);
    background: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.filter-btn:hover {
    border-color: var(--gold-300);
    color: var(--gold-700);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--gold-50);
    border-radius: var(--radius-xl);
    border: var(--border-gold);
}

.success-message h3 {
    color: var(--green);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.success-message p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-card.card-1 { right: -20px; }
    .floating-card.card-2 { left: -20px; }
    
    .slider-controls {
        display: none;
    }
    
    .programs-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile drawer menu uses .nav-links.active toggled by .hamburger click */
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.5rem;
        width: 100vw;
        border-left: 0;
        box-shadow: var(--shadow-xl);
        transform: translateX(110%);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 4000;
        pointer-events: none;
    }

    /* Empty space at top of mobile menu */
    .nav-links::before {
        content: '';
        display: block;
        height: 12px;
    }
    
    .nav-links.active {
        transform: translateX(0);
        pointer-events: auto;
    }
    
    .nav-links a {
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hamburger {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero-slider {
        padding: 2rem 1rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .slider-dots {
        margin-top: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .stat-card {
        padding: 0.9rem 0.6rem;
    }
    
    .stat-icon {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-card h3 {
        font-size: 1.15rem;
    }
    
    .stat-card p {
        font-size: 0.75rem;
    }
    
    .programs-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
        height: 260px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .steps {
        gap: 1rem;
    }
    
    .step {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* Selection */
::selection {
    background: var(--gold-200);
    color: var(--gray-900);
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    cursor: default;
    animation: scaleIn 0.3s ease;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.lightbox-counter {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-content img {
        max-height: 80vh;
        border-radius: var(--radius);
    }
}
