/* ========================================
   FOREX TRADING SESSION - MAIN STYLES
   Fully Responsive Version
   ======================================== */

/* CSS Variables */
:root {
    --primary-dark: #0a1628;
    --primary-blue: #1e3a5f;
    --secondary-blue: #2d4a6f;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-gold-dark: #b8941f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --success: #28a745;
    --error: #dc3545;
    --whatsapp: #25d366;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

/* ========================================
   ANIMATED FOREX BACKGROUND
   ======================================== */

.forex-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.currency-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.currency-symbol {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.12);
    animation: float-up 15s linear infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.candlestick-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.candlestick {
    position: absolute;
    width: 8px;
    animation: candle-float 15s linear infinite;
}

.candlestick::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
}

.candlestick.bullish::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 50%;
    background: linear-gradient(180deg, #00d084 0%, #00b894 100%);
    border-radius: 2px;
    bottom: 25%;
    box-shadow: 0 0 15px rgba(0, 208, 132, 0.5), 0 0 30px rgba(0, 208, 132, 0.3);
}

.candlestick.bearish::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 50%;
    background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 2px;
    top: 25%;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5), 0 0 30px rgba(255, 107, 107, 0.3);
}

/* Animated chart line */
.chart-line {
    position: absolute;
    width: 200px;
    height: 60px;
    opacity: 0.3;
    animation: chart-move 12s linear infinite;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

.chart-line path {
    stroke: var(--accent-gold);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes candle-float {
    0% {
        transform: translateX(-100px) scaleY(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) scaleY(1.2);
        opacity: 0;
    }
}

@keyframes chart-move {
    0% {
        transform: translateX(-250px);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(calc(100vw + 250px));
        opacity: 0;
    }
}
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px));
        opacity: 0;
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    animation: particle-float 10s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    position: fixed;
    top: 10px;
    left: 15px;
    z-index: 1002;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 8px;
    height: 16px;
}

.candle-bullish {
    color: #00d084;
}

.candle-bullish rect {
    fill: #00d084;
}

.candle-bearish {
    color: #ff6b6b;
}

.candle-bearish rect {
    fill: #ff6b6b;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

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

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

.nav-link:hover {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 48px;
    min-height: 48px;
    z-index: 1001;
    transition: var(--transition-normal);
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    top: 15px;
    right: 20px;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    transition: var(--transition-normal);
    display: block;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   MOBILE NAVIGATION (max-width: 767px)
   ======================================== */

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        font-weight: 500;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-gold);
        padding-left: 10px;
    }
    
    /* Mobile menu close button */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 25px;
        left: 30px;
        color: var(--accent-gold);
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-gold);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fade-in-down 0.8s ease;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-icon {
    color: var(--accent-gold);
}

.free-tag {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fade-in-down 0.8s ease 0.1s both;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fade-in-up 0.8s ease 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 25px;
    animation: fade-in-up 0.8s ease 0.4s both;
    padding: 0 10px;
}

.certified-text {
    display: block;
    margin-top: 8px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Session Dates Box */
.session-dates-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 18px 25px;
    margin-bottom: 25px;
    animation: fade-in-up 0.8s ease 0.5s both;
}

.date-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-value {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.date-value.deadline {
    color: #ff6b6b;
}

.date-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Countdown Timer */
.countdown-container {
    margin: 25px 0;
    animation: fade-in-up 0.8s ease 0.6s both;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    min-width: 65px;
}

.countdown-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.countdown-text {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 52px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--medium-gray);
    color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 8px;
}

.mouse {
    width: 22px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 6px;
    }
    100% {
        opacity: 0;
        top: 18px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */

section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    max-width: 450px;
    margin: 0 auto;
}

/* ========================================
   TRAINER SECTION
   ======================================== */

.trainer-section {
    background: var(--off-white);
}

.trainer-card {
    display: flex;
    flex-direction: column;
    gap: 35px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
}

.trainer-image-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.trainer-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trainer-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.trainer-image:hover img {
    transform: scale(1.03);
}

.image-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.trainer-info {
    text-align: center;
}

.trainer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.trainer-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.trainer-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.credential {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.credential-icon {
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.trainer-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.trainer-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
    background: var(--white);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.session-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.video-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.decoration-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.decoration-circle:nth-child(2) {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.decoration-circle:nth-child(3) {
    width: 290px;
    height: 290px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ========================================
   SESSION SECTION
   ======================================== */

.session-section {
    background: var(--off-white);
}

.session-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.session-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.session-info {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    flex-wrap: wrap;
    gap: 5px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.deadline-highlight {
    color: var(--error);
}

.notice-box {
    display: flex;
    gap: 12px;
    background: rgba(220, 53, 69, 0.08);
    border-left: 4px solid var(--error);
    padding: 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.notice-icon {
    width: 22px;
    height: 22px;
    background: var(--error);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.notice-content strong {
    color: var(--error);
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.notice-content p {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

/* Payment Card */
.payment-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-number {
    width: 26px;
    height: 26px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-text strong {
    color: var(--primary-dark);
}

.account-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    padding: 12px;
    border-radius: var(--border-radius);
    margin-top: 10px;
    flex-wrap: wrap;
}

.account-label {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.account-number {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    color: var(--medium-gray);
}

.copy-btn:hover svg {
    color: var(--accent-gold);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.whatsapp-link svg {
    width: 18px;
    height: 18px;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Highlights Card */
.learn-list {
    list-style: none;
}

.learn-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.learn-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.learn-list li span:last-child {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking-section {
    background: var(--white);
    padding: 40px 0;
}

.booking-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.booking-info {
    order: 2;
}

.info-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 25px 20px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-list li span:last-child {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.seats-left {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: var(--border-radius-lg);
    padding: 20px 25px;
}

.seats-indicator {
    text-align: center;
}

.seats-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.seats-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 4px;
    transition: width 1s ease;
    width: 30%;
}

.seats-text {
    color: var(--white);
    font-size: 1rem;
}

.seats-text span {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Form Styles */
.form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    order: 1;
}

.booking-form {
    padding: 25px 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.required {
    color: var(--error);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"] {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
    min-height: 54px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input.error {
    border-color: var(--error);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 6px;
    min-height: 18px;
}

/* Captcha */
.captcha-group {
    background: rgba(212, 175, 55, 0.05);
    padding: 18px;
    border-radius: var(--border-radius);
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.captcha-question {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-gray);
    text-align: center;
}

.captcha-box input {
    text-align: center;
    font-size: 1.1rem !important;
    font-weight: 600;
}

/* Checkbox */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
    margin-top: 2px;
}

.checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    font-size: 1.05rem;
    padding: 18px;
    min-height: 58px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.form-footer p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--whatsapp);
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   SUCCESS MODAL
   ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modal-in 0.3s ease;
}

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

.modal-header {
    text-align: center;
    padding: 30px 25px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.success-icon-large {
    width: 70px;
    height: 70px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.success-icon-large svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-dark);
}

.modal-body {
    padding: 25px;
}

.modal-message {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.modal-instructions {
    background: rgba(212, 175, 55, 0.1);
    padding: 18px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
}

.modal-instructions p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-payment-info {
    background: var(--off-white);
    padding: 18px;
    border-radius: var(--border-radius);
    text-align: center;
}

.modal-payment-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.modal-payment-info p strong {
    color: var(--primary-dark);
}

.modal-footer {
    padding: 20px 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   PRIVACY ASSURANCE SECTION
   ======================================== */

.privacy-section {
    padding: 20px 0;
}

.privacy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

.privacy-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.privacy-content {
    width: 100%;
}

.privacy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.privacy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 10px 0;
}

.privacy-check {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-list li span:last-child {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .privacy-section {
        padding: 70px 0;
    }
    
    .privacy-card {
        padding: 45px 40px;
        flex-direction: row;
        text-align: left;
        gap: 30px;
    }
    
    .privacy-icon {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .privacy-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .privacy-title {
        margin-bottom: 20px;
    }
    
    .privacy-list {
        gap: 12px;
    }
    
    .privacy-list li {
        padding: 14px 18px;
    }
}

@media (min-width: 1024px) {
    .privacy-section {
        padding: 80px 0;
    }
    
    .privacy-card {
        padding: 50px 50px;
        gap: 40px;
    }
    
    .privacy-list li span:last-child {
        font-size: 1rem;
    }
}

/* ========================================
   LOCATION SECTION
   ======================================== */

.location-section {
    background: var(--off-white);
    padding: 40px 0;
}

.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.address-text {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.address-note {
    color: var(--accent-gold);
    font-style: italic;
    font-size: 0.9rem;
}

.location-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.feature-icon {
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    justify-content: center;
    padding: 14px 25px;
}

.btn-outline svg {
    width: 18px;
    height: 18px;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper {
    width: 100%;
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 35px;
    text-align: center;
}

.footer-brand .logo {
    justify-content: center;
    margin-bottom: 12px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-whatsapp svg {
    width: 22px;
    height: 22px;
    color: var(--whatsapp);
}

.footer-whatsapp:hover {
    color: var(--whatsapp);
}

.reminder-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    padding: 18px;
    border-radius: var(--border-radius);
}

.reminder-icon {
    font-size: 1.3rem;
}

.reminder-box p {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.scroll-top:active {
    transform: scale(0.95);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */

.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    opacity: 0;
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ========================================
   TABLET RESPONSIVE (768px+)
   ======================================== */

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .session-dates-box {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 20px 35px;
    }
    
    .date-item {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .date-divider {
        display: block;
    }
    
    .countdown-item {
        padding: 15px 22px;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-text {
        font-size: 0.75rem;
    }
    
    .trainer-card {
        padding: 40px 30px;
    }
    
    .trainer-credentials {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .session-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .session-card.main-card {
        grid-column: span 2;
    }
    
    .booking-form {
        padding: 35px 30px;
    }
    
    .location-wrapper {
        flex-direction: row;
    }
    
    .location-info {
        flex: 1;
    }
    
    .map-container {
        flex: 1.5;
    }
    
    .map-wrapper {
        height: 100%;
        min-height: 350px;
    }
    
    .footer-content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-brand .logo {
        justify-content: flex-start;
    }
    
    .reminder-box {
        justify-content: flex-start;
    }
}

/* ========================================
   DESKTOP RESPONSIVE (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .nav-menu {
        gap: 35px;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .trainer-card {
        flex-direction: row;
        gap: 50px;
        padding: 50px;
    }
    
    .trainer-image-wrapper {
        max-width: 380px;
        margin: 0;
    }
    
    .trainer-info {
        text-align: left;
        flex: 1;
    }
    
    .trainer-credentials {
        justify-content: flex-start;
    }
    
    .trainer-stats {
        justify-content: flex-start;
        gap: 50px;
    }
    
    .session-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .session-card.main-card {
        grid-column: span 1;
    }
    
    .booking-wrapper {
        flex-direction: row;
        gap: 50px;
    }
    
    .booking-info {
        flex: 1;
        order: 1;
        position: sticky;
        top: 100px;
    }
    
    .form-container {
        flex: 1.2;
        order: 2;
    }
    
    .captcha-box {
        flex-direction: row;
        align-items: center;
    }
    
    .captcha-question {
        flex: 1;
    }
    
    .captcha-box input {
        flex: 1;
    }
}

/* ========================================
   LARGE DESKTOP (1200px+)
   ======================================== */

@media (min-width: 1200px) {
    .trainer-image-wrapper {
        max-width: 420px;
    }
    
    .experience-badge {
        padding: 20px 25px;
        bottom: -20px;
        right: -20px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .exp-text {
        font-size: 0.75rem;
    }
}

/* ========================================
   SMALL MOBILE (480px and below)
   ======================================== */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .session-dates-box {
        padding: 15px;
    }
    
    .date-value {
        font-size: 1rem;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-text {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
    
    .trainer-card,
    .session-card,
    .info-card,
    .location-card {
        padding: 20px 15px;
    }
    
    .experience-badge {
        padding: 12px 16px;
        bottom: -10px;
        right: -5px;
    }
    
    .exp-number {
        font-size: 1.3rem;
    }
    
    .trainer-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .play-button {
        width: 55px;
        height: 55px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .form-group input {
        padding: 14px 16px;
        min-height: 50px;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */

@media (hover: none) {
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .play-button:hover {
        transform: none;
    }
    
    .session-card:hover {
        transform: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .forex-background,
    .navbar,
    .scroll-indicator,
    .whatsapp-float,
    .video-decoration,
    .modal-overlay {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
    
    .btn {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}
