/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0f2d4a;          /* Deep navy */
    --primary-light: #164e73;    /* Light navy */
    --primary-dark: #081a2e;     /* Dark navy */
    --secondary: #c5a059;        /* Premium gold */
    --secondary-light: #e0a96d;  /* Soft warm rose gold */
    --secondary-dark-text: #8d6c2e; /* High contrast gold for light backgrounds */
    --accent: #2a00ff;
    --dark: #090e16;
    --light: #f4f7fa;
    --white: #ffffff;
    
    /* Text Colors */
    --text: #1e293b;             /* Slate dark */
    --text-muted: #64748b;       /* Slate muted */
    --text-light: #f8fafc;
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Constants */
    --header-height: 80px;
    --header-shrink-height: 70px;
    --container-width: 1200px;
    
    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 45, 74, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(15, 45, 74, 0.15), 0 8px 10px -6px rgba(15, 45, 74, 0.1);
    --shadow-xl: 0 20px 40px -10px rgba(8, 26, 46, 0.2);
    --border-radius: 12px;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-shrink-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Visually hidden elements for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.relative {
    position: relative;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex { display: flex; }
.text-center { text-align: center; }

/* Sections */
section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-dark-text);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary); /* Navy blue text on gold background for WCAG AA compliance (4.91:1 ratio) */
}

.btn-primary:hover {
    background-color: #b38e4a;
    transform: translateY(-3px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.7);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.link-inline {
    color: var(--secondary-dark-text);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.link-inline:hover {
    border-color: var(--secondary);
}

/* Highlight Text */
.highlight {
    color: var(--secondary);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    height: var(--header-shrink-height);
    background-color: rgba(15, 45, 74, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo-box img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo-dark {
    display: none;
}

.main-header.scrolled .logo-light {
    display: block; /* keep white logo on dark scroll background */
}

/* Change header menu colors when scrolled */
.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION SLIDER
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 650px;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    max-width: 800px;
    margin-left: 10%;
    padding: 0 24px;
    color: var(--white);
    transform: translateY(30px);
    transition: transform 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.slide-info-list {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.slide-info-list li {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-info-list li i {
    color: var(--secondary);
    font-size: 20px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}

.slider-arrow:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* Slider Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--secondary);
    width: 28px;
    border-radius: 6px;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-section {
    background-color: var(--primary);
    padding: 40px 0;
    position: relative;
    z-index: 15;
    box-shadow: var(--shadow-lg);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.countdown-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.date-badge {
    background-color: var(--secondary);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
}

.date-badge .days-num {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.date-badge .month-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.meta-text h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 4px;
}

.meta-text p {
    color: var(--secondary-light);
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.time-block {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.time-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(224, 169, 109, 0.2);
}

.time-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    background-color: var(--light);
}

.feature-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--secondary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(15, 45, 74, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.decorative-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    border-radius: 12px;
}

.about-content-column {
    padding-left: 20px;
}

.about-text {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.about-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.about-meta-item {
    display: flex;
    gap: 15px;
}

.about-meta-item i {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-meta-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.about-meta-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   SPEAKERS SECTION
   ========================================================================== */
.speakers-section {
    background-color: var(--white);
}

.speaker-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.speaker-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 315/374;
}

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

.speaker-card:hover .speaker-img {
    transform: scale(1.08);
}

.speaker-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(15, 45, 74, 0.9));
    padding: 20px;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.speaker-card:hover .speaker-social {
    bottom: 0;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: scale(1.1);
}

.speaker-info {
    padding: 25px 20px;
    text-align: center;
}

.speaker-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.speaker-origin {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   PROGRAM SECTION
   ========================================================================== */
.program-section {
    background-color: var(--light);
}

.program-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 180px;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.tab-btn .tab-date {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.tab-btn .tab-day {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.tab-btn.active .tab-date {
    color: var(--secondary-light);
}

.tab-btn.active .tab-day {
    color: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

/* Timeline Layout */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background-color: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.timeline-time {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-speaker {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-location {
    font-size: 14px;
    color: var(--text-muted);
}

.timeline-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.highlight-dinner .timeline-content {
    border-left: 4px solid var(--secondary);
    background-color: rgba(197, 160, 89, 0.03);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    background-color: var(--white);
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.premium-card {
    border-top: 5px solid var(--secondary);
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(15, 45, 74, 0.05);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price-box {
    margin-bottom: 25px;
}

.price-box .amount {
    font-family: var(--font-headings);
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 35px;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.feat-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffeef2;
    color: #ff3860;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.feat-icon.active {
    background-color: #e3faf2;
    color: #00d1b2;
}

/* ==========================================================================
   GALA DINNER SECTION
   ========================================================================== */
.gala-section {
    background-color: var(--light);
}

.gala-note {
    background-color: rgba(197, 160, 89, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.gala-note i {
    color: var(--secondary);
    font-size: 22px;
    margin-top: 2px;
}

.gala-note p {
    font-size: 15px;
    line-height: 1.6;
}

.gala-gallery-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}

.gala-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.gala-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gala-slide.active {
    opacity: 1;
}

.gala-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.g-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.g-dot.active {
    background-color: var(--secondary);
}

/* ==========================================================================
   MEDIA PLAYLIST & VIDEO PLAYER
   ========================================================================== */
.media-playlist-section {
    background-color: var(--white);
}

.media-container {
    margin-bottom: 60px;
}

.video-player-wrapper {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-embed-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--dark);
}

.video-embed-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player-caption {
    padding: 25px;
}

.video-player-caption h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.video-player-caption p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

.playlist-wrapper {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    max-height: 480px;
}

.playlist-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.playlist-items {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 5px;
}

/* Custom Scrollbar for Playlist */
.playlist-items::-webkit-scrollbar {
    width: 6px;
}

.playlist-items::-webkit-scrollbar-track {
    background: transparent;
}

.playlist-items::-webkit-scrollbar-thumb {
    background: rgba(15, 45, 74, 0.1);
    border-radius: 10px;
}

.playlist-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.playlist-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(197, 160, 89, 0.2);
}

.playlist-item.active {
    background-color: rgba(15, 45, 74, 0.04);
    border-color: var(--secondary);
}

.playlist-item .active-badge {
    display: none;
    font-size: 11px;
    color: var(--secondary-dark-text);
    font-weight: 600;
    margin-top: 4px;
}

.playlist-item.active .active-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.thumb-wrapper {
    position: relative;
    width: 90px;
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 45, 74, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.playlist-item:hover .play-overlay {
    background-color: rgba(197, 160, 89, 0.6);
    opacity: 1;
}

.video-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.video-duration {
    font-size: 12px;
    color: var(--text-muted);
}

.one-to-one-cta {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 50px;
}

.one-to-one-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.one-to-one-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Horizontal Infinite Slider */
.one-to-one-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.photo-slider {
    width: 100%;
}

.slide-track {
    display: flex;
    gap: 20px;
    width: calc(240px * 16); /* Estimate width */
    animation: scroll 35s linear infinite;
}

.photo-slide-item {
    width: 220px;
    aspect-ratio: 9/16;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.photo-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 8)); }
}

/* ==========================================================================
   LOGISTICS ACCORDION
   ========================================================================== */
.logistics-section {
    background-color: var(--light);
}

.logistics-image img {
    box-shadow: var(--shadow-lg);
}

.rounded-img {
    border-radius: var(--border-radius);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--secondary);
}

.accordion-header .icon-state {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid var(--border);
    color: var(--secondary);
}

.accordion-item.active .icon-state {
    transform: rotate(45deg);
    color: var(--secondary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 28px;
}

.accordion-item.active .accordion-body {
    padding: 24px 28px;
}

.accordion-body p {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-muted);
}

.accordion-body ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-muted);
}

.accordion-body li {
    margin-bottom: 8px;
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */
.form-section {
    background-image: linear-gradient(rgba(15, 45, 74, 0.92), rgba(8, 26, 46, 0.92)), url('media/DSC_0120-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.modern-form {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-grid {
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.form-notification {
    margin-top: 25px;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.form-notification.success {
    background-color: rgba(0, 209, 178, 0.15);
    border: 1px solid #00d1b2;
    color: #2bfdd2;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.partners-grid {
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    background-color: var(--white);
    border: 1px solid #ebebeb;
    border-radius: 4px;
    padding: 24px;
    transition: var(--transition);
}

.partner-logo img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
    height: auto;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   MAP & LOCATION SECTION
   ========================================================================== */
.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-info-wrapper {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.info-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    font-weight: 500;
}

/* ==========================================================================
   PHOTO GALLERY INF LOOP
   ========================================================================== */
.gallery-section {
    padding: 0;
    background-color: var(--primary);
    overflow: hidden;
}

.gallery-carousel-wrapper {
    width: 100%;
}

.gallery-track {
    display: flex;
    animation: scrollGallery 45s linear infinite;
    width: calc(300px * 12);
}

.gallery-item {
    width: 300px;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6)); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.footer-about p {
    line-height: 1.8;
}

.footer-contact-grid {
    padding-left: 20px;
}

.f-contact-item i {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 12px;
}

.f-contact-item h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.f-contact-item p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-bottom .social-links a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--white);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--white);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   LANGUAGE DROPDOWN SELECTOR
   ========================================================================== */
.lang-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    outline: none;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

.main-header.scrolled .lang-btn {
    background: rgba(15, 45, 74, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.main-header.scrolled .lang-btn:hover {
    border-color: var(--secondary);
    background: rgba(197, 160, 89, 0.1);
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.lang-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-selector.active .lang-btn i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 140px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1050;
}

.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    width: 100%;
}

.lang-option-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    width: 100%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-align: left;
}

.lang-dropdown li:hover .lang-option-btn,
.lang-dropdown li.active .lang-option-btn {
    background-color: var(--secondary);
    color: var(--white);
}

.lang-dropdown li img,
.lang-option-btn img {
    width: 18px;
    height: 13.5px;
    object-fit: cover;
    border-radius: 1px;
}

/* ==========================================================================
   BENTO GRID LAYOUT
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 24px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 35px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 160, 89, 0.25);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   AUDIENCE SECTION
   ========================================================================== */
.audience-section {
    background-color: var(--light);
}

.section-intro {
    max-width: 800px;
    margin: 15px auto 50px auto;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.audience-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.audience-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.audience-card:hover .card-icon {
    background-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.audience-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.audience-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.prerequisites-box {
    max-width: 900px;
    margin: 50px auto 0 auto;
    background-color: rgba(197, 160, 89, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
    padding: 24px 30px;
}

.prereq-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.prereq-header i {
    font-size: 20px;
}

.prereq-header h4 {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prerequisites-box p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   ACCREDITATION SECTION
   ========================================================================== */
.accreditation-section {
    background-color: var(--white);
}

.accreditation-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.diploma-card {
    width: 100%;
    max-width: 440px;
    background-color: #faf7f2;
    border: 8px double #d4af37;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: rotateX(10deg) rotateY(-10deg) rotateZ(2deg);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.diploma-card:hover {
    transform: rotateX(5deg) rotateY(-5deg) rotateZ(0deg) scale(1.02);
}

.diploma-border {
    padding: 15px;
    border: 2px solid #c59b27;
    height: 100%;
}

.diploma-content {
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 25px 15px;
    background-color: #fffdf9;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.diploma-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.diploma-logo {
    height: 25px;
    width: auto;
}

.diploma-cert-label {
    font-family: var(--font-headings);
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.diploma-body h3 {
    font-family: var(--font-headings);
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.diploma-recipient-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
    text-decoration: underline;
    text-decoration-color: var(--secondary);
}

.diploma-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c59b27, transparent);
    width: 60%;
    margin: 10px auto;
}

.diploma-text {
    font-size: 9px;
    color: #666;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

.diploma-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.diploma-seal {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fffdf9;
    font-size: 18px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    position: relative;
}

.diploma-seal::after {
    content: '';
    position: absolute;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    border: 1px dashed #d4af37;
    top: -4px;
    left: -4px;
}

.diploma-signatures {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signature-line {
    font-family: var(--font-headings);
    font-size: 11px;
    color: #333;
    border-bottom: 1px solid #c59b27;
    padding-bottom: 2px;
    width: 100px;
}

.signature-title {
    font-size: 7px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
}

.accreditation-content {
    padding-left: 30px;
}

.accreditation-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.accreditation-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.accreditation-badge i {
    color: var(--secondary);
    font-size: 16px;
}

/* ==========================================================================
   TIMELINE TAG BADGES
   ========================================================================== */
.timeline-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tag-theory {
    background-color: rgba(15, 45, 74, 0.08);
    color: var(--primary);
    border: 1px solid rgba(15, 45, 74, 0.15);
}

.tag-live {
    background-color: rgba(197, 160, 89, 0.12);
    color: #a8812a;
    border: 1px solid rgba(197, 160, 89, 0.22);
}

.tag-networking {
    background-color: rgba(32, 178, 170, 0.08);
    color: #157d77;
    border: 1px solid rgba(32, 178, 170, 0.15);
}

.tag-gala {
    background-color: rgba(111, 66, 193, 0.08);
    color: #6137b0;
    border: 1px solid rgba(111, 66, 193, 0.15);
}

/* ==========================================================================
   CLICKABLE SPEAKER OVERLAYS
   ========================================================================== */
.clickable-speaker {
    cursor: pointer;
}

.speaker-card-overlay {
    display: none;
}

.bio-badge {
    display: none;
}

/* ==========================================================================
   SPEAKER BIO MODAL OVERLAY
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-body {
    background-color: var(--white);
    width: 100%;
    max-width: 650px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.25);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 35px;
}

.modal-overlay.active .modal-body {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    outline: none;
}

.modal-close:hover {
    color: var(--secondary);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 25px;
}

.modal-img-frame {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
    box-shadow: var(--shadow-md);
}

.modal-speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-speaker-origin {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.modal-speaker-name {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.modal-speaker-bio {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   SCROLL REVEAL EFFECT
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .slide-title { font-size: 44px; }
    .about-content-column { padding-left: 0; }
    .location-info-wrapper { padding-left: 0; }
    
    .bento-grid {
        grid-template-columns: 1.2fr 1fr;
    }
    .feature-card-small {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Sections */
    section { padding: 60px 0; }
    .section-title { font-size: 32px; }
    
    /* Grid system */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-small {
        grid-column: span 1;
    }
    .accreditation-badges {
        flex-direction: column;
        gap: 12px;
    }
    .accreditation-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .diploma-card {
        transform: none !important;
        max-width: 100%;
    }
    .modal-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .modal-img-frame {
        width: 120px;
        height: 120px;
    }
    .modal-body {
        padding: 30px 20px;
    }
    
    /* Navigation Menu */
    .mobile-nav-toggle {
        display: block;
    }
    
    .lang-selector {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-dark);
        transition: var(--transition);
        padding: 40px;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    /* Hero Section */
    .slide-content {
        margin-left: 0;
        text-align: center;
    }
    
    .slide-title {
        font-size: 34px;
    }
    
    .slide-info-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    /* Countdown */
    .countdown-container {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-meta {
        flex-direction: column;
    }
    
    .countdown-timer {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 80px;
        padding: 10px;
    }
    
    .time-number {
        font-size: 28px;
    }
    
    /* Program Tabs */
    .tab-btn {
        padding: 10px 20px;
        min-width: 120px;
    }
    
    .tab-btn .tab-day {
        font-size: 15px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-icon {
        left: -30px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    /* Gala & Playlist */
    .media-container {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-contact-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-title { font-size: 28px; }
    .pricing-card { padding: 35px 20px; }
    .modern-form { padding: 25px 20px; }
    .whatsapp-tooltip { display: none; }
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================================== */
.privacy-hero {
    background: linear-gradient(rgba(15, 45, 74, 0.9), rgba(8, 26, 46, 0.95)), url('media/3-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 80px 0;
    text-align: center;
    color: var(--white);
}

.privacy-hero h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-headings);
}

.privacy-hero .last-updated {
    font-size: 14px;
    color: var(--secondary-light);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.privacy-body-section {
    padding: 80px 0;
    background-color: var(--light);
}

.privacy-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 45, 74, 0.05);
    padding: 50px;
    color: var(--text);
    font-family: var(--font-body);
}

.privacy-card h2 {
    font-size: 22px;
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-card h2:first-of-type {
    margin-top: 0;
}

.privacy-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-card ul, .privacy-card ol {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-card strong {
    color: var(--primary-dark);
}

.footer-link {
    margin-left: 15px;
    color: var(--secondary);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 60px 0;
    }
    .privacy-hero h1 {
        font-size: 32px;
    }
    .privacy-body-section {
        padding: 40px 0;
    }
    .privacy-card {
        padding: 30px 20px;
    }
}
