/*
Theme Name: Athletic Club Médiouna
Theme URI: https://athletic-club-mediouna.com
Author: Athletic Club Médiouna
Author URI: https://athletic-club-mediouna.com
Description: Thème WordPress officiel pour Athletic Club Médiouna - Centre éducatif et ludique au cœur de la nature. Idéal pour les écoles, entreprises et familles. Comprend une intégration complète avec le système de réservation.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: athletic-club-theme
Tags: education, entertainment, team-building, nature, responsive, custom-logo, custom-menu, threaded-comments, translation-ready

Learn through experience, grow in contact with nature.
*/

/* ============================================
   CSS VARIABLES - Nature Inspired Colors
   ============================================ */
:root {
    /* Primary Colors - Forest Green */
    --ac-primary: #2d5016;
    --ac-primary-light: #4a9f23;
    --ac-primary-dark: #1a3009;

    /* Secondary Colors - Earth Tones */
    --ac-secondary: #8B4513;
    --ac-secondary-light: #D2691E;

    /* Accent Colors */
    --ac-accent: #f6c23e;
    --ac-accent-light: #ffd666;

    /* Neutral Colors */
    --ac-white: #ffffff;
    --ac-off-white: #f8f9fa;
    --ac-light-gray: #e9ecef;
    --ac-gray: #6c757d;
    --ac-dark-gray: #343a40;
    --ac-black: #212529;

    /* Status Colors */
    --ac-success: #20c997;
    --ac-info: #4e9bd9;
    --ac-warning: #f6c23e;
    --ac-danger: #e74a3b;

    /* Typography */
    --ac-font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ac-font-heading: 'Playfair Display', Georgia, serif;

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

    /* Transitions */
    --ac-transition-fast: 0.2s ease;
    --ac-transition-normal: 0.3s ease;
    --ac-transition-slow: 0.5s ease;

    /* Shadows */
    --ac-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --ac-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --ac-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --ac-shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --ac-radius-sm: 8px;
    --ac-radius-md: 12px;
    --ac-radius-lg: 20px;
    --ac-radius-full: 50%;
}

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

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

body {
    font-family: var(--ac-font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ac-dark-gray);
    background-color: var(--ac-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ac-off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--ac-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ac-primary-dark);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ac-font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ac-primary-dark);
    margin-bottom: var(--ac-spacing-sm);
}

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

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

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

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

p {
    margin-bottom: var(--ac-spacing-sm);
}

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

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.ac-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--ac-spacing-md);
}

.ac-section {
    padding: var(--ac-spacing-xl) 0;
}

.ac-section-alt {
    background-color: var(--ac-off-white);
}

.ac-text-center {
    text-align: center;
}

.ac-mb-0 {
    margin-bottom: 0;
}

.ac-mb-sm {
    margin-bottom: var(--ac-spacing-sm);
}

.ac-mb-md {
    margin-bottom: var(--ac-spacing-md);
}

.ac-mb-lg {
    margin-bottom: var(--ac-spacing-lg);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.ac-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--ac-shadow-sm);
    transition: all var(--ac-transition-normal);
}

.ac-header.scrolled {
    background: var(--ac-white);
    box-shadow: var(--ac-shadow-md);
}

.ac-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ac-spacing-sm) 0;
}

.ac-logo {
    display: flex;
    align-items: center;
    gap: var(--ac-spacing-sm);
}

.ac-logo img {
    height: 50px;
    width: auto;
}

.ac-logo-text {
    font-family: var(--ac-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ac-primary-dark);
    line-height: 1.2;
}

.ac-logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--ac-gray);
    font-family: var(--ac-font-primary);
}

/* Navigation */
.ac-nav {
    display: flex;
    align-items: center;
    gap: var(--ac-spacing-md);
}

.ac-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--ac-spacing-md);
}

.ac-nav-menu li {
    position: relative;
}

.ac-nav-menu a {
    display: block;
    padding: var(--ac-spacing-xs) var(--ac-spacing-sm);
    font-weight: 500;
    color: var(--ac-dark-gray);
    border-radius: var(--ac-radius-sm);
    transition: all var(--ac-transition-fast);
}

.ac-nav-menu a:hover,
.ac-nav-menu a.active {
    color: var(--ac-primary);
    background: rgba(74, 159, 35, 0.1);
}

/* Dropdown */
.ac-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--ac-white);
    border-radius: var(--ac-radius-md);
    box-shadow: var(--ac-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ac-transition-normal);
    z-index: 100;
}

.ac-nav-menu li:hover > .ac-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ac-dropdown li {
    border-bottom: 1px solid var(--ac-light-gray);
}

.ac-dropdown li:last-child {
    border-bottom: none;
}

.ac-dropdown a {
    padding: var(--ac-spacing-sm) var(--ac-spacing-md);
    border-radius: 0;
}

/* Mobile Menu Toggle */
.ac-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ac-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--ac-primary);
    border-radius: 2px;
    transition: all var(--ac-transition-fast);
}

.ac-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ac-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ac-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.ac-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(26, 48, 9, 0.95) 100%),
                url('assets/images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.ac-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 50px;
    opacity: 0.5;
}

.ac-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--ac-white);
    max-width: 900px;
    padding: var(--ac-spacing-lg);
}

.ac-hero-badge {
    display: inline-block;
    padding: var(--ac-spacing-xs) var(--ac-spacing-md);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--ac-spacing-md);
    backdrop-filter: blur(5px);
}

.ac-hero h1 {
    color: var(--ac-white);
    margin-bottom: var(--ac-spacing-md);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.ac-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.95;
    margin-bottom: var(--ac-spacing-lg);
    line-height: 1.6;
}

.ac-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-spacing-sm);
    justify-content: center;
}

/* Hero Stats */
.ac-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ac-spacing-md);
    margin-top: var(--ac-spacing-xl);
    padding-top: var(--ac-spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ac-hero-stat {
    text-align: center;
}

.ac-hero-stat-number {
    font-family: var(--ac-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    display: block;
}

.ac-hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.ac-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ac-white);
    animation: bounce 2s infinite;
}

.ac-scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ac-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--ac-radius-sm);
    cursor: pointer;
    transition: all var(--ac-transition-normal);
    text-decoration: none;
}

.ac-btn-primary {
    background: linear-gradient(135deg, var(--ac-primary-light) 0%, var(--ac-primary) 100%);
    color: var(--ac-white);
    box-shadow: 0 4px 15px rgba(74, 159, 35, 0.4);
}

.ac-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 159, 35, 0.5);
    color: var(--ac-white);
}

.ac-btn-secondary {
    background: var(--ac-white);
    color: var(--ac-primary);
    border: 2px solid var(--ac-primary);
}

.ac-btn-secondary:hover {
    background: var(--ac-primary);
    color: var(--ac-white);
    transform: translateY(-3px);
}

.ac-btn-accent {
    background: var(--ac-accent);
    color: var(--ac-dark-gray);
}

.ac-btn-accent:hover {
    background: var(--ac-accent-light);
    transform: translateY(-3px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.ac-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--ac-spacing-lg);
}

.ac-section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74, 159, 35, 0.1);
    color: var(--ac-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--ac-spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ac-section-header h2 {
    margin-bottom: var(--ac-spacing-sm);
}

.ac-section-header p {
    color: var(--ac-gray);
    font-size: 1.125rem;
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.ac-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--ac-spacing-md);
}

.ac-activity-card {
    position: relative;
    background: var(--ac-white);
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow-md);
    transition: all var(--ac-transition-normal);
}

.ac-activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ac-shadow-xl);
}

.ac-activity-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--ac-primary);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-white);
    font-size: 1.5rem;
    z-index: 2;
}

.ac-activity-image {
    height: 200px;
    background: linear-gradient(135deg, var(--ac-primary-light) 0%, var(--ac-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-white);
    font-size: 4rem;
}

.ac-activity-content {
    padding: var(--ac-spacing-md);
}

.ac-activity-age {
    display: inline-block;
    padding: 4px 12px;
    background: var(--ac-accent);
    color: var(--ac-dark-gray);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--ac-spacing-sm);
}

.ac-activity-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--ac-spacing-xs);
}

.ac-activity-content p {
    color: var(--ac-gray);
    font-size: 0.9375rem;
    margin-bottom: var(--ac-spacing-sm);
}

.ac-activity-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ac-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

/* ============================================
   TEAM BUILDING SECTION
   ============================================ */
.ac-team-building {
    background: linear-gradient(135deg, var(--ac-primary-dark) 0%, var(--ac-primary) 100%);
    color: var(--ac-white);
    position: relative;
    overflow: hidden;
}

.ac-team-building::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.svg');
    opacity: 0.05;
}

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

.ac-team-building .ac-section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--ac-white);
}

.ac-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ac-spacing-md);
    position: relative;
    z-index: 1;
}

.ac-team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--ac-radius-lg);
    padding: var(--ac-spacing-md);
    text-align: center;
    transition: all var(--ac-transition-normal);
}

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

.ac-team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--ac-spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.ac-team-card h3 {
    color: var(--ac-white);
    margin-bottom: var(--ac-spacing-xs);
}

.ac-team-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

/* Benefits List */
.ac-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ac-spacing-md);
    margin-top: var(--ac-spacing-lg);
}

.ac-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--ac-spacing-sm);
    padding: var(--ac-spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--ac-radius-md);
}

.ac-benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--ac-accent);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-dark-gray);
    font-size: 1.25rem;
}

.ac-benefit-content h4 {
    color: var(--ac-white);
    margin-bottom: 5px;
}

.ac-benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   VISION & VALUES SECTION
   ============================================ */
.ac-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ac-spacing-xl);
    align-items: center;
}

.ac-vision-content {
    padding-right: var(--ac-spacing-lg);
}

.ac-vision-quote {
    position: relative;
    padding: var(--ac-spacing-md);
    background: var(--ac-off-white);
    border-left: 4px solid var(--ac-primary);
    border-radius: 0 var(--ac-radius-md) var(--ac-radius-md) 0;
    margin: var(--ac-spacing-md) 0;
}

.ac-vision-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--ac-font-heading);
    font-size: 6rem;
    color: var(--ac-primary);
    opacity: 0.1;
    line-height: 1;
}

.ac-vision-quote p {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--ac-dark-gray);
    margin-bottom: 0;
}

.ac-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ac-spacing-md);
}

.ac-value-card {
    padding: var(--ac-spacing-md);
    background: var(--ac-white);
    border-radius: var(--ac-radius-md);
    box-shadow: var(--ac-shadow-sm);
    text-align: center;
    transition: all var(--ac-transition-normal);
}

.ac-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ac-shadow-md);
}

.ac-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--ac-spacing-sm);
    background: linear-gradient(135deg, var(--ac-primary-light) 0%, var(--ac-primary) 100%);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-white);
    font-size: 1.5rem;
}

.ac-value-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.ac-value-card p {
    color: var(--ac-gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.ac-stats {
    background: var(--ac-off-white);
}

.ac-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ac-spacing-md);
}

.ac-stat-card {
    text-align: center;
    padding: var(--ac-spacing-lg);
    background: var(--ac-white);
    border-radius: var(--ac-radius-lg);
    box-shadow: var(--ac-shadow-sm);
    transition: all var(--ac-transition-normal);
}

.ac-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ac-shadow-md);
}

.ac-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--ac-spacing-sm);
    background: linear-gradient(135deg, rgba(74, 159, 35, 0.1) 0%, rgba(74, 159, 35, 0.2) 100%);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-primary);
    font-size: 2rem;
}

.ac-stat-number {
    font-family: var(--ac-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ac-primary);
    line-height: 1;
    margin-bottom: 5px;
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.ac-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--ac-spacing-md);
}

.ac-testimonial-card {
    position: relative;
    background: var(--ac-white);
    border-radius: var(--ac-radius-lg);
    padding: var(--ac-spacing-lg);
    box-shadow: var(--ac-shadow-md);
    transition: all var(--ac-transition-normal);
}

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

.ac-testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--ac-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.ac-testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ac-dark-gray);
    margin-bottom: var(--ac-spacing-md);
    position: relative;
    z-index: 1;
}

.ac-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--ac-spacing-sm);
}

.ac-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ac-primary-light) 0%, var(--ac-primary) 100%);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.ac-testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--ac-dark-gray);
}

.ac-testimonial-info p {
    font-size: 0.875rem;
    color: var(--ac-gray);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ac-cta {
    background: linear-gradient(135deg, var(--ac-accent) 0%, var(--ac-accent-light) 100%);
    text-align: center;
    padding: var(--ac-spacing-xl) 0;
}

.ac-cta h2 {
    margin-bottom: var(--ac-spacing-sm);
}

.ac-cta p {
    font-size: 1.125rem;
    color: var(--ac-dark-gray);
    margin-bottom: var(--ac-spacing-md);
}

.ac-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ac-spacing-sm);
    justify-content: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.ac-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ac-spacing-xl);
}

.ac-contact-info {
    padding-right: var(--ac-spacing-lg);
}

.ac-contact-item {
    display: flex;
    gap: var(--ac-spacing-sm);
    margin-bottom: var(--ac-spacing-md);
}

.ac-contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ac-primary-light) 0%, var(--ac-primary) 100%);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-white);
    font-size: 1.25rem;
}

.ac-contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.ac-contact-item p {
    color: var(--ac-gray);
    margin-bottom: 0;
}

.ac-contact-item a {
    color: var(--ac-primary);
}

.ac-contact-form {
    background: var(--ac-off-white);
    padding: var(--ac-spacing-lg);
    border-radius: var(--ac-radius-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.ac-footer {
    background: var(--ac-primary-dark);
    color: var(--ac-white);
    padding-top: var(--ac-spacing-xl);
}

.ac-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--ac-spacing-lg);
    padding-bottom: var(--ac-spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ac-footer-brand {
    max-width: 300px;
}

.ac-footer-logo {
    display: flex;
    align-items: center;
    gap: var(--ac-spacing-sm);
    margin-bottom: var(--ac-spacing-md);
}

.ac-footer-logo img {
    height: 50px;
}

.ac-footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.ac-footer h4 {
    color: var(--ac-white);
    font-size: 1.125rem;
    margin-bottom: var(--ac-spacing-md);
}

.ac-footer-links {
    list-style: none;
}

.ac-footer-links li {
    margin-bottom: var(--ac-spacing-xs);
}

.ac-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--ac-transition-fast);
}

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

.ac-footer-social {
    display: flex;
    gap: var(--ac-spacing-sm);
    margin-top: var(--ac-spacing-md);
}

.ac-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ac-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-white);
    transition: all var(--ac-transition-fast);
}

.ac-footer-social a:hover {
    background: var(--ac-accent);
    color: var(--ac-dark-gray);
    transform: translateY(-3px);
}

.ac-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ac-spacing-md) 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.ac-footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.ac-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.ac-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ac-fade-in.ac-visible {
    opacity: 1;
}

.ac-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-slide-left.ac-visible {
    opacity: 1;
    transform: translateX(0);
}

.ac-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-slide-right.ac-visible {
    opacity: 1;
    transform: translateX(0);
}

.ac-scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-scale-up.ac-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.ac-delay-100 { transition-delay: 100ms; }
.ac-delay-200 { transition-delay: 200ms; }
.ac-delay-300 { transition-delay: 300ms; }
.ac-delay-400 { transition-delay: 400ms; }
.ac-delay-500 { transition-delay: 500ms; }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .ac-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ac-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ac-white);
        flex-direction: column;
        padding: var(--ac-spacing-md);
        box-shadow: var(--ac-shadow-lg);
        border-radius: 0 0 var(--ac-radius-md) var(--ac-radius-md);
    }

    .ac-nav-menu.active {
        display: flex;
    }

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

    .ac-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ac-vision-grid {
        grid-template-columns: 1fr;
    }

    .ac-vision-content {
        padding-right: 0;
        order: 2;
    }

    .ac-values-grid {
        order: 1;
    }

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

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

@media (max-width: 768px) {
    .ac-section {
        padding: var(--ac-spacing-lg) 0;
    }

    .ac-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .ac-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--ac-spacing-sm);
    }

    .ac-activities-grid {
        grid-template-columns: 1fr;
    }

    .ac-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--ac-spacing-md);
    }

    .ac-footer-bottom {
        flex-direction: column;
        gap: var(--ac-spacing-sm);
        text-align: center;
    }

    .ac-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ac-btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    :root {
        --ac-spacing-xl: 4rem;
        --ac-spacing-lg: 3rem;
    }

    .ac-hero-stats {
        grid-template-columns: 1fr;
    }

    .ac-stats-grid {
        grid-template-columns: 1fr;
    }

    .ac-values-grid {
        grid-template-columns: 1fr;
    }

    .ac-hero-buttons {
        flex-direction: column;
    }

    .ac-hero-buttons .ac-btn {
        width: 100%;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .ac-header,
    .ac-scroll-indicator,
    .ac-footer-social,
    .ac-btn {
        display: none !important;
    }

    .ac-hero {
        min-height: auto;
        padding: 2rem 0;
        background: var(--ac-primary) !important;
        color: white !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }

    a {
        text-decoration: underline;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .ac-fade-up,
    .ac-fade-in,
    .ac-slide-left,
    .ac-slide-right,
    .ac-scale-up {
        opacity: 1;
        transform: none;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--ac-primary);
    outline-offset: 2px;
}

/* Skip Link */
.ac-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ac-primary);
    color: var(--ac-white);
    padding: var(--ac-spacing-sm) var(--ac-spacing-md);
    border-radius: var(--ac-radius-sm);
    z-index: 9999;
    transition: top var(--ac-transition-fast);
}

.ac-skip-link:focus {
    top: 10px;
}
