/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #004242;
    --secondary-color: #013E4D;
    --primary-light: #006666;
    --primary-dark: #002929;
    --white: #ffffff;
    --text-color: #333333;
    --gray: #666666;
    --light-gray: #e0e0e0;
    --neutral-bg: #F5F5F5;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    margin-right: 5px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 66, 66, 0.3);
}

/* Menu burger pour mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION (Image de fond complète avec texte dessus)
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Overlay sombre sur l'image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 66, 66, 0.85) 0%, rgba(1, 62, 77, 0.75) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-text .highlight {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--white);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Boutons Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1.2s ease;
}

.btn-primary,
.btn-secondary {
    padding: 18px 45px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item .label {
    font-size: 16px;
    opacity: 0.95;
    margin-top: 5px;
}

/* ===================================
   SECTIONS GÉNÉRALES
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
}

/* ===================================
   SECTION POURQUOI NOUS CHOISIR
   =================================== */
.why-us {
    background-color: var(--neutral-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.2);
}

.feature-card i {
    font-size: 55px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   SECTION SERVICES (4 COLONNES)
   =================================== */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transition: var(--transition);
}

.service-card:hover::before {
    top: -60%;
    right: -60%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.3);
}

.service-card i {
    font-size: 55px;
    color: var(--white);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    opacity: 0.95;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .btn-secondary {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px 20px;
}

/* ===================================
   SECTION PROCESSUS
   =================================== */
.process {
    background-color: var(--neutral-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.3);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   SECTION TÉMOIGNAGES (4 COLONNES - 8 TÉMOIGNAGES)
   =================================== */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-info .rating {
    color: var(--white);
    font-size: 12px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    opacity: 0.95;
    font-size: 14px;
}

/* ===================================
   SECTION CHIFFRES CLÉS
   =================================== */
.stats-section {
    background-color: var(--neutral-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 35px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.2);
}

.stat-box i {
    font-size: 55px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-box .stat-number {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 16px;
    color: var(--gray);
}

/* ===================================
   SECTION FAQ
   =================================== */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--neutral-bg);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e8e8e8;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-light);
}

/* ===================================
   SECTION CTA
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 90px 0;
}

.cta-section h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===================================
   FORMULAIRES
   =================================== */
.form-container {
    background-color: var(--white);
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 16px 45px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 66, 66, 0.3);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #001a1a;
    color: var(--white);
    padding: 70px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h3 {
    font-size: 21px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    opacity: 0.85;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact li,
.footer-hours li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--white);
    margin-top: 3px;
}

.footer-contact a {
    opacity: 0.85;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-hours strong {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    opacity: 0.75;
    font-size: 14px;
}

.legal-info {
    margin-top: 8px;
}

.footer-links-bottom {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links-bottom a {
    opacity: 0.85;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--white);
    opacity: 1;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 46px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Menu burger actif */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 15px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 85vh;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 17px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 35px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stat-item .number {
        font-size: 40px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* ===================================
   CLASSES UTILITAIRES
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden {
    display: none;
}

.show {
    display: block;
}

/* ===================================
   SECTION À PROPOS (2 COLONNES)
   =================================== */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 66, 66, 0.2);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.4);
}

.about-badge i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.about-badge span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.about-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 22px;
}

.about-feature-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* ===================================
   SECTION VÉRIFICATION PERMIS (2 COLONNES)
   =================================== */
.check-license-section {
    background: linear-gradient(135deg, rgba(0, 66, 66, 0.03) 0%, rgba(1, 62, 77, 0.03) 100%);
    overflow: hidden;
}

.check-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.check-intro {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.check-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.check-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.check-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.check-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.15);
}

.check-feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.check-feature-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.check-feature-item p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.check-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.check-image {
    position: relative;
}

.check-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 66, 66, 0.2);
}

.check-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.3);
    max-width: 250px;
}

.check-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.check-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.check-card p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   ANIMATIONS POUR LES SECTIONS
   =================================== */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   RESPONSIVE - SECTIONS À PROPOS ET VÉRIFICATION
   =================================== */
@media (max-width: 992px) {
    .about-container,
    .check-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2,
    .check-content h2 {
        font-size: 36px;
    }
    
    .about-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .check-card {
        left: 20px;
        bottom: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-content h2,
    .check-content h2 {
        font-size: 32px;
    }
    
    .about-intro,
    .check-intro {
        font-size: 18px;
    }
    
    .check-buttons {
        flex-direction: column;
    }
    
    .check-buttons .btn-primary,
    .check-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-badge {
        padding: 15px;
        bottom: 15px;
        right: 15px;
    }
    
    .about-badge i {
        font-size: 30px;
    }
    
    .about-badge span {
        font-size: 14px;
    }
    
    .check-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* ===================================
   PAGE HERO (Pour toutes les pages internes)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

/* ===================================
   SECTION HISTOIRE
   =================================== */
.history-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.history-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.history-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 60px;
    width: 2px;
    height: calc(100% + 10px);
    background-color: var(--primary-color);
}

.timeline-year {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.timeline-content {
    padding-top: 10px;
}

.timeline-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    margin: 0;
}

.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 66, 66, 0.2);
}

.history-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.4);
}

/* ===================================
   SECTION ÉQUIPE
   =================================== */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 66, 66, 0.9) 0%, rgba(1, 62, 77, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info span {
    color: var(--gray);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   SECTION VALEURS
   =================================== */
.values-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.15);
}

.value-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   SECTION INSTALLATIONS
   =================================== */
.facilities-section {
    padding: 80px 0;
    background-color: var(--white);
}

.facilities-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.facilities-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 66, 66, 0.2);
}

.facilities-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.facilities-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.facilities-list {
    margin: 35px 0;
}

.facility-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.facility-item i {
    font-size: 35px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.facility-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.facility-item p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

/* ===================================
   RESPONSIVE - PAGES INTERNES
   =================================== */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .history-container,
    .facilities-container {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
}

/* ===================================
   SECTION DÉTAILS FÜHRERSCHEINKLASSEN
   =================================== */
.license-classes-section {
    padding: 80px 0;
    background-color: var(--white);
}

.license-class-detail {
    margin-bottom: 100px;
}

.license-class-detail:last-child {
    margin-bottom: 0;
}

.license-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.license-class-detail.reverse .license-detail-container {
    direction: rtl;
}

.license-class-detail.reverse .license-detail-content,
.license-class-detail.reverse .license-detail-image {
    direction: ltr;
}

.license-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 15px;
    font-size: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.license-detail-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.license-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.license-requirements,
.license-includes,
.license-price {
    margin: 30px 0;
}

.license-requirements h3,
.license-includes h3,
.license-price h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.license-requirements ul,
.license-includes ul {
    list-style: none;
}

.license-requirements li,
.license-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.license-requirements i,
.license-includes i {
    color: var(--primary-color);
    font-size: 18px;
}

.license-price p {
    margin-bottom: 10px;
}

.license-price strong {
    color: var(--primary-color);
}

.license-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 66, 66, 0.2);
}

/* ===================================
   SECTION AUTRES CLASSES
   =================================== */
.other-classes-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.other-classes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.other-class-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.other-class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.2);
}

.other-class-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.other-class-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.other-class-card p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 15px;
}

.other-class-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    margin-top: 15px;
    display: inline-block;
}

.other-class-card a:hover {
    color: var(--primary-light);
}

/* ===================================
   SECTION PROCESSUS D'INSCRIPTION
   =================================== */
.enrollment-process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.enrollment-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.enrollment-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.step-circle {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.enrollment-step h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.enrollment-step p {
    color: var(--gray);
    font-size: 14px;
}

.enrollment-arrow {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================
   SECTION PRIX
   =================================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 66, 66, 0.03) 0%, rgba(1, 62, 77, 0.03) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--gray);
    font-size: 14px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    display: block;
    color: var(--gray);
    font-size: 16px;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i.fa-check {
    color: var(--primary-color);
}

.pricing-features i.fa-times {
    color: #ccc;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    text-align: center;
}

.pricing-note {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    margin: 0;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-note i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE - SERVICES PAGE
   =================================== */
@media (max-width: 1200px) {
    .other-classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .license-detail-container {
        grid-template-columns: 1fr;
    }
    
    .license-class-detail.reverse .license-detail-container {
        direction: ltr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .enrollment-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .other-classes-grid {
        grid-template-columns: 1fr;
    }
    
    .enrollment-step {
        min-width: 100%;
    }
}

/* ===================================
   SECTION INFORMATIONS DE CONTACT
   =================================== */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-light);
}

/* ===================================
   SECTION FORMULAIRE DE CONTACT
   =================================== */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-benefits {
    margin-top: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 22px;
}

.benefit-item span {
    color: var(--text-color);
    font-weight: 500;
}

.contact-form-box {
    background-color: var(--neutral-bg);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 66, 66, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: 400;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form button[type="submit"] {
    width: 100%;
}

/* ===================================
   SECTION GOOGLE MAPS
   =================================== */
.map-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.map-container-full {
    width: 100%;
    margin: 50px 0;
    border-radius: 0;
    overflow: hidden;
}

.map-container-full iframe {
    width: 100%;
    display: block;
}

.map-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.map-info-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.15);
}

.map-info-card i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-info-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.map-info-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   SECTION FAQ RAPIDE
   =================================== */
.quick-faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.quick-faq-card {
    background-color: var(--neutral-bg);
    padding: 40px 35px;
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.quick-faq-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.1);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.quick-faq-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-faq-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   RESPONSIVE - CONTACT PAGE
   =================================== */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .map-info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 30px;
    }
    
    .map-container-full iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-content h2 {
        font-size: 32px;
    }
}

/* ===================================
   SECTION AVANTAGES APPLICATION
   =================================== */
.application-benefits-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.15);
}

.benefit-icon {
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   SECTION FORMULAIRE APPLICATION
   =================================== */
.application-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.application-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.application-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.application-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.application-steps {
    margin: 40px 0;
}

.app-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.app-step h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.app-step p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

.trust-indicators {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--neutral-bg);
    border-radius: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.trust-item span {
    color: var(--text-color);
    font-weight: 500;
}

.application-form-box {
    background: linear-gradient(135deg, rgba(0, 66, 66, 0.03) 0%, rgba(1, 62, 77, 0.03) 100%);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 66, 66, 0.1);
    border: 2px solid var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray);
    font-size: 14px;
}

.application-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.application-form label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-color);
}

/* ===================================
   SECTION CONTACT ALTERNATIF
   =================================== */
.alternative-contact-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.alternative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.alternative-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.alternative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 66, 66, 0.15);
}

.alt-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
}

.alternative-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.alternative-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.alternative-card .btn-secondary {
    margin-bottom: 15px;
}

.alt-hours {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   SECTION REQUIREMENTS
   =================================== */
.requirements-section {
    padding: 80px 0;
    background-color: var(--white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.requirement-card {
    background: linear-gradient(135deg, rgba(0, 66, 66, 0.03) 0%, rgba(1, 62, 77, 0.03) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.requirement-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.1);
}

.req-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.requirement-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.requirement-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.requirements-note {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 25px;
    background-color: var(--neutral-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 15px;
}

.requirements-note i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.requirements-note p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   RESPONSIVE - APPLICATION PAGE
   =================================== */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .application-container {
        grid-template-columns: 1fr;
    }
    
    .alternative-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form-box {
        padding: 30px;
    }
}

/* ===================================
   PAGES LÉGALES (IMPRESSUM & DATENSCHUTZ)
   =================================== */
.legal-section {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-container {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

.legal-content {
    max-width: 100%;
}

.legal-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-block h4 {
    font-size: 18px;
    color: var(--text-color);
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.legal-block p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.legal-block a:hover {
    color: var(--primary-light);
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-block ul li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-update {
    margin-top: 50px;
    padding: 20px;
    background-color: var(--neutral-bg);
    border-radius: 8px;
    text-align: center;
    color: var(--gray);
}

/* Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: var(--neutral-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-card .btn-secondary {
    width: 100%;
    text-align: center;
    display: block;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
}

.sidebar-links a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    padding-left: 15px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.sidebar-list i {
    color: var(--primary-color);
    font-size: 16px;
}

/* ===================================
   RESPONSIVE - PAGES LÉGALES
   =================================== */
@media (max-width: 992px) {
    .legal-container {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 28px;
    }
    
    .legal-block h3 {
        font-size: 20px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
}

/* Bouton "Mein Ergebnis" dans le header */
.btn-result {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-result:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 66, 66, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-result {
        width: auto;
        margin: 0;
    }
}

/* ===================================
   PAGE RÉSULTAT - VÉRIFICATION
   =================================== */
.result-check-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.result-check-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.result-check-info h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-check-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-steps {
    margin: 40px 0;
}

.info-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-step-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.info-step h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-step p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

.info-note {
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.info-note i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-note p {
    margin: 0;
    line-height: 1.7;
}

.result-check-form-box {
    background-color: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 66, 66, 0.15);
    border: 2px solid var(--primary-color);
}

.result-check-form-box .form-header {
    text-align: center;
    margin-bottom: 35px;
}

.result-check-form-box .form-header i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-check-form-box .form-header h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
}

.result-check-form-box input {
    text-transform: uppercase;
    font-weight: 500;
}

.result-check-form-box small {
    display: block;
    margin-top: 8px;
    color: var(--gray);
    font-size: 13px;
}

.loading {
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: var(--gray);
    font-weight: 500;
}

/* ===================================
   AFFICHAGE DU RÉSULTAT
   =================================== */
.result-display-section {
    padding: 80px 0;
    background-color: var(--white);
}

.result-card {
    background-color: var(--neutral-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 66, 66, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.result-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-header h2 {
    margin: 0;
    font-size: 28px;
}

.close-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.result-content {
    padding: 40px;
}

.result-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.photo-box {
    text-align: center;
}

.photo-box h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.photo-box img {
    width: 100%;
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.result-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.info-row:last-child {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item > div {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-value {
    display: block;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
}

.result-status {
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.result-status i {
    font-size: 40px;
}

.status-success {
    background-color: #4CAF50;
    color: var(--white);
}

.status-failed {
    background-color: #f44336;
    color: var(--white);
}

.result-footer {
    background-color: var(--white);
    padding: 20px 40px;
    text-align: center;
    border-top: 2px solid var(--light-gray);
}

.result-footer p {
    margin: 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.result-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   AFFICHAGE D'ERREUR
   =================================== */
.error-display-section {
    padding: 80px 0;
    background-color: var(--white);
}

.error-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--neutral-bg);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.error-card i {
    font-size: 80px;
    color: #f44336;
    margin-bottom: 25px;
}

.error-card h3 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.error-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===================================
   SECTION AIDE
   =================================== */
.result-help-section {
    padding: 80px 0;
    background-color: var(--neutral-bg);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.help-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 66, 66, 0.15);
}

.help-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.help-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.help-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE - PAGE RÉSULTAT
   =================================== */
@media (max-width: 992px) {
    .result-check-container {
        grid-template-columns: 1fr;
    }
    
    .result-photos {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .result-check-form-box {
        padding: 30px;
    }
    
    .result-content {
        padding: 25px;
    }
}

.info-notice {
    background-color: #e3f2fd;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.info-notice p {
    margin: 0;
    color: #1565c0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-notice i {
    font-size: 18px;
    flex-shrink: 0;
}

.info-notice a {
    color: #004242;
    font-weight: 600;
    text-decoration: underline;
}