/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Tennis Ball Inspired */
    --primary: #7ED321;
    --primary-dark: #5BA00D;
    --primary-light: #A8E063;
    
    /* Secondary Colors - Court Blue */
    --secondary: #2984e4;
    --secondary-dark: #1f6dc0;
    --secondary-light: #4da1f2;
    
    /* Neutrals */
    --dark: #2984e4;
    --dark-light: #1f6dc0;
    --gray-dark: #4A5568;
    --gray: #718096;
    --gray-light: #A0AEC0;
    --light: #F7FAFC;
    --white: #FFFFFF;
    
    /* Accents */
    --accent-yellow: #F6E05E;
    --accent-orange: #ED8936;
    --success: #48BB78;
    --error: #F56565;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Bangers', cursive;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(126, 211, 33, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

svg {
    color: var(--light);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    width: 100%;
    position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--dark);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-top: 16px;
}

.header-benefits {
    margin-top: 32px;
}

.header-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 640px) {
    .header-benefits-list {
        grid-template-columns: 1fr;
    }
}

.header-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(126, 211, 33, 0.08);
    border-radius: var(--radius-md);
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.header-benefits-list li i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.header-benefits-list li:hover {
    background: rgba(126, 211, 33, 0.15);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .header-benefits-list {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-height: 44px; /* Minimum touch target size for mobile */
    min-width: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-color: var(--primary);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition);
    min-height: 68px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    min-height: 64px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    height: auto;
    min-height: 50px;
}

.logo img {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
}

/* Fallback styling when logo doesn't load */
.logo img {
    min-width: 50px;
    background: none;
    border-radius: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: rgba(41, 132, 228, 1);
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo-secondary {
    width: 45px;
    height: auto;
    max-height: 50px;
    max-width: 45px;
    object-fit: contain;
    object-position: center;
    margin-left: 6px;
    margin-right: 6px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 1);
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
}

.btn-nav:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        url('images/background1.jpg') center/cover no-repeat,
        linear-gradient(135deg, #1a5a2e 0%, #2d7a3e 30%, #3d9a4e 60%, #4db35e 100%);
    padding-top: 80px;
    overflow: hidden;
    will-change: background-position;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0.78) 100%
    );
    color: rgba(41, 132, 228, 1);
    will-change: transform;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

.hero-content {
    animation: fadeInUp 1s ease;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(126, 211, 33, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(126, 211, 33, 0.3);
}

.hero-badge i {
    color: var(--accent-yellow);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content p {
    color: var(--gray-light);
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}


/* Hero Video Placeholder */
.hero-video {
    animation: fadeInUp 1s ease 0.3s both;
    will-change: transform;
}

.video-placeholder {
    position: relative;
    background: transparent;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    height: 100%;
    width: 100%;
}

.hero-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    min-height: 500px;
    height: clamp(400px, 50vh, 600px);
    object-fit: contain;
    animation: subtleBounce 3s ease-in-out infinite;
}

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

.video-placeholder:hover .hero-image {
    animation: subtleBounce 2s ease-in-out infinite;
    filter: brightness(1.1);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.programs-grid {
    display: grid;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    width: 100%;
}

/* First row: 3 cards centered */
.programs-grid-first {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1050px;
    margin: 0 auto 40px;
    justify-content: center;
}

/* Second row: 4 cards */
.programs-grid-second {
    grid-template-columns: repeat(4, 1fr);
}

.program-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border: 2px solid var(--light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    min-width: 0;
}

.program-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}


.program-media {
    position: relative;
    width: fit-content;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--light);
    box-shadow: var(--shadow-md);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.program-media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

.program-card:hover .program-media img {
    transform: scale(1.05);
}

.program-card h3 {
    margin-top: 8px;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 1.5rem;
}

.program-card .age-group {
    margin: 8px 0 0 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    text-align: left;
}

.program-card .age-group .highlight {
    color: var(--primary);
    font-weight: 700;
}


.program-features {
    text-align: left;
    margin-top: 0;
    margin-bottom: 12px;
    display: grid;
    gap: 10px;
}

.program-features li {
    padding: 0;
    color: var(--gray-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.feature-bullet {
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0;
    line-height: 1.6;
    display: inline-block;
    vertical-align: baseline;
}

.feature-bullet-red {
    display: inline-block;
}

.tennis-ball-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: baseline;
    object-fit: contain;
}

.feature-bullet-orange {
    filter: sepia(1) saturate(4) hue-rotate(320deg) brightness(0.9) contrast(1.2);
    display: inline-block;
}

.feature-bullet-green {
    filter: hue-rotate(15deg) saturate(1.3) brightness(1.0);
    display: inline-block;
}

.feature-bullet-yellow {
    filter: sepia(1) saturate(5) hue-rotate(-5deg) brightness(1.0) contrast(1.1);
    display: inline-block;
}

.btn-card {
    width: 100%;
    margin-top: auto;
}

.btn-card:not(.btn-primary) {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary);
}

.program-card:hover .btn-card:not(.btn-primary) {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-card.btn-primary {
    width: 100%;
}

.program-card:hover .btn-card.btn-primary {
    box-shadow: var(--shadow-lg);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 120px 0 80px;
    background: var(--white);
    color: var(--dark);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 80px 0 40px;
    }
    
    .legal-page h1 {
        font-size: 1.75rem;
    }
    
    .legal-page h2 {
        font-size: 1.1rem;
    }
    
    .legal-page p,
    .legal-page li {
        font-size: 0.95rem;
    }
}

.legal-page h1 {
    margin-bottom: 12px;
}

.legal-page h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
    color: var(--gray-dark);
    line-height: 1.7;
}

.legal-page ul {
    list-style: disc;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

/* ===== CLASS SCHEDULE ===== */
.class-schedule {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.schedule-embed-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.schedule-embed-container iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.how-it-works .section-header h2 {
    color: #2984e4;
}

.loyalty-subtitle {
    display: block;
    font-size: 0.81em;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.how-card {
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(126, 211, 33, 0.15);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin: 0 auto;
}

.how-card h3 {
    margin: 4px 0;
}

.how-card p {
    color: var(--gray-dark);
    font-size: 0.98rem;
}

.clips-breakdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: stretch;
}

.clips-card {
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clips-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark);
}

.clips-count {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(126, 211, 33, 0.18);
    border-radius: var(--radius-full);
}

.clips-cost {
    color: var(--dark);
}

.clips-uses {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clips-line {
    display: flex;
    justify-content: space-between;
    color: var(--gray-dark);
    font-weight: 600;
    padding: 10px 12px;
    border: 1px solid var(--light);
    border-radius: var(--radius-md);
    background: rgba(41, 132, 228, 0.04);
}

.clips-cta {
    align-self: flex-end;
}

.loyalty-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
}

.loyalty-card-title {
    color: rgba(41, 132, 228, 1);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.loyalty-card-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: contain;
    margin-top: auto;
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(41, 132, 228, 0.95) 0%, 
        rgba(31, 109, 192, 0.98) 50%, 
        rgba(41, 132, 228, 0.95) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 211, 33, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 211, 33, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.about-hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.about-hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.about-hero-badge i {
    font-size: 1rem;
    color: var(--primary);
}

.about-hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    word-wrap: break-word;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

.about-hero-content .highlight {
    color: var(--primary);
    position: relative;
}

.about-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.about-hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-hero-logo {
    width: auto;
    height: 100%;
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(126, 211, 33, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.about-hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.about-hero-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    width: fit-content;
    max-width: 100%;
}

.about-image-main img {
    width: auto;
    height: 650px;
    max-height: 80vh;
    object-fit: contain;
    will-change: transform;
    display: block;
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary);
    will-change: transform;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-icon i {
    width: 50px;
    height: 50px;
    background: rgba(126, 211, 33, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

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

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.25rem;
    width: 50px;
    height: 50px;
    background: rgba(126, 211, 33, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== PHILOSOPHY SECTION (Happy FLEA) ===== */
.philosophy-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.05) 0%, var(--white) 100%);
}

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

.philosophy-content .section-tag {
    margin-bottom: 16px;
}

.philosophy-content h2 {
    margin-bottom: 32px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.philosophy-intro {
    font-size: 1.125rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-intro strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.flea-acronym {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.flea-letter {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light);
    transition: var(--transition);
    text-align: center;
}

.flea-letter:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.flea-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.75rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.flea-letter h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.flea-letter p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.philosophy-question {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-question p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.philosophy-question i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.philosophy-question strong {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* ===== 3 LITTLE WORDS SECTION ===== */
.little-words-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.little-words-header {
    text-align: center;
    margin-bottom: 48px;
}

.little-words-header .section-tag {
    margin-bottom: 16px;
}

.little-words-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.little-words-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.little-words-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.little-words-lead {
    font-size: 1.125rem;
    color: var(--gray-dark);
    line-height: 1.8;
    font-weight: 500;
}

.little-words-text p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

.little-words-text strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.little-words-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.little-words-feature-card {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.08), rgba(126, 211, 33, 0.03));
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 2px solid var(--light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.little-words-feature-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
}

.little-words-feature-card h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin: 0;
}

.little-words-feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ===== COACHES SECTION ===== */
.coaches {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.coaches .section-tag {
    background: rgba(126, 211, 33, 0.2);
    color: var(--primary);
}

.coaches .section-header h2,
.coaches .section-header p {
    color: var(--white);
}

.coaches.gallery .section-header {
    margin-bottom: 40px;
}

.gallery-carousel {
    position: relative;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    pointer-events: none; /* disable interaction */
}

.gallery-window {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-track {
    display: flex;
    gap: 16px;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0;
}

.gallery-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.gallery-nav,
.gallery-dots {
    display: none;
}

@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .gallery-slide img {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 8px);
    }

    .gallery-slide img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-slide img {
        height: 220px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
    overflow: hidden;
    min-height: 400px;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 350px;
    pointer-events: none; /* Prevent user interaction */
}

.testimonials-window {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    pointer-events: none; /* Prevent user interaction */
}

.testimonials-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid transparent;
    flex: 0 0 420px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    pointer-events: none; /* Prevent user interaction */
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.testimonial-text {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 8px;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--dark);
}


@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 320px;
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        -webkit-line-clamp: 6;
    }
    
    .testimonial-rating {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 5;
    }
    
    .testimonials-track {
        gap: 16px;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.cta-content .highlight {
    color: var(--secondary);
}

.cta-content p {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta .btn-primary:hover {
    background: var(--dark-light);
}

.cta .btn-secondary {
    color: var(--dark);
    border-color: var(--dark);
}

.cta .btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===== FIND US SECTION ===== */
.find-us {
    padding: var(--section-padding) 0;
    background: var(--white);
    color: var(--dark);
}

.find-us .section-header h2,
.find-us .section-header p {
    color: var(--dark);
}

.find-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
}

.find-map {
    display: flex;
    height: 100%;
}

.find-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    filter: grayscale(12%);
}

.find-map,
.find-details {
    justify-self: center;
    width: 100%;
    max-width: 620px;
    will-change: transform;
    height: 100%;
}

.find-details {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.find-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    height: 100%;
}

.find-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.find-meta-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.find-meta-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 4px;
    width: 32px;
    text-align: center;
}

.find-meta-item h4 {
    margin-bottom: 6px;
    color: var(--dark);
}

.find-meta-item p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.98rem;
}

.find-card .btn-full {
    text-align: center;
}

@media (max-width: 1024px) {
    .find-grid {
        grid-template-columns: 1fr;
    }

    .find-details {
        order: -1;
    }
}

@media (max-width: 640px) {
    .find-card {
        padding: 22px;
    }

    .find-map iframe {
        min-height: 300px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .footer-logo {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand .footer-logo img {
    height: 120px;
    width: auto;
    max-height: 120px;
}

.footer-brand .footer-logo .logo-secondary {
    height: 120px;
    width: 120px;
    max-height: 120px;
    max-width: 120px;
    min-width: 120px;
    object-fit: contain;
}

.footer-brand p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: left;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.9rem;
}

.think-online-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.think-online-link:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--white);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Medium screens where button might break (900px - 1100px) */
@media (max-width: 1100px) and (min-width: 901px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .btn-nav {
        padding: 10px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .nav-container {
        gap: 12px;
    }
}

/* Tablet and smaller laptop (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    
    .hero-video {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .programs-grid-first {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 20px;
    }
    
    .programs-grid-second {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .program-card {
        max-width: 100%;
    }
    
    .schedule-embed-container iframe {
        height: 750px;
    }
    

    .how-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-hero-visual {
        height: 400px;
        order: -1;
    }
    
    .about-hero-logo {
        max-height: 400px;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        order: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }
    
    .find-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .find-details {
        order: -1;
    }
    
    .little-words-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flea-acronym {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .logo {
        min-height: 40px;
    }
    
    .logo img {
        height: 40px;
        max-height: 40px;
    }
    
    .logo-secondary {
        width: 35px;
        max-height: 40px;
        max-width: 35px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 90px 24px 30px;
        transition: var(--transition);
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 0;
        color: var(--white) !important;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 48px; /* Touch target */
        display: flex;
        align-items: center;
    }
    
    .nav-links a.btn-nav {
        margin-top: 20px;
        text-align: center;
        border: none;
        background: var(--primary);
        border-radius: var(--radius-full);
        padding: 14px 24px;
        justify-content: center;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Add overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero mobile optimizations */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
        background-attachment: scroll;
    }
    
    .about-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-hero-content {
        max-width: 100%;
    }
    
    .about-hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .about-hero-lead {
        font-size: 1.05rem;
        margin-bottom: 32px;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .about-hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .about-hero-visual {
        height: 350px;
        order: -1;
    }
    
    .about-hero-logo {
        max-height: 350px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
        text-align: center;
    }
    
    .hero-video {
        order: -1;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 24px;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-bottom: 32px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-video {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .video-placeholder {
        min-height: 300px;
    }
    
    .hero-image {
        min-height: 300px;
        max-height: 400px;
        height: clamp(300px, 40vh, 400px);
    }
    
    .programs-grid-first {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 24px;
    }
    
    .programs-grid-second {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 24px;
    }
    
    .program-card {
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .schedule-embed-container {
        border-radius: var(--radius-md);
        margin: 0 10px;
    }
    
    .schedule-embed-container iframe {
        height: 700px;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    

    .how-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-card {
        padding: 24px 20px;
    }
    
    .clips-breakdown {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .clips-card {
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .clips-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    .footer-brand .footer-logo img {
        height: 100px;
        max-height: 100px;
    }
    
    .footer-brand .footer-logo .logo-secondary {
        height: 100px;
        width: 100px;
        max-height: 100px;
        max-width: 100px;
        min-width: 100px;
        object-fit: contain;
    }
    
    .footer-brand p {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links h4 {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .about-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
    
    .about-image-main img {
        height: 450px;
        max-height: 60vh;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        gap: 20px;
        text-align: left;
    }
    
    .flea-acronym {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .flea-letter {
        padding: 24px 16px;
    }
    
    .philosophy-question {
        padding: 24px 20px;
    }
    
    .philosophy-question p {
        font-size: 1.05rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .philosophy-content {
        padding: 0 20px;
    }
    
    .little-words-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .little-words-content {
        padding: 0 20px;
    }
    
    .little-words-feature-card {
        padding: 24px 20px;
    }
    
    .little-words-feature-card:hover {
        transform: translateY(-4px);
    }
    
    .loyalty-card {
        margin-top: 0;
    }
    
    .gallery-carousel {
        padding: 16px;
    }
    
    .gallery-slide img {
        height: 280px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
        min-height: auto;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .find-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .find-details {
        order: -1;
    }
    
    .find-card {
        padding: 24px 20px;
    }
    
    .find-map iframe {
        min-height: 300px;
    }
    
    .find-meta-item {
        gap: 12px;
    }
    
    .find-meta-item i {
        font-size: 1.1rem;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    /* Ensure minimum font size for readability */
    body {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo-text {
        display: none; /* Hide logo text on very small screens */
    }
    
    .logo {
        gap: 6px;
        min-height: 32px;
    }
    
    .logo img {
        height: 32px;
        max-height: 32px;
    }
    
    .logo-secondary {
        width: 28px;
        max-height: 32px;
        max-width: 28px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-links {
        width: 90%;
        max-width: 300px;
        padding: 85px 20px 24px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 14px 0;
    }
    
    .hero {
        padding: 85px 0 40px;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 24px;
    }
    
    .about-hero {
        padding: 85px 0 50px;
        min-height: auto;
    }
    
    .about-hero-container {
        padding: 0 16px;
    }
    
    .about-hero-grid {
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .about-hero-lead {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .about-hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .about-hero-stat-number {
        font-size: 2rem;
    }
    
    .about-hero-stat-label {
        font-size: 0.85rem;
    }
    
    .about-hero-visual {
        height: 280px;
    }
    
    .about-hero-logo {
        max-height: 280px;
    }
    
    .hero-content h1 {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .video-placeholder {
        min-height: 250px;
    }
    
    .hero-image {
        min-height: 250px;
        max-height: 350px;
        height: clamp(250px, 35vh, 350px);
    }
    
    .section-header {
        margin-bottom: 35px;
        padding: 0;
    }
    
    .section-header h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
        margin-top: 12px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .program-card {
        padding: 20px 16px;
    }
    
    .program-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .program-features {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .program-features li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-card {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .how-card {
        padding: 20px 16px;
    }
    
    .how-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .how-card h3 {
        font-size: 1.15rem;
    }
    
    .how-card p {
        font-size: 0.9rem;
    }
    
    .clips-card {
        padding: 20px 16px;
    }
    
    .clips-price {
        font-size: 1.1rem;
    }
    
    .clips-line {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .flea-acronym {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .flea-letter {
        padding: 20px 16px;
    }
    
    .flea-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .flea-letter h3 {
        font-size: 1.2rem;
    }
    
    .flea-letter p {
        font-size: 0.9rem;
    }
    
    .philosophy-question {
        padding: 20px 16px;
    }
    
    .philosophy-question p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .philosophy-intro {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .little-words-lead {
        font-size: 1rem;
    }
    
    .little-words-text p {
        font-size: 0.95rem;
    }
    
    .little-words-feature-card {
        padding: 20px 16px;
    }
    
    .feature-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .little-words-feature-card h4 {
        font-size: 1.05rem;
    }
    
    .little-words-feature-card p {
        font-size: 0.9rem;
    }
    
    .about-content h2 {
        font-size: 1.65rem;
    }
    
    .about-lead {
        font-size: 0.95rem;
    }
    
    .about-content > p {
        font-size: 0.95rem;
    }
    
    .about-feature h4 {
        font-size: 1.05rem;
    }
    
    .about-feature p {
        font-size: 0.9rem;
    }
    
    .about-image-main img {
        height: 380px;
        max-height: 50vh;
    }
    
    .gallery-slide img {
        height: 220px;
    }
    
    .testimonial-card {
        padding: 24px 16px;
        min-height: auto;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonial-rating {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .find-card {
        padding: 20px 16px;
    }
    
    .find-map iframe {
        min-height: 250px;
    }
    
    .find-meta-item {
        gap: 10px;
    }
    
    .find-meta-item i {
        font-size: 1rem;
        width: 28px;
    }
    
    .find-meta-item h4 {
        font-size: 1rem;
    }
    
    .find-meta-item p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        gap: 30px;
        padding-bottom: 35px;
    }
    
    .footer-brand .footer-logo img {
        height: 80px;
        max-height: 80px;
    }
    
    .footer-brand .footer-logo .logo-secondary {
        height: 80px;
        width: 80px;
        max-height: 80px;
        max-width: 80px;
        min-width: 80px;
        object-fit: contain;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
        gap: 12px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
}

