/* ===================================
   EXPERIENSA TOURS - MODERN LANDING PAGE
   Dark Purple Theme with Modern Features
   =================================== */

/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'The Bold Font';
    src: url('fonts/THE BOLD FONT (FREE VERSION).otf') format('opentype'),
         url('fonts/THE BOLD FONT (FREE VERSION).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--almost-black, #0a0118);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(156, 39, 176, 0.2);
    border-top-color: #9c27b0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loader-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

:root {
    /* Color Palette */
    --primary-purple: #7b1fa2;
    --dark-purple: #4a148c;
    --light-purple: #9c27b0;
    --accent-purple: #ce93d8;
    --almost-black: #0a0118;
    --dark-bg: #1a0b2e;

    /* Text Colors */
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Effects */
    --blur-amount: 20px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

/* Responsive base font size */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: var(--font-primary);
    background: var(--almost-black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video,
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (max-aspect-ratio: 16/9) {
    .video-background video,
    .video-background iframe {
        height: 100vh;
        width: 177.77vh;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(74, 20, 140, 0.4) 0%, rgba(10, 1, 24, 0.6) 50%, rgba(0, 0, 0, 0.75) 100%);
    backdrop-filter: blur(1px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 1, 24, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 1, 24, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(156, 39, 176, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem clamp(1rem, 4vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'The Bold Font', var(--font-display) !important;
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e1bee7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-purple), transparent);
    transition: transform 0.3s var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(156, 39, 176, 0.1);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.cta-nav {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ===== LOCATION BANNER ===== */
.location-banner {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.95) 0%, rgba(74, 20, 140, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.location-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.location-banner-content i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.location-banner-content .current-location {
    color: rgba(255, 255, 255, 0.85);
}

.location-banner-content .current-location strong {
    color: white;
    font-weight: 600;
}

.location-banner-content .separator {
    color: rgba(255, 255, 255, 0.5);
}

.location-banner-content .expansion-text {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .location-banner-content {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .location-banner-content i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location-banner-content {
        font-size: 0.75rem;
        flex-wrap: wrap;
        text-align: center;
    }

    .location-banner-content .separator {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem clamp(1rem, 4vw, 2rem) 4rem;
    position: relative;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'The Bold Font', var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e1bee7 50%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span, .btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 39, 176, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(156, 39, 176, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(156, 39, 176, 0.2);
    border-color: rgba(156, 39, 176, 0.8);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

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

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    width: 100%;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.section-title {
    font-family: 'The Bold Font', var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* ===== PROBLEM/SOLUTION SECTION ===== */
.problem-solution {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(var(--blur-amount));
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.2);
}

.problem-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.solution-content {
    background: rgba(156, 39, 176, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 30px;
    padding: 4rem;
    margin-top: 4rem;
}

.solution-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.solution-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.solution-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: var(--accent-purple);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: radial-gradient(ellipse at center, rgba(156, 39, 176, 0.1) 0%, transparent 70%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(20, 10, 30, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 60px rgba(156, 39, 176, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.5);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--accent-purple);
    margin: 2rem 0 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: rgba(0, 0, 0, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(156, 39, 176, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(156, 39, 176, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(123, 31, 162, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== SEASONS SECTION ===== */
.seasons {
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.5) 0%, rgba(26, 11, 46, 0.8) 100%);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* 2x2 Grid Layout for Seasons */
.seasons-grid.seasons-2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .seasons-grid.seasons-2x2 {
        grid-template-columns: 1fr;
    }
}

.season-card {
    background: rgba(20, 10, 30, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.season-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 25px 70px rgba(156, 39, 176, 0.3);
}

.season-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.season-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.season-card:hover .season-image img {
    transform: scale(1.1);
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 1, 24, 0.9) 100%);
}

.season-content {
    padding: 2.5rem;
}

.season-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.season-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.season-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.season-activities {
    list-style: none;
    padding: 0;
}

.season-activities li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.season-activities i {
    color: var(--light-purple);
}

/* Season-specific accents */
.season-card.winter .season-icon { color: #64b5f6; }
.season-card.spring .season-icon { color: #81c784; }
.season-card.summer .season-icon { color: #ffd54f; }
.season-card.fall .season-icon { color: #ff8a65; }

/* ===== EXPERIENSA APP SECTION ===== */
.experiensa-app {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    padding: var(--spacing-xl) 0;
}

.app-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-description {
    padding-right: 2rem;
}

.app-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(20, 10, 30, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
}

.app-feature:hover {
    background: rgba(20, 10, 30, 0.6);
    border-color: rgba(156, 39, 176, 0.4);
    transform: translateX(8px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.btn-app-store {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app-store:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-app-store i {
    font-size: 2rem;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.store-name {
    font-size: 1.3rem;
    font-weight: 600;
}

.app-video {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .app-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .app-description {
        padding-right: 0;
        order: 2;
    }

    .app-video {
        order: 1;
    }
}

/* ===== BUSINESS PARTNERSHIP SECTION ===== */
.business-partners {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-xl) 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 100%;
    align-items: stretch;
}

.partnership-grid > * {
    display: flex;
    flex-direction: column;
}

.partnership-form {
    grid-column: 1 / -1;
}

/* Expansion Callout */
.expansion-callout {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(103, 58, 183, 0.2) 100%);
    border: 2px solid var(--accent-purple);
    border-radius: 15px;
    padding: 2rem 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.3);
    animation: pulse-border 3s ease-in-out infinite;
}

.expansion-callout i {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    display: block;
}

.expansion-callout h3 {
    font-family: 'The Bold Font', var(--font-display);
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expansion-callout p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--accent-purple);
        box-shadow: 0 10px 40px rgba(156, 39, 176, 0.3);
    }
    50% {
        border-color: rgba(156, 39, 176, 0.6);
        box-shadow: 0 15px 50px rgba(156, 39, 176, 0.5);
    }
}

.feature-sample h3,
.partnership-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-purple);
}

.sample-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(156, 39, 176, 0.1);
    border-left: 3px solid var(--accent-purple);
    border-radius: 8px;
}

.sample-card {
    background: rgba(20, 10, 30, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.4s var(--transition-smooth);
}

.sample-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 15px 50px rgba(156, 39, 176, 0.3);
}

.sample-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.sample-image.sample-video {
    height: 400px;
}

.sample-image img,
.sample-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-image video {
    cursor: pointer;
    object-fit: contain;
    background: #000;
}

/* Video play overlay for mobile */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    gap: 10px;
}

.video-play-overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-play-overlay span {
    color: white;
    font-size: 1rem;
    opacity: 0.8;
}

.video-play-overlay:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.video-play-overlay.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .video-play-overlay {
        display: flex;
    }
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #4a148c;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sample-content {
    padding: 2rem;
}

.sample-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.activity-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.activity-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.activity-meta i {
    color: var(--accent-purple);
}

.activity-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(156, 39, 176, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-tag i {
    color: var(--accent-purple);
}

.benefits-list {
    background: rgba(156, 39, 176, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-sample,
.qr-program-feature {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefits-list h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.benefits-list i {
    color: #81c784;
    font-size: 1.2rem;
}

/* Contact Form */
.partnership-form {
    background: rgba(20, 10, 30, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 20px;
    padding: 3rem;
    overflow: visible;
}

.partnership-grid {
    overflow: visible;
}

.partnership-form p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form button[type="submit"] {
    align-self: flex-start;
    height: auto;
    min-height: 50px;
    max-height: 60px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s var(--transition-smooth);
}

.form-group select {
    /* Reset all custom styling */
    all: revert;
    /* Apply only essential styles */
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.form-group select:focus,
.form-group select:active {
    z-index: 1000;
}

.form-group select option {
    /* Let browser handle option styling */
    all: revert;
    background-color: #2d1548;
    color: white;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(156, 39, 176, 0.1);
    border-color: rgba(156, 39, 176, 0.4);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-purple);
}

.checkbox-label span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--accent-purple);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(156, 39, 176, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.captcha-image {
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 8px;
    background: rgba(10, 1, 24, 0.5);
}

.captcha-refresh {
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.4);
    color: var(--accent-purple);
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: rgba(156, 39, 176, 0.3);
    border-color: rgba(156, 39, 176, 0.6);
    transform: rotate(180deg);
}

.captcha-refresh i {
    font-size: 1.2rem;
}

.form-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
}

.form-success i {
    font-size: 3rem;
    color: #81c784;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 992px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partnership-form {
        padding: 2rem;
    }
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background: radial-gradient(ellipse at center, rgba(156, 39, 176, 0.2) 0%, rgba(10, 1, 24, 0.95) 70%);
    padding: var(--spacing-xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'The Bold Font', var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-item i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'The Bold Font', var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff, #e1bee7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(156, 39, 176, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--light-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 39, 176, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 1, 24, 0.98);
        backdrop-filter: blur(30px);
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--transition-smooth);
        border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .steps-grid,
    .benefits-grid { /* seasons-grid removed from this block for 992px */
        grid-template-columns: 1fr;
    }

    /* Keep seasons-grid.seasons-2x2 at 2 columns for tablet landscape */
    /* Keep partnership-grid at 2 columns for tablet landscape */
    .seasons-grid.seasons-2x2,
    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem; /* Keep existing gap for partnership-grid */
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .solution-content {
        padding: 2.5rem 1.5rem;
    }

    .problems-grid,
    .seasons-grid.seasons-2x2, /* Collapse seasons-grid to 1 column for phones/portrait tablets */
    .partnership-grid { /* Collapse partnership-grid to 1 column for phones/portrait tablets */
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--transition-smooth);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SELECTION & SCROLLBAR ===== */
::selection {
    background: rgba(156, 39, 176, 0.5);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 1, 24, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(156, 39, 176, 0.5);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 39, 176, 0.7);
}

/* ===== QR CODE PROGRAM FEATURE ===== */
.qr-program-feature {
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.1) 0%, rgba(74, 20, 140, 0.15) 100%);
    border: 2px solid rgba(156, 39, 176, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--transition-smooth);
}

.qr-program-feature:hover {
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.2);
    transform: translateY(-5px);
}

.qr-program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.qr-icon {
    font-size: 3rem;
    color: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(156, 39, 176, 0.3);
}

.qr-program-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.optional-badge {
    background: linear-gradient(135deg, var(--light-purple), var(--accent-purple));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-program-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.qr-program-benefits {
    margin-bottom: 2rem;
}

.qr-program-benefits h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qr-program-benefits h4 i {
    color: var(--accent-purple);
}

.qr-program-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qr-program-benefits li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.qr-program-benefits li:last-child {
    border-bottom: none;
}

.qr-program-benefits li i {
    color: var(--light-purple);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.success-text {
    color: #4caf50;
    font-weight: 600;
}

.error-text {
    color: #f44336;
    font-weight: 600;
}

.qr-program-pricing {
    background: rgba(156, 39, 176, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-badge {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-purple);
    background: linear-gradient(135deg, var(--light-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== QR CODE PROGRAM FORM ELEMENTS ===== */
.qr-program-optin {
    margin: 2rem 0;
}

.qr-optin-box {
    background: rgba(156, 39, 176, 0.05);
    border: 2px solid rgba(156, 39, 176, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.qr-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.qr-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--light-purple);
}

.qr-checkbox i {
    color: var(--light-purple);
    font-size: 1.2rem;
}

.qr-terms-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* QR Discount Details Form */
.qr-discount-details {
    background: rgba(156, 39, 176, 0.08);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.qr-discount-details h4 {
    color: var(--accent-purple);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qr-discount-details .discount-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.discount-form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.discount-field {
    flex: 1;
    min-width: 200px;
}

.discount-field label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.discount-field input[type="text"],
.discount-field input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.discount-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.discount-field input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

.discount-percentage {
    max-width: 140px;
    flex: 0 0 140px;
}

.percent-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.percent-input-wrapper input {
    padding-right: 2.5rem;
}

.percent-symbol {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    pointer-events: none;
}

@media (max-width: 600px) {
    .discount-form-row {
        flex-direction: column;
    }

    .discount-percentage {
        max-width: 100%;
        flex: 1;
    }
}

.terms-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(206, 147, 216, 0.1);
    border: 1px solid rgba(206, 147, 216, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.terms-notice i {
    color: var(--accent-purple);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.terms-notice p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-agreement {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.terms-agreement input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--light-purple);
    flex-shrink: 0;
}

.terms-agreement span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-link {
    color: var(--light-purple);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--accent-purple);
}

.terms-agreement input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.terms-agreement:has(input:disabled) {
    opacity: 0.6;
    cursor: not-allowed;
}

.terms-hint {
    font-size: 0.85rem;
    color: rgba(206, 147, 216, 0.8);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-hint i {
    font-size: 0.9rem;
}

.error-message {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: shake 0.4s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

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

.modal-content {
    background: linear-gradient(135deg, #1a0b2e 0%, #0a0118 100%);
    border: 2px solid rgba(156, 39, 176, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

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

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header i {
    color: var(--light-purple);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(156, 39, 176, 0.2);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(10, 1, 24, 0.5);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(156, 39, 176, 0.5);
    border-radius: 10px;
}

.terms-content h3 {
    color: var(--light-purple);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h3:first-of-type {
    margin-top: 0;
}

.terms-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-content ul {
    list-style-position: inside;
    color: var(--text-secondary);
    margin: 0.5rem 0 1rem 1rem;
}

.terms-content ul li {
    margin-bottom: 0.5rem;
}

.terms-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.terms-acknowledgment {
    background: rgba(156, 39, 176, 0.1);
    border: 2px solid rgba(156, 39, 176, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.terms-acknowledgment p {
    color: var(--accent-purple);
    font-weight: 600;
    margin: 0;
}
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(156, 39, 176, 0.3);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* ===== FORM MESSAGE NOTIFICATION ===== */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.5s ease-out, fadeIn 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.5);
}

.form-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.1));
    border: 2px solid rgba(244, 67, 54, 0.5);
}

.message-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.form-message.success .message-icon::before {
    content: '✓';
    color: #4caf50;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-message.error .message-icon::before {
    content: '✗';
    color: #f44336;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.message-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ===== RESPONSIVE - QR CODE PROGRAM ===== */
@media (max-width: 768px) {
    .qr-program-feature {
        padding: 1.5rem;
    }

    .qr-program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .qr-program-header h3 {
        font-size: 1.4rem;
    }

    .qr-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .qr-program-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        flex-direction: column;
        padding: 1.5rem;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .terms-content h3 {
        font-size: 1.1rem;
    }
}
/* ===== Additional Responsive Refinements ===== */

@media (max-width: 768px) {
    /* Adjust base font size for better readability on mobile */
    body {
        font-size: 15px;
        line-height: 1.6;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2.2rem;
        font-size: 1rem;
    }

    .expansion-callout {
        padding: 1.5rem;
    }

    .expansion-callout h3 {
        font-size: 1.5rem;
    }

    .expansion-callout p {
        font-size: 1rem;
    }

    .cta-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .partnership-form {
        padding: 1.5rem;
    }

    /* Ensure form fields don't have conflicting layouts */
    .contact-form .form-group {
        width: 100%;
    }

    .captcha-container {
        flex-wrap: wrap;
    }

    /* Mobile scroll fixes */
    .hero {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Video background mobile fallback styling */
    .video-background.mobile-fallback {
        background: radial-gradient(ellipse at top, #1a0b2e 0%, #0a0118 50%, #000000 100%) !important;
    }

    .video-background.mobile-fallback iframe {
        display: none !important;
    }

    /* Ensure body can scroll freely on mobile */
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .step-card, .problem-card, .benefit-card {
        padding: 2rem 1.5rem;
    }

    .solution-content {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* ===== Footer Copyright Link ===== */
.footer-bottom p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: #00d4ff;
}

/* ===== Kickstarter Corner Badge ===== */
.kickstarter-badge {
    position: fixed;
    top: 40px;
    right: -100px;
    background: linear-gradient(135deg, #7b2cbf 0%, #c77dff 100%);
    color: #ffffff;
    padding: 20px 120px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(123, 44, 191, 0.6);
    z-index: 1000;
    transform: rotate(45deg);
    transform-origin: center;
    width: 400px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    overflow: hidden;
}

.kickstarter-badge:hover {
    background: linear-gradient(135deg, #9d4edd 0%, #e0aaff 100%);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.8);
    transform: rotate(45deg) scale(1.05);
}

.kickstarter-badge i {
    font-size: 26px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(123, 44, 191, 0.6);
    }
    50% {
        box-shadow: 0 10px 40px rgba(123, 44, 191, 0.9);
    }
}

@media (max-width: 768px) {
    .kickstarter-badge {
        top: 30px;
        right: -80px;
        padding: 15px 80px;
        font-size: 14px;
        width: 280px;
    }

    .kickstarter-badge i {
        font-size: 20px;
    }
}

/* ===== Meetup Section Styles ===== */
.meetup-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(9, 9, 121, 0.1) 100%);
    position: relative;
}

.meetup-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.meetup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.meetup-header i {
    font-size: 48px;
    color: #00d4ff;
}

.meetup-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.meetup-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.meetup-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    padding: 18px 40px;
}

.meetup-btn i {
    font-size: 24px;
}

/* ===== Spotify Album Section Styles ===== */
.spotify-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    position: relative;
}

.spotify-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.spotify-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.spotify-header i {
    font-size: 48px;
    color: #1DB954;
}

.spotify-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.spotify-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.spotify-player {
    margin-top: 30px;
}

.spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    padding: 18px 40px;
    background: #1DB954;
    border-color: #1DB954;
}

.spotify-btn:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.spotify-btn i {
    font-size: 24px;
}