/* CSS Variables for Theme Management */
:root {
    --primary-color: #6a7e6e;
    --accent-color: #ff9b84;
    --background-color: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 8px;
    --border-radius-large: 16px;
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --header-height: 140px;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Container and Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container--fluid {
    max-width: 100%;
}

.section {
    padding: var(--section-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

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

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: none;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    height: 100%;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
}

.nav-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

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

.nav-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: var(--transition-medium);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

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

.header.scrolled .logo-image {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}


/* Language Switch */
.language-switch {
    position: relative;
    width: 120px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 21px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.1);
    user-select: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.language-switch.active {
    background: var(--primary-color);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 20px rgba(106, 126, 110, 0.3);
    border-color: var(--primary-color);
}

.language-switch:hover {
    transform: scale(1.02);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 6px 25px rgba(0, 0, 0, 0.15);
}

.language-switch:active {
    transform: scale(0.98);
}

.language-switch:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.switch-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1;
}

.switch-label {
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.switch-label.left {
    color: rgba(255, 255, 255, 0.9);
}

.switch-label.right {
    color: rgba(255, 255, 255, 0.6);
}

.language-switch.active .switch-label.left {
    color: rgba(255, 255, 255, 0.6);
}

.language-switch.active .switch-label.right {
    color: rgba(255, 255, 255, 0.9);
}

.switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 56px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 19px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-switch.active .switch-slider {
    transform: translateX(58px);
}

.switch-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

/* Scrolled state - white background */
.header.scrolled .language-switch {
    background: var(--border-color);
    border-color: var(--border-color);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.header.scrolled .language-switch.active {
    background: var(--primary-color);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(106, 126, 110, 0.2);
}

.header.scrolled .switch-label.left {
    color: var(--text-primary);
    text-shadow: none;
}

.header.scrolled .switch-label.right {
    color: var(--text-secondary);
    text-shadow: none;
}

.header.scrolled .language-switch.active .switch-label.left {
    color: rgba(255, 255, 255, 0.6);
}

.header.scrolled .language-switch.active .switch-label.right {
    color: rgba(255, 255, 255, 0.9);
}

.header.scrolled .switch-text {
    color: var(--primary-color);
}

/* Tennis Ball Menu */
.tennis-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tennis-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: var(--transition-medium);
    position: relative;
}

.tennis-menu:hover {
    transform: scale(1.1);
}

.tennis-ball {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.tennis-menu.active .tennis-ball {
    transform: rotate(180deg);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.header.scrolled .tennis-ball {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

/* Hide header tennis ball when menu is open */
.menu-open .header .tennis-menu-container {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Close button in off-canvas menu */
.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 155, 132, 0.15);
    border: 2px solid rgba(255, 155, 132, 0.4);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px) rotate(-90deg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.off-canvas-menu.active .menu-close {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    transition-delay: 0.2s;
}

.menu-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 155, 132, 0.4);
}

.menu-close:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.menu-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-medium);
    text-align: center;
    line-height: 1;
    letter-spacing: 0.5px;
}

.header.scrolled .menu-text {
    color: var(--primary-color);
    text-shadow: none;
}

/* Off-Canvas Menu */
.off-canvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: linear-gradient(135deg, #3d4f42 0%, #4a5d4e 50%, #566959 100%);
    box-shadow: var(--shadow-heavy);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    transform: translateX(-100%);
    backdrop-filter: blur(10px);
}

/* Small mobile screens (iPhone 13 mini, etc.) */
@media (max-width: 375px) {
    .off-canvas-menu {
        width: 100vw;
        max-width: 100vw;
    }
}

.off-canvas-menu.active {
    left: 0;
    transform: translateX(0);
}


.menu-content {
    padding: 2rem;
    padding-top: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Add decorative pattern to menu background */
.menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Small mobile screens - more compact menu */
@media (max-width: 375px) {
    .menu-content {
        padding: 1.5rem;
        padding-top: 3.5rem;
    }
}

/* Close menu button removed - tennis ball now serves as both opener and closer */

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav ul li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Small mobile screens - more compact menu items */
@media (max-width: 375px) {
    .menu-nav ul li {
        margin-bottom: 1.5rem;
    }
}

.off-canvas-menu.active .menu-nav ul li {
    opacity: 1;
    transform: translateX(0);
}

.off-canvas-menu.active .menu-nav ul li:nth-child(1) { transition-delay: 0.1s; }
.off-canvas-menu.active .menu-nav ul li:nth-child(2) { transition-delay: 0.2s; }
.off-canvas-menu.active .menu-nav ul li:nth-child(3) { transition-delay: 0.3s; }
.off-canvas-menu.active .menu-nav ul li:nth-child(4) { transition-delay: 0.4s; }
.off-canvas-menu.active .menu-nav ul li:nth-child(5) { transition-delay: 0.5s; }
.off-canvas-menu.active .menu-nav ul li:nth-child(6) { transition-delay: 0.6s; }

.menu-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    padding: 15px 20px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0);
}

/* Small mobile screens - smaller font and padding */
@media (max-width: 375px) {
    .menu-nav ul li a {
        font-size: 1.5rem;
        padding: 12px 0;
        letter-spacing: 0.5px;
    }
}

.menu-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), #ff8a6e);
    border-radius: 0 4px 4px 0;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-nav ul li a::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--accent-color);
    font-size: 1.5rem;
}

.menu-nav ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-nav ul li a:hover::before {
    height: 100%;
}

.menu-nav ul li a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero--small {
    height: 100vh;
    min-height: 600px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero .container {
    padding: 0;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-medium);
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: white;
    color: var(--accent-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about.section {
    background: var(--primary-color);
    color: white;
}

.about .section-title {
    color: white;
}

.about .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.about-text h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* About section specific stats styling */
.about .stat-number {
    color: white;
}

.about .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Our Mission Section */
.our-mission {
    background: white;
    color: var(--primary-color);
}

.our-mission .section-title {
    color: var(--primary-color);
}

.our-mission .section-subtitle {
    color: var(--text-secondary);
}

.our-mission .statement-text p {
    color: var(--text-secondary);
}

.our-mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.mission-statement {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.statement-text {
    text-align: right;
}

.mission-image {
    max-width: 400px;
    margin: 0 auto;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Mission Points */
.mission-points {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    padding: 0.6rem 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    min-width: 0;
    justify-content: center;
}


.point-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 0.7rem;
    color: white;
}



.point-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Alternating card colors */
.mission-point:nth-child(even) {
    background: white;
    border-color: white;
}

.mission-point:nth-child(even) .point-text {
    color: var(--accent-color);
}

.mission-point:nth-child(even) .point-icon {
    background: rgba(255, 155, 132, 0.2);
}

.mission-point:nth-child(even) .point-icon i {
    color: var(--accent-color);
}


/* Mission Statement */
.mission-statement {
    padding: 0;
    text-align: center;
    position: relative;
}


.statement-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.statement-text p:last-child {
    margin-bottom: 0;
}

/* All Ages Section */
.all-ages-section {
    background: white;
    padding: var(--section-padding);
    overflow: hidden;
}

.all-ages-section .section-header {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}


.all-ages-section .section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.age-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    cursor: default;
    pointer-events: none;
}

/* Re-enable pointer events for interactive elements within cards */
.age-card .card-cta {
    pointer-events: auto;
}

.age-card:nth-child(1) { animation-delay: 0.1s; }
.age-card:nth-child(2) { animation-delay: 0.2s; }


.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.card-age-range {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    margin-bottom: 1.2rem;
    text-align: center;
}

.card-description {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.card-duration i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    font-size: 0.9rem;
    color: white;
}

.pricing-note i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.card-pricing {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid white;
}

.pricing-section {
    margin-bottom: 1.5rem;
}

.pricing-section:last-child {
    margin-bottom: 0;
}

.pricing-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-type {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.pricing-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.per-person {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.card-cta {
    width: 100%;
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.card-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.card-cta i {
    font-size: 0.8rem;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

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

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

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.program-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.program-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.program-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: 'Montserrat', sans-serif;
}

.program-btn:hover {
    background: #5a6d5e;
    transform: translateY(-1px);
}

/* Coaches Section */
.coach-section {
    max-width: var(--container-max-width);
    margin: 0 auto;
    background: var(--background-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.coach-hero {
    position: relative;
    background: var(--primary-color);
    padding: 60px 40px;
}

.coach-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.coach-image-container {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.coach-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.coach-image:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-top: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.experience-badge:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.experience-badge i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.experience-badge:hover i {
    color: white;
}

.coach-info {
    color: white;
    animation: slideInRight 1s ease-out;
}

.coach-title-section {
    margin-bottom: 30px;
}

.coach-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.coach-role {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.coach-role::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 0.5s forwards;
}

@keyframes expandLine {
    to { width: 100%; }
}

.coach-experience {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Top credential tags near license */
.coach-license {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.license-tag,
.credential-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(6px);
}

.credential-tag {
    opacity: 0.95;
    font-weight: 500;
}

.coach-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.specialty-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.specialty-tag:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.coach-stats-section {
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0 0 0;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-light);
}

.credentials-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-title i {
    color: var(--accent-color);
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credential {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credential:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.contact-coach {
    background: linear-gradient(135deg, var(--accent-color), #ff7a5f);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(255, 122, 95, 0.45), 0 0 0 6px rgba(255, 122, 95, 0.15);
    letter-spacing: 0.3px;
    position: relative;
}

.contact-coach:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 122, 95, 0.55), 0 0 0 8px rgba(255, 122, 95, 0.18);
}

/* Inline coach CTA styling (within coach info) */
.coach-cta-inline {
    margin-top: 1.25rem;
}

/* Coach CTA container at bottom of coach section */
.coach-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    padding: 0 1rem 0.5rem;
}

.coach-cta .contact-coach i {
    font-size: 1rem;
}


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

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

/* Gallery Section */
.gallery {
    background: var(--primary-color);
    color: white;
}

.gallery .section-title {
    color: white;
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* News/Camps Section */
.news {
    background: #f7f8f7;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.news-card {
    display: flex;
    gap: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
}

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

.news-image {
    width: 400px;
    min-height: 280px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.news-header {
    flex: 1;
}

.news-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

/* News button */
.news-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.9rem;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--accent-color), #ff8a6e);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 155, 132, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.news-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 155, 132, 0.5);
}

.news-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(255, 155, 132, 0.35);
}

.news-button__icon {
    display: inline-block;
    transition: transform 0.25s ease;
}

.news-button:hover .news-button__icon {
    transform: translateX(4px);
}

.news-button--disabled {
    background: #e9ecef;
    color: #7a7a7a;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

/* News Detail Page */
.news-detail {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.news-detail-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-detail-section:last-of-type {
    border-bottom: none;
}

.news-detail-section--dark {
    background: var(--primary-color);
    color: white;
}

.news-detail-section--dark h2,
.news-detail-section--dark h3 {
    color: white;
}

.news-detail-section--light {
    background: #f7f8f7;
}

.news-detail-section .container {
    max-width: 1000px;
}

.news-detail-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.news-detail-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-detail-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.news-detail-section .section-subtitle {
    text-align: center;
    margin: 0 auto;
}

.news-detail-section h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-detail-section ul {
    list-style: none;
    padding-left: 0;
}

.news-detail-section ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-detail-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.news-detail-section--dark ul li::before {
    color: var(--accent-color);
}

.news-detail-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Hero Meta Information */
.hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-date,
.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-date i,
.hero-location i {
    font-size: 0.9rem;
}

/* News Intro Section */
.news-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-header {
    margin-bottom: 2rem;
}

.intro-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-dates {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.date-badge,
.location-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-badge {
    background: var(--accent-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Medium screens - adjust gaps */
@media (max-width: 1024px) {
    .features-grid {
        gap: 1.5rem;
    }
    
    .info-cards {
        gap: 1.5rem;
    }
    
    .participant-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-cards {
        gap: 1.5rem;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Participant Info */
.participant-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.participant-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.participant-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.participant-icon i {
    font-size: 1.5rem;
    color: white;
}

.participant-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.participant-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Container */
.pricing-container {
    margin-top: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-amounts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Room Pricing */
.room-pricing {
    margin-top: 3rem;
}

.room-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.room-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.room-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.room-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Cancellation Info */
.cancellation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.cancellation-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.cancellation-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cancellation-fee {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

/* CTA Section with Background */
.cta-section-with-bg {
    position: relative;
    overflow: hidden;
}

/* Camp Gallery Section */
.camp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.camp-gallery-grid .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    cursor: pointer;
    background: white;
}

.camp-gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.camp-gallery-grid .gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-medium);
}

.camp-gallery-grid .gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.camp-gallery-grid .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.camp-gallery-grid .gallery-overlay i {
    color: white;
    font-size: 2rem;
    transition: transform var(--transition-medium);
}

.camp-gallery-grid .gallery-item:hover .gallery-overlay i {
    transform: scale(1.1);
}

/* Responsive adjustments for camp gallery */
@media (max-width: 768px) {
    .camp-gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 2rem -1rem 0 -1rem;
    }
    
    .camp-gallery-grid .gallery-item {
        border-radius: var(--border-radius);
        box-shadow: none;
        background: transparent;
    }
    
    .camp-gallery-grid .gallery-image {
        height: 300px;
        border-radius: var(--border-radius);
        object-fit: cover;
    }
    
    .camp-gallery-grid .gallery-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .camp-gallery-grid .gallery-item:hover .gallery-image {
        transform: none;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .camp-gallery-grid {
        margin: 2rem -0.5rem 0 -0.5rem;
        gap: 0.25rem;
    }
    
    .camp-gallery-grid .gallery-image {
        height: 250px;
    }
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.cta-section-with-bg .cta-section {
    position: relative;
    z-index: 3;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 155, 132, 0.35);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 155, 132, 0.5);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.news-table th,
.news-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    word-break: break-word;
    white-space: normal;
}

.news-table thead th {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tbody tr:hover {
    background: #f9faf9;
}

.news-table .muted {
    color: var(--text-light);
}

/* Prevent click/focus flicker on tables */
.news-table, .news-table * {
    -webkit-tap-highlight-color: transparent;
    transition: none;
    animation: none;
}

/* Horizontal scroll wrapper for tables to prevent flicker */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-gutter: stable both-edges;
    max-width: 100%;
}

.table-scroll::-webkit-scrollbar {
    height: 8px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
}

/* Remove focus outlines on cells to avoid flash */
.news-table th:focus, .news-table td:focus {
    outline: none;
}

/* On touch devices, disable hover effect to prevent tap flash */
@media (hover: none) {
    .news-table tbody tr:hover {
        background: inherit;
    }
}

@media (max-width: 768px) {
    .news-table {
        font-size: 0.9rem;
    }
    
    .news-table th,
    .news-table td {
        padding: 10px 12px;
    }
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cta-row {
        flex-direction: column;
    }
    
    .cta-row a {
        width: 100%;
        justify-content: center;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-color), #ff8a6e);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 155, 132, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 155, 132, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #f0f2f0;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.news-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.75rem;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    background: #f0f2f0;
    color: var(--primary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.news-back:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 126, 110, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

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

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-modal-image:hover {
    transform: scale(1.02);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-modal-prev,
.gallery-modal-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

/* Mobile Gallery Modal */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .news-image {
        width: 100%;
        height: 240px;
        min-height: 240px;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-title {
        font-size: 1.3rem;
    }
    
    .news-text {
        font-size: 0.95rem;
    }
    
    .gallery-modal-content {
        width: 95%;
        height: 95%;
        padding: 10px;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .gallery-modal-nav {
        padding: 0 10px;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
        padding: 10px 15px;
    }
    
    /* News Detail Mobile Styles */
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-date,
    .hero-location {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .intro-dates {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .participant-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .room-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .room-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cancellation-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-modal-content {
        width: 98%;
        height: 98%;
        padding: 5px;
    }
    
    .gallery-modal-close {
        top: 5px;
        right: 10px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 8px 12px;
    }
    
    /* News Detail Small Mobile Styles */
    .news-detail-section {
        padding: 2rem 0;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .participant-card {
        padding: 1.5rem;
    }
    
    .participant-icon {
        width: 50px;
        height: 50px;
    }
    
    .participant-icon i {
        font-size: 1.2rem;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
    }
    
    .amount {
        font-size: 1.3rem;
    }
    
    .room-card {
        padding: 1.2rem;
    }
    
    .cancellation-card {
        padding: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.contact-info-container {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.contact-info-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.contact-card {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 1.5rem 2rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: background-color 0.3s ease !important;
    min-height: 100px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.contact-card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
}

.contact-card:last-child {
    border-bottom: none;
}

.contact-card:hover {
    background-color: #f8f9fa;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: none !important;
}

.contact-details h4 {
    margin: 0 0 0.8rem 0 !important;
    color: var(--text-color) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.contact-details p {
    margin: 0 !important;
    color: var(--text-color-light) !important;
    line-height: 1.5 !important;
    font-size: 0.95rem !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    overflow: visible !important;
}

/* Make contact links clearly interactive */
.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-card a:hover,
.contact-card a:focus {
    color: var(--accent-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.map-container {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.map-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--section-padding);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color) !important;
    margin: 1rem 0;
    font-style: italic;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer branding */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

.footer-brand-text h3 {
    margin: 0;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 100px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Center align coach credentials on mobile */
    .coach-license {
        justify-content: center;
    }
    
    /* Center align about section content on mobile */
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        text-align: center;
    }
    
    .nav-container {
        padding: 12px 15px;
    }
    
    .nav-left {
        left: 15px;
    }
    
    .nav-right {
        right: 15px;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .tennis-ball {
        width: 40px;
        height: 40px;
    }
    
    .menu-text {
        font-size: 12px;
    }
    
    .off-canvas-menu {
        width: 100vw;
        max-width: 100vw;
    }
    
    .menu-content {
        padding: 2rem 1.5rem;
        padding-top: 5rem;
    }
    
    .menu-nav ul li a {
        font-size: 1.5rem;
        padding: 12px 0;
    }
    
    .menu-nav ul li {
        margin-bottom: 1.5rem;
    }
    
    .menu-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.25rem;
    }
    
    .language-switch {
        width: 80px;
        height: 28px;
    }
    
    .switch-slider {
        width: 36px;
        height: 24px;
        top: 2px;
        left: 2px;
    }
    
    .language-switch.active .switch-slider {
        transform: translateX(40px);
    }
    
    .switch-label {
        font-size: 10px;
    }
    
    .switch-text {
        font-size: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 250px;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
    }
    
    .mission-statement {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .statement-text {
        text-align: center;
    }
    
    .mission-image {
        order: -1;
        max-width: 100%;
    }
    
    .mission-image img {
        height: 250px;
        border-radius: 12px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .coach-hero {
        padding: 30px 20px;
    }

    .coach-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .coach-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .coach-name {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 8px;
    }

    .coach-role {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .coach-experience {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .experience-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-top: 12px;
    }

    .coach-bio {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .coach-specialties {
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .specialty-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .coach-stats-section {
        margin: 20px 0 0 0;
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .credentials-section {
        padding: 15px;
    }

    .credentials-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .credentials-list {
        justify-content: center;
        gap: 8px;
    }

    .credential {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .contact-coach {
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        min-height: 100px;
        padding: 1.2rem;
    }
    
    .contact-card:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .contact-card:nth-last-child(-n+2) {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .contact-card:last-child {
        border-bottom: none;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-info-header,
    .map-header {
        padding: 1.5rem;
    }
    
    .contact-info-header h3,
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        font-weight: 700;
        letter-spacing: -1px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }
    
    .program-card {
        padding: 1.5rem 1rem;
    }
    
    .coach-hero {
        padding: 25px 15px;
    }

    .coach-container {
        gap: 25px;
    }

    .coach-image {
        max-width: 200px;
    }

    .coach-name {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .coach-role {
        font-size: 1rem;
    }

    .coach-experience {
        font-size: 0.9rem;
    }

    .experience-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-top: 10px;
    }

    .coach-bio {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .coach-specialties {
        gap: 6px;
    }

    .specialty-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .coach-stats-section {
        padding: 20px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .credentials-section {
        padding: 12px;
    }

    .credentials-title {
        font-size: 1rem;
    }

    .credential {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .contact-coach {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Mission Section */
    .mission-points {
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mission-point {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
    }
    
    .point-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .point-icon i {
        font-size: 0.8rem;
    }
    
    .point-text {
        font-size: 0.9rem;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .mission-statement {
        padding: 0;
    }
    
    
    .statement-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    /* Mobile All Ages Section */
    .all-ages-section {
        padding: var(--section-padding);
    }

    .all-ages-section .section-header {
        margin-bottom: 2rem;
    }

    .cards-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        align-items: center;
        max-width: 100%;
    }

    .age-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
    }

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

    .card-duration {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .pricing-note {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .pricing-section h4 {
        font-size: 0.8rem;
    }

    .pricing-type {
        font-size: 0.8rem;
    }

    .pricing-amount {
        font-size: 0.85rem;
    }

    .card-cta {
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }

    .per-person {
        font-size: 0.65rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #2d4a32;
        --accent-color: #d67358;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #666666;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Back to Top Button Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.back-to-top.show {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .header,
    .off-canvas-menu,
    .hamburger,
    .cta-button,
    .program-btn,
    .submit-btn,
    .map-container,
    .back-to-top {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 1rem 0;
        break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Company Side Tag */
.company-side-tag {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.9;
    transition: all var(--transition-medium);
}

.company-side-tag:hover {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

.company-link {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    background: rgba(106, 126, 110, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(106, 126, 110, 0.6);
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 12px 6px;
    box-shadow: 0 4px 15px rgba(106, 126, 110, 0.2);
    transition: all var(--transition-medium);
    font-size: 12px;
    font-weight: 500;
}

.company-link:hover {
    background: rgba(106, 126, 110, 0.3);
    box-shadow: 0 6px 20px rgba(106, 126, 110, 0.3);
    transform: translateX(-5px);
    color: var(--text-primary);
}

.company-tag-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.company-text {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.company-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(0.2) opacity(0.9);
    transition: all var(--transition-medium);
    transform: rotate(90deg);
}

.company-link:hover .company-logo {
    filter: grayscale(0) opacity(1);
}

/* Responsive adjustments for company tag */
@media (max-width: 768px) {
    .company-side-tag {
        right: -2px;
        top: 60%;
    }
    
    .company-link {
        padding: 10px 4px;
        font-size: 10px;
    }
    
    .company-text {
        font-size: 8px;
    }
    
    .company-logo {
        width: 18px;
        height: 18px;
    }
    
    .company-tag-content {
        gap: 6px;
    }
}