/* ════════════════════════════════════════════════════════════
   Lumbini Barista Coffee School — Main Stylesheet
   Premium dark coffee theme with warm amber accents
   ════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --deep-brown: #1a0e0a;
    --espresso: #3e2723;
    --mocha: #4e342e;
    --latte: #5d4037;
    --amber: #c8a97e;
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    --cream: #f5f0e8;
    --white: #ffffff;
    --off-white: #faf8f5;
    --text-dark: #2c1810;
    --text-muted: #8d7b6e;
    --text-light: rgba(255,255,255,0.8);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(26,14,10,0.08);
    --shadow-md: 0 4px 20px rgba(26,14,10,0.12);
    --shadow-lg: 0 8px 40px rgba(26,14,10,0.18);
    --shadow-glow: 0 0 30px rgba(200,169,126,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─── Global Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--amber);
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

::selection {
    background: var(--amber);
    color: var(--white);
}


/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-white-muted {
    color: rgba(255,255,255,0.7) !important;
}

.text-gold {
    color: var(--gold) !important;
}


/* ─── Section Padding ─── */
.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: var(--deep-brown);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}


/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */

.navbar {
    padding: 15px 0;
    transition: var(--transition-slow);
    background: transparent;
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(26, 14, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 10px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--amber) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.nav-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--deep-brown) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200,169,126,0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,169,126,0.5);
    color: var(--deep-brown) !important;
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition);
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn-primary-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--deep-brown) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200,169,126,0.3);
    text-align: center;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200,169,126,0.5);
    color: var(--deep-brown) !important;
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--amber) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--amber);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline-gold:hover {
    background: var(--amber);
    color: var(--deep-brown) !important;
    transform: translateY(-3px);
}

.btn-outline-light-gold {
    display: inline-block;
    background: transparent;
    color: var(--cream) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(245,240,232,0.5);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline-light-gold:hover {
    background: rgba(245,240,232,0.15);
    border-color: var(--cream);
    color: var(--white) !important;
    transform: translateY(-3px);
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: var(--white) !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
    color: var(--white) !important;
}

.btn-sm {
    padding: 8px 20px !important;
    font-size: 0.875rem !important;
}

.btn-lg {
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
}


/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 14, 10, 0.3) 0%,
        rgba(26, 14, 10, 0.6) 50%,
        rgba(26, 14, 10, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--amber);
    border-bottom: 2px solid var(--amber);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}


/* ═══════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════ */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.page-hero-compact {
    min-height: 40vh;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 14, 10, 0.4) 0%,
        rgba(26, 14, 10, 0.8) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.page-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb-custom {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.breadcrumb-custom li a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-custom li a:hover {
    color: var(--amber);
}

.breadcrumb-custom li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255,255,255,0.3);
}

.breadcrumb-custom li.active {
    color: var(--amber);
}


/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */

.stats-section {
    background: var(--deep-brown);
    padding: 60px 0;
    position: relative;
}

.stats-about {
    margin: 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--amber);
    margin-bottom: 10px;
    display: block;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}


/* ═══════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════ */

.about-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-video-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 14, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(200,169,126,0.3);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--amber);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}


/* ═══════════════════════════════════════
   COURSE CARDS
   ═══════════════════════════════════════ */

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-dark .course-card {
    background: var(--espresso);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.course-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.course-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.course-card:hover .course-card-img {
    transform: scale(1.08);
}

.course-card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.course-category-badge {
    display: inline-block;
    background: rgba(26, 14, 10, 0.8);
    backdrop-filter: blur(8px);
    color: var(--amber);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.section-dark .course-card-title {
    color: var(--white);
}

.course-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex: 1;
}

.section-dark .course-card-text {
    color: var(--text-light);
}

.course-card-meta {
    display: flex;
    gap: 16px;
    margin: 12px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.section-dark .course-card-meta {
    color: var(--text-light);
}

.course-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.section-dark .course-card-actions {
    border-top-color: rgba(255,255,255,0.1);
}


/* ═══════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════ */

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--amber);
    color: var(--deep-brown);
    border-color: var(--amber);
}


/* ═══════════════════════════════════════
   COURSE DETAIL
   ═══════════════════════════════════════ */

.course-detail-content {
    padding-right: 20px;
}

.course-full-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.course-full-desc p {
    margin-bottom: 1rem;
}

.course-highlights h4 {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.highlights-list li i {
    color: var(--amber);
}

.course-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.course-sidebar-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-sidebar-info {
    padding: 24px;
}

.sidebar-info-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
}

.sidebar-info-row i {
    color: var(--amber);
    font-size: 1.2rem;
    width: 30px;
}

.sidebar-info-row span {
    color: var(--text-muted);
    flex: 1;
}

.sidebar-info-row strong {
    color: var(--text-dark);
}

.course-sidebar .btn-primary-gold,
.course-sidebar .btn-whatsapp {
    margin: 0 24px 16px;
    width: calc(100% - 48px);
}


/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--amber);
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.testimonial-name {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: #4285f4;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}


/* ═══════════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════════ */

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.section-dark .team-card {
    background: var(--espresso);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.team-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-card-detailed .team-card-image-wrapper {
    height: 320px;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-card-img {
    transform: scale(1.05);
}

.team-card-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: var(--transition);
}

.team-card:hover .team-card-social {
    bottom: 15px;
}

.team-card-social a {
    width: 38px;
    height: 38px;
    background: rgba(26, 14, 10, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 1rem;
    transition: var(--transition);
}

.team-card-social a:hover {
    background: var(--amber);
    color: var(--deep-brown);
}

.team-card-body {
    padding: 20px;
}

.team-card-name {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.section-dark .team-card-name {
    color: var(--white);
}

.team-card-role {
    font-size: 0.85rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}


/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */

.cta-section {
    background: linear-gradient(135deg, var(--espresso) 0%, var(--deep-brown) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,169,126,0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 14, 10, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.gallery-item-overlay span {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 10px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-caption {
    text-align: center;
    color: var(--text-light);
    margin-top: 12px;
    font-size: 0.95rem;
}


/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--amber);
    margin-bottom: 16px;
    display: block;
}

.contact-info-card h5 {
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: var(--amber);
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--off-white);
}

.contact-form .form-control:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.15);
    background: var(--white);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: var(--radius-lg);
}


/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */

.faq-accordion .accordion-item {
    background: var(--espresso);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(5) sepia(1) hue-rotate(10deg);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(200,169,126,0.1);
    color: var(--amber);
}

.faq-accordion .accordion-body {
    color: var(--text-light);
    padding: 0 24px 18px;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ═══════════════════════════════════════
   ENROLLMENT
   ═══════════════════════════════════════ */

.enrollment-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.enrollment-form-header {
    background: linear-gradient(135deg, var(--espresso), var(--deep-brown));
    padding: 35px 35px 25px;
    text-align: center;
}

.enrollment-form-header i {
    font-size: 2.5rem;
    color: var(--amber);
    margin-bottom: 12px;
    display: block;
}

.enrollment-form-header h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.enrollment-form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.enrollment-form {
    padding: 35px;
}

.enrollment-form .form-control,
.enrollment-form .form-select {
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--off-white);
}

.enrollment-form .form-control:focus,
.enrollment-form .form-select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.15);
    background: var(--white);
}

.enrollment-form .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.enrollment-course-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.enrollment-course-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.enrollment-course-info h5,
.enrollment-course-info p {
    padding: 0 20px;
}

.enrollment-course-info h5 {
    padding-top: 16px;
    margin-bottom: 8px;
}

.enrollment-course-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.enrollment-course-meta {
    display: flex;
    gap: 16px;
    padding: 12px 20px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.enrollment-help-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.enrollment-help-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--amber);
}

.enrollment-help-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.help-link {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.help-link i {
    color: var(--amber);
}


/* ═══════════════════════════════════════
   SUCCESS PAGE
   ═══════════════════════════════════════ */

.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.success-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-wrapper h2 {
    margin-bottom: 16px;
}

.success-wrapper p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 24px;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.site-footer {
    background: var(--deep-brown);
    color: var(--text-light);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social .social-icon-link:hover {
    background: var(--amber);
    color: var(--deep-brown);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--amber);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--amber);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--amber);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--text-light);
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}

.footer-hours .day {
    color: var(--text-light);
}

.footer-hours .time {
    color: var(--amber);
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1fb855;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.copyright a {
    color: var(--amber);
}


/* ═══════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════ */

.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 420px;
}

.flash-messages .alert {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 24px;
    font-size: 0.95rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(26, 14, 10, 0.97);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
    }

    .nav-cta-btn {
        text-align: center;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        min-height: 40vh;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .about-video {
        height: 280px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .course-card-actions {
        flex-direction: column;
    }

    .enrollment-form-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
