/* Hero */
.hero {
    padding: 4rem 0 5rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Section styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Introduction */
.intro-section {
    background: var(--light);
}

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

.intro-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-highlight {
    background: var(--white);
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.intro-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--text);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Réglementation */
.reglementation-section {
    background: var(--white);
}

.reglementation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reglementation-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.reglementation-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.reglementation-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reglementation-card .icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.reglementation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Galerie */
.gallery-section {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.gallery-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

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

.gallery-card-content {
    padding: 1.75rem;
}

.gallery-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.gallery-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Schéma technique animé */
.diagram-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
}

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

.diagram-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.diagram-container {
    background: #0d1b2a;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .diagram-container {
        padding: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-diagram {
        min-width: 700px;
    }
}

/* Schéma animé interactif */
.animated-schema-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
}

.animated-schema-section .section-title {
    color: #fff;
}

.animated-schema-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.animated-diagram-container {
    background: #0d1b2a;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin-top: 2rem;
}

.animated-schema {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(180deg, #1b263b 0%, #0d1b2a 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #2d4a6f;
}

/* Sol industriel animé */
.anim-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, #4a4a4a 0%, #2d2d2d 100%);
    border-top: 4px solid #666;
}

.anim-ground::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #666 0px, #666 20px, transparent 20px, transparent 40px);
}

/* Canalisation principale animée */
.anim-pipe {
    position: absolute;
    bottom: 70px;
    left: 40px;
    right: 40px;
    height: 90px;
    background: linear-gradient(180deg, #5d6d7e 0%, #34495e 50%, #2c3e50 100%);
    border-radius: 10px;
    border: 3px solid #7f8c8d;
}

.anim-pipe::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
}

.anim-pipe-label {
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #ecf0f1;
    border: 1px solid #5d6d7e;
}

/* Regard d'accès animé */
.anim-access-chamber {
    position: absolute;
    bottom: 160px;
    left: 60%;
    width: 90px;
    height: 130px;
    background: linear-gradient(180deg, #5d6d7e 0%, #34495e 100%);
    border: 3px solid #7f8c8d;
    border-radius: 5px;
}

.anim-access-chamber::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #2c3e50;
    border: 2px solid #7f8c8d;
    border-radius: 3px;
}

.anim-chamber-label {
    position: absolute;
    bottom: 300px;
    left: 60%;
    background: #34495e;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    color: #bdc3c7;
    white-space: nowrap;
}

/* Obturateur gonflable animé */
.anim-obturator {
    position: absolute;
    bottom: 82px;
    left: 44%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #f39c12, #e67e22, #d35400);
    border-radius: 50%;
    border: 3px solid #e74c3c;
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
    z-index: 10;
}

.anim-obturator.inflated {
    width: 80px;
    height: 75px;
    border-radius: 50%;
    bottom: 76px;
    left: 42%;
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.8), inset 0 0 20px rgba(255,255,255,0.2);
}

.anim-obturator-label {
    position: absolute;
    bottom: 125px;
    left: 44%;
    background: #e74c3c;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    color: #fff;
    white-space: nowrap;
    transition: all 0.5s;
    z-index: 20;
}

/* Flux de pollution animé */
.anim-pollution-flow {
    position: absolute;
    bottom: 100px;
    left: 50px;
    display: flex;
    gap: 25px;
}

.anim-pollution-particle {
    width: 22px;
    height: 22px;
    background: radial-gradient(circle at 30% 30%, #8e44ad, #6c3483, #4a235a);
    border-radius: 50%;
    opacity: 0;
    animation: animFlowRight 3s infinite;
    box-shadow: 0 0 10px rgba(142, 68, 173, 0.6);
}

.anim-pollution-particle:nth-child(1) { animation-delay: 0s; }
.anim-pollution-particle:nth-child(2) { animation-delay: 0.5s; }
.anim-pollution-particle:nth-child(3) { animation-delay: 1s; }
.anim-pollution-particle:nth-child(4) { animation-delay: 1.5s; }
.anim-pollution-particle:nth-child(5) { animation-delay: 2s; }

@keyframes animFlowRight {
    0% { opacity: 0; transform: translateX(0); }
    20% { opacity: 0.9; }
    80% { opacity: 0.9; }
    100% { opacity: 0; transform: translateX(280px); }
}

.anim-pollution-flow.blocked .anim-pollution-particle {
    animation: animFlowBlocked 2s infinite;
}

@keyframes animFlowBlocked {
    0% { opacity: 0; transform: translateX(0); }
    30% { opacity: 0.9; transform: translateX(90px); }
    50% { opacity: 0.9; transform: translateX(110px); }
    70% { opacity: 0.6; transform: translateX(95px) scale(0.8); }
    100% { opacity: 0; transform: translateX(90px) scale(0.3); }
}

/* Système de gonflage animé */
.anim-inflation-system {
    position: absolute;
    top: 25px;
    left: 40%;
    width: 100px;
    height: 115px;
    background: linear-gradient(180deg, #3498db 0%, #2980b9 100%);
    border-radius: 10px;
    border: 3px solid #5dade2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.anim-compressor-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 50%;
    border: 3px solid #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2980b9;
}

.anim-compressor-label {
    margin-top: 8px;
    font-size: 0.65rem;
    text-align: center;
    color: #ecf0f1;
    line-height: 1.3;
}

.anim-compressor-label i {
    display: block;
    margin-bottom: 3px;
    font-size: 0.8rem;
}

/* Tuyau de gonflage animé */
.anim-inflation-tube {
    position: absolute;
    top: 130px;
    left: 44.5%;
    width: 7px;
    height: 0;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    transition: height 0.5s;
    border-radius: 4px;
}

.anim-inflation-tube.active {
    height: 160px;
}

.anim-inflation-tube::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #c0392b;
}

/* Air flow animation */
.anim-air-flow {
    position: absolute;
    top: 130px;
    left: calc(44.5% - 3px);
    width: 14px;
    opacity: 0;
}

.anim-air-flow.active {
    opacity: 1;
}

.anim-air-bubble {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 4px auto;
    animation: animAirDown 0.8s infinite;
}

.anim-air-bubble:nth-child(2) { animation-delay: 0.2s; }
.anim-air-bubble:nth-child(3) { animation-delay: 0.4s; }

@keyframes animAirDown {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(160px); }
}

/* Bâtiment industriel animé */
.anim-factory-container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 120px;
    height: 140px;
}

.anim-factory {
    position: relative;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #5d6d7e 0%, #34495e 100%);
    border: 2px solid #7f8c8d;
    border-radius: 4px;
}

/* Cheminée principale */
.anim-factory::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 20px;
    width: 22px;
    height: 35px;
    background: linear-gradient(180deg, #4a5a6a 0%, #34495e 100%);
    border: 2px solid #7f8c8d;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

/* Deuxième cheminée */
.anim-factory::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 55px;
    width: 16px;
    height: 25px;
    background: linear-gradient(180deg, #4a5a6a 0%, #34495e 100%);
    border: 2px solid #7f8c8d;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

/* Fenêtres de l'usine */
.anim-factory-windows {
    position: absolute;
    top: 15px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.anim-factory-window {
    width: 25px;
    height: 20px;
    background: linear-gradient(180deg, #f39c12 0%, #e67e22 100%);
    border: 2px solid #2c3e50;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
}

/* Porte de l'usine */
.anim-factory-door {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 35px;
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    border: 2px solid #7f8c8d;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

/* Fumée des cheminées */
.anim-smoke-container {
    position: absolute;
    top: -55px;
    left: 22px;
    width: 20px;
    height: 30px;
}

.anim-smoke {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(150, 150, 150, 0.6);
    border-radius: 50%;
    animation: smokeRise 2s infinite ease-out;
}

.anim-smoke:nth-child(1) { left: 0; animation-delay: 0s; }
.anim-smoke:nth-child(2) { left: 5px; animation-delay: 0.5s; }
.anim-smoke:nth-child(3) { left: 2px; animation-delay: 1s; }

@keyframes smokeRise {
    0% {
        opacity: 0.8;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-25px) scale(1.5);
    }
}

/* Icône industrie dans l'usine */
.anim-factory-icon {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #95a5a6;
    font-size: 1.5rem;
}

/* Pipeline sortant de l'usine */
.anim-factory-pipe {
    position: absolute;
    bottom: 20px;
    right: -30px;
    width: 30px;
    height: 15px;
    background: linear-gradient(180deg, #7f8c8d 0%, #5d6d7e 100%);
    border: 2px solid #95a5a6;
    border-left: none;
}

.anim-factory-pipe::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #5d6d7e;
}

.anim-factory-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #bdc3c7;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.anim-factory-label i {
    color: #e74c3c;
}

/* Réseau public animé */
.anim-public-network {
    position: absolute;
    bottom: 100px;
    right: 15px;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.7rem;
    color: #fff;
    text-align: center;
    border: 2px solid #2ecc71;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
}

.anim-public-network-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
    color: #e8f8f5;
}

.anim-public-network-text {
    font-weight: 600;
    line-height: 1.3;
}

/* Flèche de flux animée */
.anim-flow-arrow {
    position: absolute;
    bottom: 110px;
    left: 100px;
    color: #8e44ad;
    font-size: 1.3rem;
    animation: animArrowPulse 1s infinite;
}

.anim-flow-arrow.blocked {
    color: #e74c3c;
    animation: none;
}

@keyframes animArrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(8px); }
}

/* Notification animée */
.anim-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: 100;
    text-align: center;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.5);
}

.anim-notification.show {
    opacity: 1;
}

.anim-notification-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* Status panel animé */
.anim-status-panel {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.anim-status-item {
    background: rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.anim-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #27ae60;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.8);
}

.anim-status-indicator.alert {
    background: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
    animation: blink 0.5s infinite;
}

.anim-status-text {
    font-size: 0.8rem;
    color: #bdc3c7;
}

.anim-status-value {
    font-weight: bold;
    color: #4fc3f7;
}

/* Légende schéma animé */
.anim-legend {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.anim-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #bdc3c7;
}

.anim-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .animated-diagram-container {
        padding: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .animated-schema {
        min-width: 600px;
        height: 450px;
    }
    .anim-status-panel {
        flex-direction: column;
        align-items: center;
    }
    .anim-status-item {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }
}

/* Téléphones : réduire le schéma animé proportionnellement */
@media (max-width: 480px) {
    .animated-schema-section .container {
        padding: 0 0.5rem;
    }
    .animated-diagram-container {
        padding: 0;
        overflow: hidden;
    }
    .animated-schema {
        min-width: unset;
        width: 600px;
        height: 450px;
        transform-origin: top left;
        transform: scale(0.5);
        margin-bottom: -225px;
        margin-right: -300px;
    }
}

/* Fonctionnement */
.fonctionnement-section {
    background: var(--white);
}

.fonctionnement-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.fonctionnement-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--light);
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    display: flex;
    gap: 1.25rem;
}

.step-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Caractéristiques techniques */
.specs-section {
    background: var(--light);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.spec-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.spec-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.spec-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.spec-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.spec-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Avantages */
.avantages-section {
    background: var(--white);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.avantage-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.avantage-icon {
    width: 48px;
    height: 48px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avantage-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.avantage-content h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.avantage-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

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

.contact-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.2s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cta .cta-button {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.contact-cta .cta-button:hover {
    background: var(--light);
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .gallery-grid,
    .steps-grid,
    .avantages-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-badges {
        flex-direction: column;
    }
}
