/* Host Events Landing Page Styles */
:root {
    /* Primary Colors - Updated with vibrant purple */
    --primary-color: #9333ea;
    --primary-light: #b366f1;
    --primary-dark: #7b28c7;
    
    /* Secondary Colors - Updated with bright pink */
    --secondary-color: #ff1493;
    --secondary-light: #ff5eb8;
    --secondary-dark: #d10076;
    
    /* Neutrals */
    --text-dark: #2c2c2c;
    --text-medium: #5c5c5c;
    --text-light: #8c8c8c;
    --background-light: #f8f9fa;
    --white: #ffffff;
    
    /* Accents */
    --accent-green: #4caf50;
    --accent-yellow: #ffca28;
    
    /* Gradients - Enhanced with modern vibrant gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-modern: linear-gradient(to right, #9333ea, #ff1493);
    --gradient-diagonal: linear-gradient(45deg, var(--primary-dark), var(--secondary-color));
    --gradient-radial: radial-gradient(circle at top right, var(--secondary-light), var(--primary-color));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Font Sizes */
    --text-xs: 0.75rem;   /* 12px */
    --text-sm: 0.875rem;  /* 14px */
    --text-base: 1rem;    /* 16px */
    --text-lg: 1.125rem;  /* 18px */
    --text-xl: 1.25rem;   /* 20px */
    --text-2xl: 1.5rem;   /* 24px */
    --text-3xl: 1.875rem; /* 30px */
    --text-4xl: 2.25rem;  /* 36px */
    --text-5xl: 3rem;     /* 48px */
    
    /* Border Radius */
    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem;  /* 8px */
    --radius-lg: 1rem;    /* 16px */
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 0.25rem;  /* 4px */
    --space-sm: 0.5rem;   /* 8px */
    --space-md: 1rem;     /* 16px */
    --space-lg: 1.5rem;   /* 24px */
    --space-xl: 2rem;     /* 32px */
    --space-2xl: 3rem;    /* 48px */
    --space-3xl: 4rem;    /* 64px */
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-xl);
}

h3 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-md);
}

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

a:hover {
    color: var(--primary-dark);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-3xl) 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(147, 51, 234, 0.15);
    color: var(--primary-color);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
}

.section-badge i {
    margin-right: var(--space-xs);
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
}

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

.logo h2 {
    font-size: var(--text-xl);
    margin-bottom: 0;
    background: var(--gradient-modern);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta-button {
    background: linear-gradient(135deg, #9333ea 0%, #f035e0 100%);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 4px 10px rgba(147, 51, 234, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.8s ease;
}

.nav-cta-button:hover::before {
    left: 100%;
}

.nav-cta-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.nav-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(147, 51, 234, 0.25);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
}

.hero-shape-1 {
    background: var(--primary-color);
    width: 400px;
    height: 400px;
    top: -120px;
    left: -100px;
    animation: float-slow 15s ease-in-out infinite alternate;
}

.hero-shape-2 {
    background: var(--secondary-color);
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -50px;
    animation: float-slow 12s ease-in-out infinite alternate-reverse;
}

.hero-shape-3 {
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    opacity: 0.07;
    animation: float-slow 20s ease-in-out infinite alternate;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 20, 147, 0.15);
    color: var(--secondary-color);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.animate-badge {
    animation: badge-pulse 3s infinite;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 2px 8px rgba(255, 20, 147, 0.2);
    }
    50% {
        box-shadow: 0 2px 15px rgba(255, 20, 147, 0.4);
    }
    100% {
        box-shadow: 0 2px 8px rgba(255, 20, 147, 0.2);
    }
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.badge-text {
    position: relative;
    z-index: 1;
}

.event-badge i {
    margin-right: var(--space-xs);
}

.event-subtitle {
    font-size: var(--text-lg);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.event-title {
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    line-height: 1.1;
    font-size: var(--text-4xl);
    font-weight: 800;
}

.title-line {
    display: block;
}

.title-line.with-gradient {
    background: var(--gradient-modern);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.event-tagline {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    position: relative;
    line-height: 1.2;
}

.highlight-text {
    position: relative;
    color: var(--primary-color);
    font-weight: 800;
    display: inline-block;
    z-index: 1;
    font-size: 110%; /* Slightly larger than surrounding text */
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: rgba(255, 20, 147, 0.2);
    z-index: -1;
    transform: rotate(-2deg);
}

.event-description-wrapper {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xl);
    border-left: 3px solid var(--primary-color);
}

.event-description {
    font-size: var(--text-lg);
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
}

.event-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.event-benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-modern);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.event-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.15);
}

.event-benefit-card:hover::before {
    opacity: 0.05;
}

.event-benefit-card.early-adopter-badge .benefit-icon {
    background-color: rgba(147, 51, 234, 0.15);
    color: var(--primary-color);
}

.event-benefit-card.commission-info .benefit-icon {
    background-color: rgba(255, 20, 147, 0.15);
    color: var(--secondary-color);
}

.event-benefit-card .benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.event-benefit-card .benefit-content {
    position: relative;
    z-index: 1;
}

.event-benefit-card h3 {
    margin-bottom: 0;
    font-size: var(--text-base);
    line-height: 1.2;
}

.event-benefit-card p {
    margin-bottom: 0;
    font-size: var(--text-sm);
    color: var(--text-medium);
}

.event-details p {
    display: flex;
    align-items: center;
    font-size: var(--text-base);
    color: var(--text-medium);
    margin-bottom: 0;
}

.event-details p i {
    margin-right: var(--space-sm);
    color: var(--primary-color);
}

.early-adopter-badge {
    font-weight: 600;
    color: var(--primary-color) !important;
    background-color: rgba(147, 51, 234, 0.1);
    padding: 5px 10px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
}

.commission-info {
    font-weight: 500;
    background-color: rgba(255, 20, 147, 0.1);
    padding: 5px 10px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color) !important;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-modern);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: var(--text-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.cta-button:hover .button-glow {
    opacity: 0.8;
    animation: button-pulse 2s infinite;
}

@keyframes button-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-diagonal);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-xl);
}

.cta-icon {
    margin-right: var(--space-sm);
}

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

.hero-image-container {
    position: relative;
    z-index: 1;
}

.image-frame {
    position: relative;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

.image-decoration {
    position: absolute;
    border-radius: var(--radius-full);
    z-index: -1;
}

.image-decoration-1 {
    width: 150px;
    height: 150px;
    background: var(--gradient-modern);
    opacity: 0.1;
    bottom: -40px;
    right: -60px;
}

.image-decoration-2 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.1;
    top: -20px;
    left: -30px;
}

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

.hero-image:hover img {
    transform: scale(1.05);
}

/* Social Proof Section */
.social-proof {
    display: flex;
    margin-top: var(--space-lg);
    gap: var(--space-lg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.4s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.modal-content {
    position: relative;
    background-color: var(--white);
    width: 95%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    margin: 20px auto;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: var(--gradient-modern);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.modal-title-area {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.modal-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.modal-header h2 {
    margin: 0;
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    transition: all var(--transition-fast);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--space-xl);
}

.modal-intro {
    margin-bottom: var(--space-lg);
    color: var(--text-medium);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: var(--space-md);
}

.form-row {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    width: 100%;
}

.form-row.two-columns {
    flex-direction: row;
}

.form-group {
    flex: 1;
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--secondary-color);
    margin-left: 2px;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
    pointer-events: none;
}

.textarea-container .input-icon {
    top: 18px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--text-base);
    background-color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
    background-color: rgba(147, 51, 234, 0.02);
}

.form-submit-btn {
    background: var(--gradient-modern);
    color: var(--white);
    border: none;
    padding: 14px var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(147, 51, 234, 0.4);
}

.form-submit-btn:hover:before {
    left: 100%;
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.form-response {
    padding: 0 var(--space-xl) var(--space-xl);
    text-align: center;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    font-weight: 600;
    margin: var(--space-md) 0;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    animation: fadeSlideUp 0.5s ease;
}

.error-message {
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    font-weight: 600;
    margin: var(--space-md) 0;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    animation: fadeSlideUp 0.5s ease;
}

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

/* Responsive Styles for Booking Form */
@media (max-width: 600px) {
    /* Modal responsiveness - bottom sheet style */
    .modal {
        align-items: flex-end;
        padding: 0;
    }
    
    .modal-content {
        width: 100%;
        height: auto;
        max-height: 85vh; /* Limit height to 85% of viewport */
        margin: 0;
        border-radius: 16px 16px 0 0;
        position: relative;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .modal.active .modal-content {
        transform: translateY(0);
    }
    
    .modal-header {
        padding: var(--space-sm) var(--space-md);
        min-height: 56px;
    }
    
    .modal-title-area {
        gap: 8px;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .modal-icon {
        font-size: 18px;
    }
    
    .close-modal {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
    
    .modal-body {
        padding: 8px 16px 16px;
        max-height: calc(85vh - 60px); /* Adjusted to work with header height */
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .modal-intro {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .modal-intro p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
    }
    
    /* Form layout for mobile */
    .form-row {
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .form-row.two-columns {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 8px 8px 32px;
        font-size: 0.9rem;
        height: 40px;
    }
    
    .form-group textarea {
        height: 60px;
        min-height: 60px;
        max-height: 60px;
        resize: none; /* Prevent resizing */
    }
    
    .input-icon {
        font-size: 14px;
        left: 8px;
    }
    
    .textarea-container .input-icon {
        top: 12px;
    }
    
    .form-submit-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
        height: 44px;
        margin-top: 8px;
    }
    
    .form-actions {
        margin-top: 12px;
    }
    
    .success-message,
    .error-message {
        font-size: 0.8rem;
        padding: 8px;
    }
}

/* General Responsive Styles */
@media (max-width: 768px) {
    .hero-image-container {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: var(--space-xl) 0;
    }
    
    .event-benefits {
        justify-content: center;
    }
    
    .social-proof {
        justify-content: center;
    }
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(147, 51, 234, 0.05);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-medium);
}

.trust-icons i {
    color: var(--accent-green);
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: 30px;
    left: -20px;
    z-index: 10;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

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

.stat-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-modern);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-sm);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    font-size: var(--text-lg);
    line-height: 1;
    background: var(--gradient-modern);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-medium);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

/* Video Showcase Section */
.video-showcase {
    background-color: var(--background-light);
    padding: var(--space-3xl) 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.video-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: var(--text-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    opacity: 0.85;
    z-index: 2;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-modern);
    opacity: 0.1;
    z-index: 1;
}

.video-card.surf .video-container {
    background: linear-gradient(135deg, #039be5, #0277bd);
}

.video-card.adventure .video-container {
    background: linear-gradient(135deg, #7b1fa2, #6a1b9a);
}

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

.play-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.card-content {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.video-type {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(147, 51, 234, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.video-card.surf .video-type {
    background-color: rgba(3, 155, 229, 0.1);
    color: #039be5;
}

.video-card.adventure .video-type {
    background-color: rgba(123, 31, 162, 0.1);
    color: #7b1fa2;
}

.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.book-meeting-btn {
background: linear-gradient(135deg, #9333ea 0%, #f035e0 100%);
color: var(--white);
border: none;
padding: 10px 18px;
border-radius: 30px;
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
box-shadow: 0 4px 10px rgba(147, 51, 234, 0.3);
letter-spacing: 0.5px;
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: 8px;
}

.book-meeting-btn:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
transition: all 0.7s ease;
}

.book-meeting-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.book-meeting-btn:hover:before {
left: 100%;
}

.book-meeting-btn:active {
transform: translateY(0);
box-shadow: 0 2px 8px rgba(147, 51, 234, 0.3);
}

.view-more-icon {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background-color: rgba(147, 51, 234, 0.1);
border-radius: var(--radius-full);
font-size: var(--text-base);
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(147, 51, 234, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
}

/* Highlights Bar */
.highlights-bar {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl) 0;
    margin-top: var(--space-md);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-modern);
    color: var(--white);
    font-size: var(--text-xl);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-text h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--text-base);
}

.highlight-text p {
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: var(--text-sm);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-2xl);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 200px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(255, 20, 147, 0.3);
    border: 2px solid white;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-modern);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-5px) rotateY(10deg);
}

.step-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-diagonal);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-icon:hover::after {
    opacity: 1;
}

.step h3 {
    margin-bottom: var(--space-xs);
}

.step p {
    color: var(--text-medium);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: var(--primary-light);
    max-width: 80px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-modern);
    transition: width 0.3s ease;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.15);
}

.benefit-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(147, 51, 234, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 16px rgba(147, 51, 234, 0.15);
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-modern);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: white;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon i {
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--text-medium);
    font-size: var(--text-base);
    margin-bottom: 0;
}

/* Video Showcase Section */
.video-showcase {
    background-color: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

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

.video-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-placeholder img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.video-container:hover .video-placeholder img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: var(--text-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.play-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-container:hover .play-button {
    background: var(--white);
}

.video-card h3 {
    font-size: var(--text-lg);
    padding: var(--space-md) var(--space-md) var(--space-xs);
    margin-bottom: 0;
}

.video-card p {
    color: var(--text-medium);
    font-size: var(--text-sm);
    padding: 0 var(--space-md) var(--space-md);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-light);
}

.testimonials-slider {
    display: flex;
    overflow-x: hidden;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-card {
    flex: 0 0 calc(33.33% - var(--space-lg));
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-modern);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.15);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-content {
    padding: var(--space-xl);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: var(--text-3xl);
    background: var(--gradient-modern);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.15;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.rating {
    display: flex;
    gap: var(--space-xs);
    color: var(--secondary-color);
    margin-top: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background-color: rgba(147, 51, 234, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--gradient-modern);
    opacity: 0.1;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author::before {
    transform: scale(1.5);
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0;
    font-size: var(--text-base);
}

.author-details p {
    margin-bottom: 0;
    font-size: var(--text-xs);
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    border: none;
    color: var(--primary-color);
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonial-nav button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-modern);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-nav button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(147, 51, 234, 0.2);
}

.testimonial-nav button:hover::before {
    opacity: 1;
}

.testimonial-nav button:hover i {
    color: var(--white);
}

.testimonial-nav button i {
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.faq-item {
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background-color: rgba(147, 51, 234, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-question:hover {
    background-color: rgba(147, 51, 234, 0.1);
    border-left-color: var(--primary-color);
}

.faq-question[aria-expanded="true"] {
    background-color: rgba(147, 51, 234, 0.1);
    border-left-color: var(--primary-color);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
}

.faq-question h3 i {
    margin-right: var(--space-sm);
    color: var(--primary-color);
}

.toggle-icon {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.faq-question[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer.active {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 200px;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-modern);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.final-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.cta-feature {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.cta-feature i {
    margin-right: var(--space-xs);
    color: white;
    background: var(--secondary-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-logo p {
    color: var(--text-light);
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: var(--text-light);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.footer-column ul li a i {
    margin-right: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: var(--text-light);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: var(--text-lg);
    transition: background-color var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-modern);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: var(--text-3xl);
    }
    
    h2 {
        font-size: var(--text-2xl);
    }
    
    /* Hero Section Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .event-benefits {
        grid-template-columns: 1fr 1fr;
    }
    
    .floating-stats {
        bottom: auto;
        top: -20px;
        right: -10px;
        left: auto;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .step {
        width: 100%;
        max-width: 250px;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        max-width: none;
    }
    
    .step-connector::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: -3px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-lg));
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Modified - don't hide nav-cta completely */
    .nav-cta {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
        animation: bounceIn 0.5s ease;
    }
    
    .nav-cta .nav-cta-button {
        padding: 12px 24px;
        box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1rem;
        animation: pulse 2s infinite;
    }
    
    .nav-cta .nav-cta-button::before {
        content: '\e95e'; /* Calendar icon from Remix Icons */
        font-family: 'remixicon' !important;
        margin-right: 4px;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.6);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(147, 51, 234, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(147, 51, 234, 0);
        }
    }
    
    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.8) translateY(20px);
        }
        70% {
            transform: scale(1.05) translateY(-5px);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    
    /* Hero Section Mobile */
    .event-benefits {
        grid-template-columns: 1fr;
    }
    
    .image-frame {
        transform: none;
        padding: var(--space-sm);
    }
    
    .hero-image {
        height: 300px;
    }
    
    .title-line {
        font-size: var(--text-3xl);
    }
    
    .event-tagline {
        font-size: var(--text-lg);
    }
    
    .floating-stats {
        display: none;
    }
    
    .social-proof {
        flex-wrap: wrap;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: var(--space-lg);
        box-shadow: var(--shadow-md);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .benefits-grid, .video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-slider {
        overflow-x: auto;
        padding-bottom: var(--space-md);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hero Section Small Mobile */
    .event-badge {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .image-decoration {
        display: none;
    }
    
    .event-description-wrapper {
        padding-left: var(--space-sm);
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
}
