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

:root {
    /* Gearless Moe - Noir & Rouge Neon Urbain */
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-yellow: #ff2d2d;
    --accent-orange: #ff4444;
    --accent-blue: #C41E3A;
    --accent-red: #FF1744;
    --accent-bordeaux: #8B0000;
    --text-primary: #f5f5f5;
    --text-secondary: #aaaaaa;
    --border-color: #ff2d2d;

    /* Fonts */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* ===========================
   SCANLINES & GRAIN EFFECTS
   =========================== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
}

/* ===========================
   GLITCH EFFECTS
   =========================== */
.glitch {
    position: relative;
    font-family: var(--font-primary);
    font-weight: 700;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch-anim 2.5s infinite;
    color: var(--accent-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-anim 3s infinite reverse;
    color: #5C0000;
    z-index: -2;
}

@keyframes glitch-anim {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.glitch-large::before,
.glitch-large::after {
    animation-duration: 3s;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    padding: 0.5rem 1.5rem;
    color: var(--accent-yellow) !important;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--accent-yellow);
    color: var(--primary-bg) !important;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(165, 42, 42, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(139, 0, 0, 0.03) 2px,
        rgba(139, 0, 0, 0.03) 4px
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
}

.hero-title-container {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--accent-yellow);
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow:
        0 0 5px #ff2d2d,
        0 0 10px #ff2d2d,
        0 0 20px #8B0000,
        0 0 40px #8B0000;
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.separator {
    color: var(--accent-yellow);
    font-weight: 900;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-yellow);
    font-weight: 700;
    text-shadow: 0 0 5px #ff2d2d, 0 0 15px #8B0000;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-submit {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-yellow);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.glitch-btn {
    box-shadow:
        0 0 10px rgba(139, 0, 0, 0.3),
        inset 0 0 20px rgba(139, 0, 0, 0.1);
}

.btn-primary:hover,
.btn-submit:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow:
        0 0 20px rgba(255, 45, 45, 0.6),
        0 0 40px rgba(139, 0, 0, 0.4);
}

.btn-primary span,
.btn-submit span {
    position: relative;
    z-index: 2;
}

/* ===========================
   STATS
   =========================== */
.stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px solid var(--accent-yellow);
    background: rgba(139, 0, 0, 0.05);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    font-family: var(--font-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: var(--accent-yellow);
}

/* ===========================
   SECTIONS
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.section-number {
    display: block;
    font-size: 1rem;
    color: var(--accent-yellow);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--accent-yellow);
    text-shadow: 0 0 5px #ff2d2d, 0 0 15px #8B0000;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    background: var(--secondary-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
}

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

.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border: 3px solid var(--accent-yellow);
    padding: 1rem;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    background: rgba(139, 0, 0, 0.05);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: contrast(1.1) saturate(1.2);
    transition: all 0.5s ease;
}

.image-frame:hover .coach-photo {
    filter: contrast(1.2) saturate(1.3) brightness(1.1);
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.fighter-silhouette {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    font-family: var(--font-primary);
    text-align: center;
    line-height: 1.2;
    text-shadow:
        0 0 20px rgba(139, 0, 0, 0.8),
        0 0 40px rgba(139, 0, 0, 0.5);
}

.rank-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--accent-yellow);
    color: var(--primary-bg);
    padding: 1rem 2rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rank-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.rank-value {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
}

.about-text {
    padding: 2rem 0;
}

.about-name {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 5px #ff2d2d, 0 0 15px #8B0000;
}

.about-specs {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-left: 4px solid var(--accent-yellow);
}

.spec-line {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.spec-line:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.spec-value {
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-description p {
    margin-bottom: 1.5rem;
}

/* ===========================
   DISCIPLINES / SERVICES SECTION
   =========================== */
.disciplines {
    background: var(--primary-bg);
    overflow: hidden;
}

.services {
    background: var(--primary-bg);
}

.public-info {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 45, 45, 0.3);
    background: rgba(139, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .formules-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--secondary-bg);
    border: 2px solid rgba(139, 0, 0, 0.3);
    padding: 2rem;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(255, 45, 45, 0.4), 0 10px 40px rgba(139, 0, 0, 0.3);
}

.service-card.featured {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, var(--secondary-bg) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--primary-bg);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--accent-yellow);
    opacity: 0.3;
}

.card-icon {
    font-size: 3rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.card-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-weight: 600;
}

.feature-icon {
    color: var(--accent-yellow);
    font-weight: 900;
}

.card-footer {
    padding-top: 1rem;
    border-top: 2px solid rgba(139, 0, 0, 0.2);
}

.intensity {
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* ===========================
   BOOKING SECTION
   =========================== */
.booking {
    background: var(--secondary-bg);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-subtitle {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-primary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 5px #ff2d2d, 0 0 10px #8B0000;
}

.booking-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.booking-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-yellow);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.booking-form-container {
    position: relative;
}

.booking-form {
    background: rgba(139, 0, 0, 0.05);
    border: 2px solid var(--accent-yellow);
    padding: 2rem;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(139, 0, 0, 0.3);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

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

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-success {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--accent-blue);
    padding: 3rem 2rem;
    text-align: center;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    color: var(--primary-bg);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    font-weight: 900;
}

.form-success h3 {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--accent-blue);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-bg);
    border-top: 2px solid var(--accent-yellow);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 900;
    font-family: var(--font-primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===========================
   NAV BRAND & LOGO
   =========================== */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* ===========================
   MOBILE MENU TOGGLE
   =========================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

/* ===========================
   HERO BUTTONS
   =========================== */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF !important;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
}

.whatsapp-icon {
    vertical-align: middle;
    flex-shrink: 0;
}

.btn-primary {
    color: #FFFFFF;
}

/* ===========================
   FORMULES SECTION
   =========================== */
.formules {
    background: var(--primary-bg);
    position: relative;
}

.formules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.formules-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.formule-card {
    background: var(--secondary-bg);
    border: 2px solid rgba(139, 0, 0, 0.3);
    padding: 2.5rem;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.formule-card:nth-child(2) {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, var(--secondary-bg) 100%);
    box-shadow: 0 0 10px rgba(255, 45, 45, 0.2);
}

.formule-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 45, 45, 0.4), 0 10px 40px rgba(139, 0, 0, 0.3);
}

.formule-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-yellow);
    color: #FFFFFF;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

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

.formule-title {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.formule-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--accent-yellow);
    line-height: 1;
    text-shadow: 0 0 5px #ff2d2d, 0 0 15px #8B0000;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.formule-details {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.formule-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.05rem;
}

.formule-contact {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 0, 0, 0.2);
    text-align: center;
}

.btn-formule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-formule:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.formule-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
}

.contact-icon {
    color: var(--accent-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-yellow);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-cta-buttons .btn-primary {
    text-align: center;
    display: flex;
    justify-content: center;
}

.contact-social-section {
    padding: 2rem;
    background: rgba(139, 0, 0, 0.05);
    border: 2px solid rgba(139, 0, 0, 0.2);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.social-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: var(--accent-yellow);
    transform: translateX(5px);
    background: rgba(139, 0, 0, 0.1);
}

.social-card svg {
    color: var(--accent-yellow);
    flex-shrink: 0;
}

/* ===========================
   SUBTLE BACKGROUND IMAGE
   =========================== */
.hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.85)),
        url('images/Megalobox1.jpeg') center/cover no-repeat;
}

/* Megalobox backgrounds (add images: Megalobox1.jpeg, Megalobox2.jpeg, megalobox3.jpeg) */
.disciplines {
    position: relative;
}
.disciplines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/Megalobox1.jpeg') center/cover no-repeat;
    opacity: 0.07;
    filter: grayscale(50%);
    z-index: 0;
    pointer-events: none;
}
.disciplines > .container { position: relative; z-index: 1; }

.formules {
    position: relative;
}
.formules::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/Megalobox2.jpeg') center/cover no-repeat;
    opacity: 0.07;
    filter: grayscale(50%);
    z-index: 0;
    pointer-events: none;
}
.formules > .container { position: relative; z-index: 1; }

.booking {
    position: relative;
}
.booking::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/megalobox3.jpeg') center/cover no-repeat;
    opacity: 0.07;
    filter: grayscale(50%);
    z-index: 0;
    pointer-events: none;
}
.booking > .container { position: relative; z-index: 1; }

/* Footer watermark */
.footer {
    position: relative;
    overflow: hidden;
}
.footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 300px;
    height: 400px;
    background: url('images/coach.png') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
.footer > .container { position: relative; z-index: 1; }

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .about-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .formules-grid,
    .formules-grid-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

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

    .nav-menu a {
        font-size: 1.3rem;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        flex-direction: column;
    }

    .stat-divider {
        width: 60px;
        height: 2px;
    }

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

    .about-specs {
        font-size: 0.9rem;
    }

    .contact-cta-buttons {
        align-items: stretch;
    }

    .contact-cta-buttons .btn-primary {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }

    .booking-subtitle {
        font-size: 1.5rem;
    }

    .formule-card {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .nav-logo {
        height: 35px;
    }

    .logo {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .btn-primary,
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .formule-title {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .social-card {
        padding: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}
