/* VeloVal — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Brand Colors - Green & Grey */
    --primary-green: #4CAF50;
    --primary-green-dark: #388E3C;
    --primary-green-light: #81C784;
    --grey-dark: #2d2d2d;
    --grey-medium: #5a5a5a;
    --grey-light: #8a8a8a;
    --grey-lighter: #e0e0e0;
    --white: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-section: #f5f5f5;

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --gap-sm: 20px;
    --gap-md: 30px;
    --gap-lg: 60px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-round: 50px;
    --radius-circle: 50%;

    /* Box Shadows */
    --shadow-sm: 0 5px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 10px 30px rgba(76, 175, 80, 0.3);

    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    --gradient-green-button: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    --gradient-dark: linear-gradient(135deg, var(--grey-dark), var(--bg-dark));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--grey-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

a:hover {
    color: var(--primary-green-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-round);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

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

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

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

.btn-white:hover {
    background: var(--grey-lighter);
    color: var(--primary-green-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container,
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .container {
    justify-content: space-between;
}

.navbar-brand img {
    height: 75px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar.scrolled .navbar-menu a {
    color: var(--grey-dark);
}

.navbar-menu a:hover {
    color: var(--primary-green);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-medium);
}

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

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.navbar.scrolled .navbar-toggle span {
    background: var(--grey-dark);
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-section);
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    color: var(--grey-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.card-content p {
    color: var(--grey-medium);
    font-size: 0.95rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--gap-md);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--grey-lighter);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 85px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--grey-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--grey-light);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact p {
    color: var(--grey-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-green);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--grey-light);
}

.footer-bottom,
.footer-contact p {
    display: flex;
    align-items: center;
}

.footer-bottom {
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--grey-light);
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Desktop Large - 1200px */
@media (max-width: 1200px) {
    .wheel-container { width: 550px; height: 550px; right: -280px; }
    .glow { width: 450px; height: 450px; right: -220px; }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet - 992px */
@media (max-width: 992px) {
    .services-preview { grid-template-columns: repeat(2, 1fr); }
    .wheel-container { width: 450px; height: 450px; right: -220px; }
    .hero-content { padding-left: 40px; max-width: 500px; }
    .about-hero { grid-template-columns: 1fr; gap: 40px; }
    .about-hero-image::before { display: none; }
    .story-section { background: var(--bg-section); }
    .story-grid { grid-template-columns: 1fr; }
    .story-content, .story-image { padding: 40px 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .realisation-card { grid-template-columns: 1fr; }
    .realisation-card:nth-child(even) { direction: ltr; }
    .realisation-images { order: -1; }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .navbar-menu.active { display: flex; }
    .navbar-menu a { color: var(--grey-dark) !important; }
    .navbar-toggle { display: flex; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--gap-md); }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .steps { grid-template-columns: 1fr; gap: var(--gap-md); }
    .steps::before { display: none; }
    .about-preview { grid-template-columns: 1fr; gap: 40px; }
    .about-image-badge { right: 20px; bottom: -15px; }
    .gallery-preview { grid-template-columns: 1fr; }
    .hero { min-height: 100vh; padding: 120px 0 40px; overflow: hidden; }
    .wheel-container {
        position: absolute;
        right: -350px;
        top: 50%;
        transform: translateY(-50%);
        width: 500px;
        height: 500px;
        margin-top: 0;
        opacity: 0.3;
    }
    .wheel-spin { width: 100%; height: 100%; margin: 0; }
    .glow { display: none; }
    .hero-content { padding: 0 20px; max-width: 100%; text-align: center; position: relative; z-index: 10; }
    .hero-buttons { justify-content: center; }
    .hero .container { flex-direction: column; width: 100%; }
    html, body { overflow-x: hidden; }
    .timeline::before { left: 20px; }
    .timeline-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    .timeline-item::before { left: 20px; }
}

/* Mobile Small - 576px */
@media (max-width: 576px) {
    .services-preview { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px 20px; }
    .realisation-images { grid-template-columns: 1fr; }
    .realisation-images img { height: 200px; }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

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

/* Features */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-md);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--grey-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Steps/Process */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    justify-items: center;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--grey-lighter);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 320px;
    width: 100%;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 3px solid var(--primary-green);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--grey-medium);
    font-size: 0.95rem;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
        justify-items: center;
    }

    .steps::before {
        display: none;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--grey-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--grey-lighter);
    border-radius: 10px;
    font: 1rem var(--font-main);
    transition: border-color var(--transition-fast);
}

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

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

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    padding: 130px 0 25px;
    color: var(--white);
    border-bottom: 3px solid var(--primary-green);
}

.page-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-header-text h1 {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.page-header-text p {
    color: var(--grey-light);
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 20px;
        text-align: center;
    }
    .page-header-content {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
}

.breadcrumb a {
    color: var(--grey-light);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: var(--primary-green);
    font-weight: 500;
}

/* 404 Page */
.error-404 {
    min-height: calc(100vh - 320px);
    display: flex;
    align-items: center;
}

.error-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 55px 45px;
    text-align: center;
    border: 1px solid var(--grey-lighter);
}

.error-code {
    font-size: clamp(4.5rem, 10vw, 7rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-green);
    letter-spacing: -0.03em;
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    margin-bottom: 14px;
}

.error-text {
    color: var(--grey-medium);
    max-width: 540px;
    margin: 0 auto 30px;
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 768px) {
    .error-box {
        padding: 35px 22px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Layout Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.circle {
    border-radius: var(--radius-circle);
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* Hero Section (index.html) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #1a2e1a 0%, #2d4a2d 30%, #1e331e 60%, #0f1a0f 100%);
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(76, 175, 80, 0.4);
    border-radius: var(--radius-circle);
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.glow {
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.08) 40%, transparent 70%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.8; }
    50% { transform: translateY(-50%) scale(1.08); opacity: 1; }
}

.wheel-container {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 700px;
    height: 700px;
    filter: drop-shadow(0 0 40px rgba(76, 175, 80, 0.2));
}

.wheel-spin {
    width: 100%;
    height: 100%;
    animation: spin 9s linear infinite;
    transform-origin: center center;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* SVG wheel styles */
.tire-outer { fill: none; stroke: #2a2a2a; stroke-width: 22; }
.tire-tread { fill: none; stroke: #333; stroke-width: 18; }
.rim-outer { fill: none; stroke: #c0c0c8; stroke-width: 5; }
.rim-inner { fill: none; stroke: #b0b0b8; stroke-width: 3; }
.rim-highlight { fill: none; stroke: rgba(255, 255, 255, 0.15); stroke-width: 2; }
.spoke { stroke: #d0d0d8; stroke-width: 1.2; stroke-linecap: round; }
.spoke-highlight { stroke: rgba(255, 255, 255, 0.3); stroke-width: 0.6; stroke-linecap: round; }
.hub-body { fill: #a0a0a8; stroke: #888; stroke-width: 1.5; }
.hub-center { fill: #707078; stroke: #606068; stroke-width: 1; }
.hub-axle { fill: #555; }
.hub-flange { fill: none; stroke: #909098; stroke-width: 2; }
.nipple { fill: #b8b8c0; stroke: #a0a0a8; stroke-width: 0.5; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding-left: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    color: var(--primary-green-light);
    padding: 8px 20px;
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.hero h1 {
    color: #fff;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 strong {
    color: var(--primary-green-light);
    font-weight: 600;
}

.hero-subtitle {
    color: rgba(200, 220, 200, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Preview (index.html) */
.services-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-sm);
    justify-items: center;
}

.service-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    max-width: 260px;
    width: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.service-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--grey-medium);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media (max-width: 576px) {
    .services-preview {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* About Preview (index.html & a-propos.html) */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-green);
}

.about-image-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.about-image-badge span {
    font-size: 0.9rem;
}

.about-cta {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .about-preview {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* Testimonial (index.html) */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--grey-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--grey-dark);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* CTA Section (index.html, a-propos.html, realisations.html) */
.cta-section {
    background: var(--gradient-green-button);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Gallery Preview (index.html) */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
}

/* About Page Specific Styles (a-propos.html) */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

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

.about-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-green);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-hero-content h2 span {
    color: var(--primary-green);
}

.about-hero-content p {
    font-size: 1.1rem;
    color: var(--grey-medium);
    line-height: 1.8;
}

.story-section {
    background: linear-gradient(to right, var(--bg-section) 50%, var(--white) 50%);
}

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

.story-content {
    padding: 80px 60px 80px 0;
}

.story-image {
    position: relative;
    padding: 80px 0 80px 60px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--grey-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

.quote-section {
    background: var(--gradient-green-button);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.quote-section blockquote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-image {
        order: -1;
    }

    .story-section {
        background: var(--bg-section);
    }

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

    .story-content,
    .story-image {
        padding: 40px 20px;
    }

    .story-image {
        order: -1;
    }

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

.quote-section blockquote::before {
    content: '"';
    font-size: 4rem;
    line-height: 0;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-green);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: var(--radius-circle);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-green);
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--grey-medium);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Page Specific Styles (contact.html) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--gap-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: var(--gap-sm);
    transition: all var(--transition-medium);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card-content p {
    color: var(--grey-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--primary-green);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--grey-medium);
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
}

.horaires-card {
    background: var(--gradient-green-button);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
}

.horaires-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.horaires-list {
    list-style: none;
}

.horaires-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.horaires-list .day {
    font-weight: 500;
}

.horaires-list .closed {
    opacity: 0.6;
}

.map-section {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-caption {
    background: var(--grey-lighter);
    padding: 15px 20px;
    margin: 0;
    color: var(--grey-medium);
    font-size: 0.95rem;
    text-align: center;
}

.map-caption i {
    color: var(--primary-green);
    margin-right: 8px;
}

.form-success {
    display: none;
    background: var(--gradient-green);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 20px;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section iframe {
        height: 300px;
    }
}

/* Mentions Légales Page specific styles (mentions-legales.html) */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--grey-lighter);
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--grey-medium);
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 20px;
    color: var(--grey-medium);
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-green);
}

.info-card {
    background: var(--bg-section);
    padding: 25px 30px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.info-card p {
    margin-bottom: 8px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card strong {
    color: var(--grey-dark);
}

/* Réalisations Page specific styles (realisations.html) */
.realisation-grid {
    display: grid;
    gap: var(--gap-lg);
}

.realisation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.realisation-card:nth-child(even) {
    direction: rtl;
}

.realisation-card:nth-child(even) > * {
    direction: ltr;
}

.realisation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px;
}

.realisation-images.single {
    grid-template-columns: 1fr;
}

.realisation-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-medium);
}

.realisation-images img:hover {
    transform: scale(1.03);
}

.realisation-images img:first-child:last-child {
    grid-column: 1 / -1;
    height: 350px;
}

.realisation-content {
    padding: 40px;
}

.realisation-tag {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: var(--radius-round);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.realisation-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--grey-dark);
}

.realisation-list {
    list-style: none;
    margin-bottom: 25px;
}

.realisation-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--grey-medium);
}

.realisation-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: var(--radius-circle);
}

@media (max-width: 992px) {
    .realisation-card {
        grid-template-columns: 1fr;
    }

    .realisation-card:nth-child(even) {
        direction: ltr;
    }

    .realisation-images {
        order: -1;
    }
}

@media (max-width: 576px) {
    .realisation-images {
        grid-template-columns: 1fr;
    }

    .realisation-images img {
        height: 200px;
    }
}

.partners-section {
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-lg);
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    max-width: 150px;
    max-height: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-medium);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
