/* ===== VARIABLES ===== */
:root {
    --green: #87A315;
    --green-dark: #5E7210;
    --green-light: #AACB25;
    --dark: #1A1A1A;
    --dark-2: #2C2C2C;
    --gray-light: #F5F5F5;
    --gray-mid: #E0E0E0;
    --white: #FFFFFF;
    --text: #333333;
    --red: #E74C3C;
    --red-dark: #c0392b;
    --nav-height: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-message {
    display: none;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    margin-left: 1.5rem;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-logo-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-logo-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 0rem;
    align-items: center;
}

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

.nav-links li:not(:last-child)::after {
    content: '|';
    color: rgba(255,255,255,0.25);
    margin: 0 0.2rem;
    font-weight: 300;
    font-size: 0.9rem;
    pointer-events: none;
}

.nav-links a {
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--green);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.hero-content {
    position: relative;
    max-width: 820px;
    padding: 2rem;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 span { color: var(--green); }

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    opacity: 0.88;
    line-height: 1.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #aaa;
    transform: none;
    box-shadow: none;
}
.btn-primary:hover:not(:disabled) {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 190, 46, 0.45);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

.hero-logo {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

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

.btn-hero {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 3.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-gray { background: var(--gray-light); }
.section-dark { background: var(--dark); color: var(--white); }

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

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

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
}

.section-title p {
    margin-top: 1rem;
    color: #666;
    font-size: 1rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-title p { color: #aaa; }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: calc(var(--nav-height) + 2.5rem) 2rem 2.5rem;
    background: linear-gradient(135deg, var(--dark) 0%, #222 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--green);
    opacity: 0.04;
    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .green { color: var(--green); }

.page-header p {
    color: #aaa;
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
}

/* ===== COURTS OVERVIEW (homepage) ===== */
.courts-overview {
    background: var(--white);
    padding: 4rem 0 3.5rem;
}

.courts-intro {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark);
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.courts-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6rem;
    margin-bottom: 3rem;
}

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

.court-svg-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
    margin-bottom: 1.5rem;
    line-height: 0;
}

.court-svg {
    display: block;
    width: 130px;
    height: auto;
}

.court-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.court-sub {
    font-size: 0.82rem;
    font-weight: 500;
}

.court-name {
    font-size: 1.35rem;
    font-weight: 700;
}

.court-green { color: #87A315; }
.court-blue  { color: #3A7FC1; }
.court-red   { color: #B03A2E; }

.courts-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #444;
}

.courts-description p + p { margin-top: 0.4rem; }

.courts-description a { color: var(--green); }

/* ===== INFO CARDS (homepage) ===== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.info-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.info-card-body {
    padding: 1.75rem;
}

.info-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.info-card-body p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.info-card-link:hover { gap: 0.7rem; }

/* ===== LE CLUB PAGE ===== */
.club-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.club-block:last-child { margin-bottom: 0; }

.club-block.reverse .club-block-img { order: 2; }
.club-block.reverse .club-block-text { order: 1; }

.club-block-img img {
    border-radius: 14px;
    width: 100%;
    height: 360px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.club-block-text h2 {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.club-block-text p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.check-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== LOCATION PAGE ===== */
.location-intro-imgs {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.location-intro-imgs img {
    border-radius: 12px;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.card-desc {
    min-height: 280px;
    margin-bottom: 1.5rem;
}

.location-card.padel { border-top: 4px solid var(--green); }
.location-card.tennis { border-top: 4px solid var(--red); }
.location-card.pickleball { border-top: 4px solid #4A8FC1; }

.location-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.sport-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sport-badge.padel { background: rgba(109,190,46,0.15); }
.sport-badge.tennis { background: rgba(231,76,60,0.15); }
.sport-badge.pickleball { background: rgba(74,143,193,0.15); }

.location-card-header h2 {
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.25;
}

.prix-section {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.prix-section-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 1rem;
}

.prix-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-mid);
}

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

.prix-label { font-size: 0.9rem; color: var(--text); }
.prix-label small { display: block; color: #999; font-size: 0.8rem; margin-top: 2px; }

.prix-value { font-weight: 700; font-size: 1.1rem; }
.padel .prix-value { color: var(--green); }
.tennis .prix-value { color: var(--green); }

.badge-discount {
    display: inline-block;
    background: rgba(109,190,46,0.15);
    color: var(--green-dark);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.tennis .badge-discount {
    background: rgba(231,76,60,0.12);
    color: var(--red-dark);
}

.cond-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 1rem;
}

.cond-list li {
    padding: 0.55rem 0 0.55rem 1.4rem;
    position: relative;
    border-bottom: 1px solid var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.55;
    color: #555;
}

.cond-list li:last-child { border-bottom: none; }

.cond-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.padel .cond-list li::before { color: var(--green); }
.tennis .cond-list li::before { color: var(--red); }
.pickleball .cond-list li::before { color: #4A8FC1; }
.pickleball .prix-value { color: #4A8FC1; }

.app-cta {
    margin-top: 2rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-cta p { color: var(--white); font-size: 0.9rem; }
.app-cta p strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }

#app-reservation {
    scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.store-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 0.75rem 1.4rem;
    color: #1A6AE8;
    text-decoration: none;
    transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
    line-height: 1.25;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    min-width: 155px;
}
.btn-store:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.btn-store small { display: block; font-size: 0.63rem; font-weight: 400; opacity: 0.75; color: #1A6AE8; }
.btn-store strong { display: block; font-size: 0.98rem; font-weight: 700; color: #1A6AE8; }

/* ===== MÉTHODE KERDUAL ===== */
.methode-section { background: var(--gray-light); padding-bottom: 4rem; }

.methode-header-bg {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.methode-title {
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #AACB25 0%, #87A315 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.methode-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.methode-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.93rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
}

.methode-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.methode-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 3px solid var(--green);
}

.methode-item-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-top: none;
    border-left: 4px solid var(--green);
    border-radius: 16px;
}
.methode-item-wide h3 { color: var(--white); }
.methode-item-wide .methode-item-sub { color: var(--green-light); }
.methode-item-wide p:last-child { color: rgba(255,255,255,0.72); }

.methode-item-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: rgba(135,163,21,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 1.1rem;
}
.methode-item-wide .methode-item-icon { margin-bottom: 0; }

.methode-item h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.methode-item-sub {
    font-size: 0.82rem;
    color: var(--green);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.methode-item p:last-child {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.75;
}

/* ===== STAGES PAGE ===== */
.stages-section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.stages-section-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}
.stages-section-sub {
    color: #999;
    font-size: 1rem;
}

.stage-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stage-pair {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stage-top-card {
    border: 1.5px solid var(--green);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    padding: 2rem;
    background: var(--white);
    text-align: center;
}

.stage-label {
    display: block;
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.stage-name {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #AACB25 0%, #87A315 55%, #5E7210 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stage-top-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

.stage-detail-card {
    border: 1.5px solid var(--green);
    border-top: 1px solid rgba(135,163,21,0.22);
    border-radius: 0 0 18px 18px;
    padding: 1.75rem 2rem 1.5rem;
    background: #fafafa;
    margin-bottom: 3.5rem;
}

.stage-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.stage-detail-item:last-child { margin-bottom: 0; }

.stage-icon-circle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}
.stage-euro-icon {
    font-size: 1.3rem;
    font-weight: 700;
}

.stage-detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.stage-detail-value {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
}

.stages-banner {
    background: linear-gradient(135deg, #AACB25 0%, #87A315 50%, #6A8F10 100%);
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    padding: 1.75rem 3rem;
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 3.5rem;
}

.st-green { color: var(--green); }

/* Dates section */
.dates-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dates-section-title h2 {
    font-size: 1.8rem;
    color: var(--dark);
}

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

.dates-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.dates-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-mid);
}

.dates-card-icon {
    font-size: 1.5rem;
}

.dates-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--gray-mid);
    font-size: 0.9rem;
    color: #555;
}

.date-item:last-child { border-bottom: none; }

.date-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-inscription-block {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-inscription-block h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-inscription-block p {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ===== INSCRIPTION PAGE ===== */
.inscription-container {
    max-width: 780px;
    margin: 0 auto;
}

.insc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: gap 0.2s;
}

.insc-back-link:hover { gap: 0.8rem; }

.form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.form-section-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-mid);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-mid);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
    background: var(--gray-light);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
}

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

.dates-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.date-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border: 1.5px solid var(--gray-mid);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--gray-light);
}

.date-checkbox:has(input:checked) {
    border-color: var(--green);
    background: rgba(109,190,46,0.08);
    color: var(--dark);
}

.date-checkbox input[type="checkbox"] {
    width: auto;
    accent-color: var(--green);
}

.period-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    margin: 1.5rem 0 0.75rem;
}

.period-label:first-of-type { margin-top: 0; }

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.4rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--dark);
}

.radio-option input[type="radio"] {
    width: auto;
    accent-color: var(--green);
}

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

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info .subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tel-icon {
    color: var(--green);
    font-style: normal;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(135,163,21,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-item-text h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.2rem;
}

.contact-item-text p, .contact-item-text a {
    font-size: 0.97rem;
    color: var(--dark);
    line-height: 1.5;
}

.contact-item-text a:hover { color: var(--green); }

.contact-form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.map-placeholder {
    margin-top: 3rem;
    border-radius: 14px;
    overflow: hidden;
    height: 350px;
    background: var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: #888;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.footer-brand p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: 1.25rem;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
    color: #666;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #555;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-intro-imgs { grid-template-columns: 1fr; }
    .location-intro-imgs img { height: 200px; }

    .club-block { grid-template-columns: 1fr; gap: 2rem; }
    .club-block.reverse .club-block-img { order: 0; }
    .club-block.reverse .club-block-text { order: 0; }
    .club-block-img img { height: 260px; }

    .stages-types-grid { grid-template-columns: 1fr; }
    .methode-title { font-size: 1.9rem; letter-spacing: 1px; }
    .methode-principles { grid-template-columns: 1fr; }
    .methode-item-wide { flex-direction: column; }
    .stages-section-title { font-size: 2.2rem; }
    .stage-cards-row { grid-template-columns: 1fr; }
    .stage-pair { margin-bottom: 1.5rem; }
    .stages-banner { border-radius: 20px; padding: 1.5rem 1.5rem; font-size: 0.88rem; }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.75rem 1rem; border-radius: 8px; }
    .nav-toggle { display: flex; }

    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-strip-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .section { padding: 3rem 1rem; }
    .features-strip-inner { grid-template-columns: 1fr; }
    .page-header { padding: calc(var(--nav-height) + 2.5rem) 1rem 2.5rem; }
    .form-card, .contact-form-card { padding: 1.5rem; }
}
