/* ============================================
   LA MEUTE - Styles Principaux
   Design: Desert Warrior / Ultra-Marathon
   ============================================ */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Couleurs Désert */
    --color-sand-light: #F5E6D3;
    --color-sand: #E8D5B7;
    --color-sand-dark: #C4A574;
    --color-ochre: #D97706;
    --color-ochre-dark: #92400E;
    --color-burnt: #78350F;
    --color-terracotta: #C2410C;
    
    /* Couleurs Neutres */
    --color-black: #0C0A09;
    --color-charcoal: #1C1917;
    --color-stone: #292524;
    --color-gray: #57534E;
    --color-white: #FFFBF5;
    
    /* Couleurs d'accent */
    --color-gold: #F59E0B;
    --color-amber: #FBBF24;
    
    /* Gradients */
    --gradient-desert: linear-gradient(135deg, #92400E 0%, #D97706 50%, #F59E0B 100%);
    --gradient-sunset: linear-gradient(180deg, #78350F 0%, #C2410C 50%, #F59E0B 100%);
    --gradient-sand: linear-gradient(180deg, #F5E6D3 0%, #E8D5B7 100%);
    --gradient-dark: linear-gradient(180deg, #0C0A09 0%, #1C1917 100%);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(217, 119, 6, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
    --z-loader: 500;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-ochre);
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.1), transparent);
    padding: var(--space-xs) var(--space-md);
    border-left: 3px solid var(--color-ochre);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 500;
}

.section-description {
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-ochre-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-full);
    animation: loader-progress 1.5s ease infinite;
}

@keyframes loader-progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-lg);
}

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

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

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

.logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.navbar.scrolled .logo-image {
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-xs) 0;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-ochre);
    transition: var(--transition-base);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(12, 10, 9, 0.4) 0%,
        rgba(12, 10, 9, 0.6) 50%,
        rgba(12, 10, 9, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-xl);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 12vw, 8rem);
    color: var(--color-white);
    letter-spacing: 0.15em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--color-ochre);
    letter-spacing: 0.3em;
    margin-top: var(--space-sm);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--color-sand);
    font-weight: 300;
    margin-bottom: var(--space-2xl);
}

.hero-subtitle strong {
    color: var(--color-white);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-desert);
    color: var(--color-white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(217, 119, 6, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    background: var(--color-charcoal);
    padding: var(--space-2xl) 0;
}

#countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-ochre);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--color-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.countdown-event {
    width: 100%;
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.countdown-event-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.countdown-event-date {
    font-size: 0.875rem;
    color: var(--color-sand);
    margin-top: var(--space-xs);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gradient-sand);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D97706' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-ochre);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-stone);
    margin-bottom: var(--space-2xl);
}

.about-bio strong {
    color: var(--color-ochre-dark);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-ochre);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-charcoal);
}

.social-link span {
    font-size: 0.875rem;
    font-weight: 600;
}

.follower-count {
    background: var(--color-ochre);
    color: var(--color-white);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    background: var(--color-white);
    position: relative;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

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

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.event-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.event-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-ochre);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card-content {
    padding: var(--space-xl);
}

.event-card-date {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-ochre);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.event-card-title {
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.event-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: var(--space-md);
}

.event-card-description {
    font-size: 0.9rem;
    color: var(--color-stone);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.event-participants {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.event-participants strong {
    color: var(--color-ochre);
}

/* ============================================
   COACHING SECTION
   ============================================ */
.coaching-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.coaching-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23D97706' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.coaching-section .section-tag {
    color: var(--color-ochre);
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.2), transparent);
}

.coaching-section .section-title {
    color: var(--color-white);
}

.coaching-section .section-description {
    color: var(--color-sand);
}

/* Coaching Grid - Desktop */
.coaching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.coaching-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.coaching-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-ochre);
    transform: translateY(-4px);
}

.coaching-card.highlighted {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.05));
    border-color: var(--color-ochre);
    transform: scale(1.02);
}

.coaching-card.highlighted::before {
    content: 'POPULAIRE';
    position: absolute;
    top: 0;
    right: var(--space-xl);
    background: var(--color-ochre);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.coaching-card-header {
    text-align: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-xl);
}

.coaching-card-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.coaching-card-price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-ochre);
    line-height: 1;
}

.coaching-card-duration {
    font-size: 0.875rem;
    color: var(--color-sand);
    margin-top: var(--space-xs);
}

.coaching-card-description {
    font-size: 0.9rem;
    color: var(--color-sand);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.coaching-card-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.coaching-card-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-sand);
    padding: var(--space-sm) 0;
}

.coaching-card-features li::before {
    content: '✓';
    color: var(--color-ochre);
    font-weight: bold;
    flex-shrink: 0;
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--color-white);
    position: relative;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-lg));
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--color-ochre);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-charcoal);
    font-size: 1rem;
}

.testimonial-event {
    font-size: 0.8rem;
    color: var(--color-ochre);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.testimonial-rating {
    color: var(--color-gold);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-stone);
    line-height: 1.8;
    position: relative;
    flex: 1;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-ochre);
    opacity: 0.15;
    position: absolute;
    top: -15px;
    left: -10px;
    line-height: 1;
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
    background: var(--gradient-sand);
    text-align: center;
}

.app-downloads {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    min-width: 200px;
}

.app-download-btn:hover {
    background: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-download-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.app-download-text {
    text-align: left;
}

.app-download-label {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.app-download-store {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-ochre);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-icon::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-ochre);
}

.faq-item.active .faq-icon::before {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: var(--space-xl);
    font-size: 0.95rem;
    color: var(--color-stone);
    line-height: 1.8;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--color-charcoal);
}

.gallery-section .section-tag {
    color: var(--color-ochre);
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.2), transparent);
}

.gallery-section .section-title {
    color: var(--color-white);
}

.gallery-section .section-description {
    color: var(--color-sand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

.gallery-item-category {
    font-size: 0.75rem;
    color: var(--color-ochre);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    background: var(--color-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-card-content {
    padding: var(--space-xl);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: var(--space-sm);
}

.blog-card-category {
    color: var(--color-ochre);
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.25rem;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-stone);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--gradient-sand);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info {
    padding-right: var(--space-2xl);
}

.contact-description {
    font-size: 1rem;
    color: var(--color-stone);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-ochre);
}

.contact-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-weight: 600;
    color: var(--color-charcoal);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-ochre);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

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

.footer-logo .logo-image {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-sand);
    font-style: italic;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: var(--color-ochre);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

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

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    animation: modal-appear 0.3s ease;
}

.modal-large {
    max-width: 800px;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--color-charcoal);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.lightbox-close {
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    font-size: 2rem;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-ochre);
}

.lightbox-caption {
    text-align: center;
    color: var(--color-white);
    padding: var(--space-md);
    font-size: 0.9rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--color-ochre);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-ochre-dark);
    transform: translateY(-3px);
}

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

/* ============================================
   SKELETON LOADERS
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 350px;
}

.skeleton-text {
    height: 20px;
    margin-bottom: var(--space-sm);
}

.skeleton-text.short {
    width: 60%;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}
