/* ===== FITNESS-FOCUSED DARK THEME - UPDATED COLOR PALETTE ===== */
:root {
    /* Primary Colors - Fitness & Professional */
    --primary-dark-green: #2D5A27;       /* Deep forest green for CTAs */
    --primary-charcoal: #34495E;         /* Professional charcoal blue */
    --primary-burgundy: #8B2635;         /* Strong burgundy for accents */
    --accent-steel: #5D6D7E;             /* Steel blue for highlights */
    --accent-orange: #D35400;            /* Muted orange for urgency */
    
    /* Background Colors */
    --bg-white: #FFFFFF;                 /* Clean white background */
    --bg-light: #F8F9FA;                /* Light gray for sections */
    --bg-dark: #2C3E50;                  /* Dark background for contrast */
    --bg-gradient-primary: linear-gradient(135deg, #2D5A27 0%, #27AE60 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    
    /* Text Colors */
    --text-dark: #2C3E50;               /* Dark text for readability */
    --text-gray: #6C757D;               /* Medium gray for secondary text */
    --text-light: #95A5A6;              /* Light gray for subtle text */
    --text-white: #FFFFFF;              /* White text for dark backgrounds */
    
    /* Shadows & Effects */
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 8px 25px rgba(45, 90, 39, 0.25);
    
    /* Typography */
    --font-primary: 'Inter', 'Arial', sans-serif;
    --font-heading: 'Poppins', 'Arial', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 800;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-large: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: var(--font-weight-normal);
}

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

/* ===== UTILITY CLASSES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--bg-gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 39, 0.4);
}

.btn-secondary {
    background: var(--bg-gradient-secondary);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 73, 94, 0.4);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-dark-green);
    box-shadow: var(--shadow-medium);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark-green);
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark-green);
}

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

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

.nav-cta {
    background: var(--bg-gradient-primary);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-colored);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* ===== SECTION 1: HERO WITH TRAILER ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #2D5A27 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s infinite linear;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--text-white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #27AE60, #2D5A27);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: #27AE60;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-cta {
    background: var(--bg-gradient-primary);
    color: var(--text-white);
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-colored);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.hero-video-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    /* Larger 16:9 aspect ratio for bigger trailer video */
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 500px; /* Increased from 400px */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Preserve full video content */
    object-position: center;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.video-mute-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* ===== SECTION 2: WHY CHOOSE MINSFITNESS ===== */
.why-choose {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-primary);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 2rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.social-proof {
    background: var(--bg-gradient-primary);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
    margin-top: 4rem;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== SECTION 3: SUCCESS STORIES (VIDEO TESTIMONIALS) ===== */
.success-stories {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

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

.video-container {
    position: relative;
    width: 100%;
    /* 9:16 aspect ratio for portrait/mobile videos (common for testimonials) */
    aspect-ratio: 9 / 16;
    max-height: 350px;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--bg-light); /* Light background instead of black */
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Preserve full video content */
    object-position: center;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.testimonial-video:hover {
    transform: scale(1.02); /* Reduced scale to avoid cropping */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.hover-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-align: center;
}

.hover-indicator i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.hover-indicator span {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

/* Video sound controls for testimonials */
.video-container .video-controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
}

.video-sound-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-sound-btn.sound-on {
    background: rgba(255, 107, 53, 0.9);
}

.video-sound-btn.sound-on:hover {
    background: rgba(255, 107, 53, 1);
}

.testimonial-info {
    padding: 1.5rem;
    text-align: center;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.testimonial-result {
    color: var(--primary-dark-green);
    font-weight: var(--font-weight-medium);
}

/* Mobile touch support for videos */
@media (hover: none) and (pointer: coarse) {
    .video-overlay {
        opacity: 0.8;
    }
    
    .hover-indicator span {
        font-size: 0.8rem;
    }
    
    .hover-indicator span::after {
        content: " (tap to play)";
    }
    
    .video-container {
        cursor: pointer;
    }
    
    /* Make audio controls larger on mobile */
    .video-sound-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===== SECTION 4: GOT QUESTIONS ===== */
.questions {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.faq-container {
    text-align: left;
    margin: 3rem 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-dark-green);
}

/* ===== SECTION 5: REGISTER YOUR INTEREST ===== */
.register {
    padding: var(--section-padding);
    background: var(--bg-gradient-secondary);
    color: var(--text-white);
    position: relative;
}

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

.urgency-banner {
    background: rgba(139, 38, 53, 0.9);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.batch-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.batch-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
}

.batch-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
}

.batch-time {
    color: var(--accent-yellow);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
    display: block;
}

.spots-container {
    text-align: center;
}

.spots-remaining {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    display: block;
}

.spots-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

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

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-dark-green);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: var(--primary-burgundy);
}

.form-error {
    color: var(--accent-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-submit {
    width: 100%;
    background: var(--bg-gradient-primary);
    color: var(--text-white);
    padding: 16px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid var(--primary-green);
}

.toast.error {
    border-left: 4px solid var(--accent-red);
}

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon {
    color: var(--primary-green);
}

.toast.error .toast-icon {
    color: var(--accent-red);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.toast-message {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
    text-align: center;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark-green);
}

.footer-text {
    opacity: 0.8;
    line-height: 1.6;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-dark-green);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Adjust video container sizes on mobile */
    .hero-video-container {
        max-height: 320px; /* Increased from 250px to accommodate bigger trailer */
    }

    .video-container {
        max-height: 280px;
        /* Allow more flexible ratio on mobile */
        aspect-ratio: 3 / 4;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .toast {
        min-width: 280px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Further adjust video sizes on small mobile */
    .hero-video-container {
        max-height: 200px;
    }

    .video-container {
        max-height: 250px;
        /* Square ratio works better on very small screens */
        aspect-ratio: 1 / 1;
    }

    .batch-info {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card,
.testimonial-card,
.contact-item {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2),
.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3),
.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 6px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
img, video {
    max-width: 100%;
    height: auto;
}

[data-lazy] {
    opacity: 0;
    transition: opacity 0.3s;
}

[data-lazy].loaded {
    opacity: 1;
}