/* ========================================
   VACATION BOOTCAMP - BLUE THEME
   Punchy Marketing Style CSS
======================================== */

/* CSS Variables - Blue Theme */
:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --secondary: #00c6ff;
    --accent: #d4af37;
    --accent-hover: #b8962e;
    --success: #00d26a;
    --warning: #ffb800;
    --danger: #ff4757;
    
    --dark: #0a1628;
    --dark-light: #1a2942;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00c6ff 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    
    --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-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   URGENCY BAR
======================================== */
.urgency-bar {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: pulse-bg 2s infinite;
}

.urgency-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.urgency-text {
    font-weight: 600;
    font-size: 14px;
    animation: flash 1.5s infinite;
}

.urgency-cta {
    background: var(--white);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.urgency-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.logo-highlight {
    color: var(--primary-light);
}

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

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

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

.btn-pulse {
    animation: btn-pulse 2s infinite;
}

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

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #00b85c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 106, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 18px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    border: 2px solid var(--accent);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mqa-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 210, 106, 0.2);
    border: 2px solid var(--success);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    color: var(--success);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.mqa-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.maths-partner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
    font-size: 14px;
}

.partner-label {
    color: var(--gray-300);
}

.partner-name {
    color: var(--accent);
    font-weight: 700;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-offer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.price-box {
    background: rgba(0, 102, 255, 0.2);
    border: 2px solid var(--primary);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
}

.price-value {
    color: var(--white);
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.bonus-badge {
    background: var(--gradient-accent);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    animation: bounce 2s infinite;
}

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

.bonus-icon {
    font-size: 24px;
}

.hero-target {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 16px;
    margin-bottom: 40px;
}

.target-icon {
    font-size: 24px;
}

/* Countdown */
.countdown-section {
    margin-bottom: 40px;
}

.countdown-label {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.countdown-unit {
    display: block;
    font-size: 12px;
    color: var(--gray-300);
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 14px;
}

.trust-icon {
    color: var(--success);
    font-weight: 700;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    background: var(--primary);
    padding: 50px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--primary);
    transform: skewY(-1deg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left-align {
    text-align: left;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--gray-900);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PROGRAM SECTION
======================================== */
.program-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--gray-500);
    font-size: 15px;
}

.pricing-highlight {
    text-align: center;
}

.pricing-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 30px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
}

.pricing-strikethrough {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 18px;
}

.pricing-current {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin: 10px 0;
}

.pricing-save {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 14px;
}

/* ========================================
   SKILLS SECTION
======================================== */
.skills-section {
    padding: 100px 0;
    background: var(--white);
}

.skills-grid {
    display: grid;
    gap: 20px;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(0, 102, 255, 0.05);
    transform: translateX(10px);
}

.skill-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 143, 90, 0.1) 100%);
    border: 2px solid var(--accent);
}

.skill-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.skill-highlight .skill-number {
    background: var(--gradient-accent);
    font-size: 24px;
}

.skill-content h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.skill-content p {
    color: var(--gray-500);
    font-size: 15px;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 32px;
    color: var(--white);
}

/* ========================================
   BOOKING INSTRUCTIONS SECTION
======================================== */
.booking-instructions {
    padding: 100px 0;
    background: var(--white);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.instruction-card {
    background: var(--gray-100);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instruction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.instruction-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(232, 197, 71, 0.1) 100%);
    border: 2px solid var(--accent);
}

.instruction-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.instruction-card.highlight .instruction-number {
    background: var(--gradient-accent);
}

.instruction-icon {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.instruction-title {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.instruction-desc {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.6;
}

.payment-details {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
    text-align: left;
}

.payment-details p {
    color: var(--gray-700);
    margin-bottom: 5px;
    font-size: 14px;
}

.account-number {
    font-family: var(--font-heading);
    font-size: 24px !important;
    font-weight: 800;
    color: var(--accent) !important;
    letter-spacing: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(232, 197, 71, 0.1) 100%);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: 10px;
}

.whatsapp-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--success);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-number:hover {
    background: #00b85c;
    transform: scale(1.05);
}

.booking-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
    border: 2px dashed var(--primary);
    padding: 25px 40px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.note-icon {
    font-size: 28px;
}

.booking-note p {
    color: var(--gray-700);
    font-size: 15px;
}

/* ========================================
   REGISTER SECTION
======================================== */
.register-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
}

.register-section .section-title,
.register-section .section-subtitle {
    color: var(--white);
}

.register-section .section-subtitle {
    opacity: 0.8;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-300);
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.urgency-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--accent);
    padding: 25px;
    border-radius: var(--radius-md);
    color: var(--white);
}

.urgency-icon {
    font-size: 28px;
}

.urgency-box strong {
    display: block;
    color: var(--accent);
    margin-bottom: 5px;
}

.urgency-box p {
    opacity: 0.8;
    font-size: 14px;
}

.register-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* Phone Input with Prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.phone-prefix {
    background: var(--gray-100);
    padding: 14px 12px;
    font-weight: 600;
    color: var(--gray-700);
    border-right: 2px solid var(--gray-300);
    font-size: 15px;
}

.phone-input-wrapper input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
}

.phone-input-wrapper input:focus {
    box-shadow: none !important;
}

.price-summary {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.price-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px dashed var(--gray-300);
}

.price-row .price-value {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 20px;
}

.price-row.bonus {
    color: var(--success);
    font-weight: 600;
}

.price-free {
    color: var(--success);
    font-weight: 700;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 20px;
}

/* ========================================
   LOCATION SECTION
======================================== */
.location-section {
    padding: 100px 0;
    background: var(--white);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.location-card {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.location-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.location-card p {
    color: var(--gray-700);
    margin-bottom: 5px;
}

.location-note {
    color: var(--primary);
    font-style: italic;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.amenity {
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    color: var(--gray-700);
}

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

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-brand p {
    color: var(--gray-300);
    font-size: 14px;
    margin-top: 5px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--gray-500);
}

/* ========================================
   FLOATING WHATSAPP
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 210, 106, 0.6);
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================================
   MODAL
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modal-slide 0.3s ease;
}

@keyframes modal-slide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-500);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.modal-text {
    color: var(--gray-500);
    margin-bottom: 25px;
}

.modal-details {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.modal-details p {
    margin-bottom: 10px;
}

.modal-details p:last-child {
    margin-bottom: 0;
}

.modal-account {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(232, 197, 71, 0.1) 100%);
    border: 2px solid var(--accent);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
}

.modal-acc-number {
    font-family: var(--font-heading);
    font-size: 22px !important;
    font-weight: 800;
    color: var(--accent) !important;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Form Error */
.form-error {
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid var(--danger);
    color: var(--danger);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Footer Partner */
.footer-partner {
    color: var(--accent);
    font-weight: 600;
    margin-top: 8px;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .register-wrapper,
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-offer {
        flex-direction: column;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .register-form-wrapper {
        padding: 30px 20px;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 20px;
        right: 20px;
    }
    
    .booking-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .account-number {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .price-value {
        font-size: 36px;
    }
    
    .pricing-current {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
