* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        /* Header & Navigation */
        header {
            background: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            flex-wrap: wrap;
        }

        a {
            color: #4A90E2;
            text-decoration: none;
        }

        .fa-whatsapp, .fa-phone{
            font-size: 2rem;
        }

        .calculate-btn {
            background: #4A90E2;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s;
            margin: 1rem 0;
        }

        .calculate-btn:hover {
            background: #3a7bc8;
            transform: translateY(-2px);
        }


        .submit-btn {
            background: #28a745;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        /* Booking Form */
        
        .booking-form {
            background-color: rgba(255, 255,255, 0.7);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            position: sticky;
            top: 100px;
            max-width: 500px;
        }

        .booking-form h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .hero-wrapper{
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .price-display {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            margin: 1rem 0;
            border: 2px dashed #4A90E2;
        }

        .price-display p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }

        .price-display .price {
            font-size: 1.8rem;
            color: #4A90E2;
            font-weight: bold;
            margin-top: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4A90E2;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .logo {
            background-image: url("../img/logo1.png");
            background-size: 100%;
            /*background: #4A90E2;*/
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 1.5rem;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #4A90E2;
        }

        .contact-info-header {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            font-size: 1.1rem;
            color: #666;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #333;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section with diagonal background */
        .hero {
            background-image: url("../img/toyota_auris_monchauffeurvtc4.jpg");
            background-size: 100%;
            background-repeat: no-repeat;
            background-color: rgba(101,177,243,0.3);
            position: relative;
            overflow: hidden;
            padding: 3rem 2rem 10rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(173, 216, 230, 0.3) 0%, 
                rgba(173, 216, 230, 0.3) 25%,
                transparent 25%,
                transparent 50%,
                rgba(173, 216, 230, 0.2) 50%,
                rgba(173, 216, 230, 0.2) 75%,
                transparent 75%);
            background-size: 60px 60px;
            opacity: 0.5;
            z-index: 0;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            /*background: white;*/
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .hero-content h1 {
            font-size: clamp(1.8rem, 4vw, 2.2rem);
            margin-bottom: 1.5rem;
            color: #1a1a2e;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 2rem;
            color: #555;
            line-height: 1.8;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .cta-button {
            background: #4A90E2;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .cta-button:hover {
            background: #3a7bc8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        }

        /* Section with image and text */
        .about-section {
            max-width: 1200px;
            margin: -6rem auto 4rem;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .about-content {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .about-title {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            padding: 3rem 2rem 2rem;
            color: #1a1a2e;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: center;
        }

        .about-image {
            /*background: #888;*/
            background-image: url("../img/toyota_auris_monchauffeurvtc.png");
            background-size: 100%;
            background-position-y: center;
            background-repeat: no-repeat;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

        .about-text {
            padding: 3rem;
        }

        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
        }

        .about-text p {
            margin-bottom: 1rem;
            color: #555;
            line-height: 1.8;
        }

        .about-text ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .about-text ul li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.8rem;
            color: #555;
        }

        .about-text ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4A90E2;
            font-weight: bold;
        }

        /* Questions Section with blue gradient background */
        .questions-section {
            background: linear-gradient(135deg, 
                rgba(173, 216, 230, 0.4) 0%, 
                rgba(135, 206, 235, 0.3) 50%,
                rgba(173, 216, 230, 0.4) 100%);
            padding: 4rem 2rem 6rem;
            margin-top: 4rem;
            position: relative;
        }

        .questions-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .questions-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .questions-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        .questions-intro {
            font-size: 1rem;
            color: #555;
            margin-bottom: 3rem;
            max-width: 800px;
        }

        .questions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .question-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .question-card h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        .question-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
        }

        /* Services */
        section.services {
            background-color: #e9e9e9;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        section.services h2 {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            margin-bottom: 3rem;
            color: #1a1a2e;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.15);
        }

        .service-icon {
            color: #5aadeb;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .service-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #555;
            line-height: 1.7;
        }

        /* Coverage Zone */
        .coverage-zone {
            background-color: #e9e9e9;
            padding: 4rem 2rem;
            margin: 4rem 0;
        }

        .coverage-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .zone-intro {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.1rem;
            color: #555;
        }

        .zone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .zone-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #4A90E2;
            transition: all 0.3s;
        }

        .zone-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .zone-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .zone-card p {
            color: #555;
            line-height: 1.7;
        }

        /* FAQ */
        .faq-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .faq-section h2 {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            margin-bottom: 3rem;
            color: #1a1a2e;
            text-align: center;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-question {
            background: white;
            color: #1a1a2e;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
            border-left: 4px solid #4A90E2;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-icon {
            color: #4A90E2;
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        /* Contact */
        .contact-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .contact-section h2 {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            margin-bottom: 3rem;
            color: #1a1a2e;
            text-align: center;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            background: #4A90E2;
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .contact-card h3 {
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        .contact-card a {
            color: #4A90E2;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .contact-card a:hover {
            color: #3a7bc8;
        }

        .contact-card p {
            margin-top: 0.5rem;
            color: #666;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: white;
            color: #333;
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid #e0e0e0;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #4A90E2;
        }

        .footer-bottom {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
            color: #666;
            font-size: 0.9rem;
        }

        /* SEO Keywords */
        .seo-keywords {
            background: #f8f9fa;
            padding: 2rem;
            font-size: 0.85rem;
            color: #666;
            text-align: center;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-image {
                min-height: 400px;
                background-position-y: center;
                background-repeat: no-repeat;
            }

            .booking-form {
                background-color: rgba(255, 255,255, 0.7);
                position: static;
                margin-top: 2rem;
            }

            .hero-wrapper {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 1rem;
                border-top: 1px solid #e0e0e0;
                width: 100%;
            }

            .contact-info-header {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            nav {
                padding: 0 1rem;
            }

            .hero {
                padding: 2rem 1rem 6rem;
            }

            .hero-content {
                padding: 2rem;
            }

            .about-section {
                margin-top: -4rem;
            }

            .about-title {
                padding: 2rem 1rem 1rem;
            }

            .about-text {
                padding: 2rem;
            }

            .questions-section {
                padding: 3rem 1rem 4rem;
            }
        }/* ==========================================
   STYLES ADDITIONNELS POUR MENUS DÉROULANTS 
   ET PAGES LOCALES
   À AJOUTER À LA FIN DE style.css
   ========================================== */

/* Menu Déroulant Header */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
    margin-top: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #4A90E2;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

/* Menu Déroulant Footer */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
    margin-top: 0px; /* ← Changé : élimine l'espace */
    padding-top: 5px; /* ← Ajouté : zone de survol */
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #4A90E2;
}

/* IMPORTANT : Garde le menu visible quand on survole le dropdown OU son contenu */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

/* Même fix pour le footer */
.dropdown-footer {
    position: relative;
    display: inline-block;
}

.dropdown-content-footer {
    display: none;
    position: absolute;
    background-color: #2c3e50;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    bottom: 100%;
    margin-bottom: 0px; /* ← Changé : élimine l'espace */
    padding-bottom: 5px; /* ← Ajouté : zone de survol */
    border-radius: 5px;
}

.dropdown-content-footer a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content-footer a:hover {
    background-color: #34495e;
}

.dropdown-footer:hover .dropdown-content-footer,
.dropdown-content-footer:hover {
    display: block;
}




/* ==========================================
   STYLES PAGES LOCALES (VILLES)
   ========================================== */

/* Hero Section Villes */
.city-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background-image: url(../img/toyota_auris_monchauffeurvtc4.jpg);
    background-position-y: top;
    background-position-x: center;
}

.city-hero-content {
    color: white;
    max-width: 800px;
    z-index: 10;
}

.city-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.city-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.city-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Contenu Principal Villes */
.city-content {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.city-content .container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.city-description h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #4A90E2;
    padding-bottom: 0.5rem;
}

.city-description h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.city-description h4 {
    color: #4A90E2;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

.city-description p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Grille de Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card h4 {
    margin-top: 0;
}

/* Liste Zones */
.zone-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.zone-list li {
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    background: #e8f4f8;
    border-radius: 5px;
    border-left: 3px solid #4A90E2;
}

/* Pricing Info */
.pricing-info {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
    margin: 2rem 0;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.pricing-info strong {
    color: #287da7;
    font-size: 1.2rem;
}

.pricing-info .note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Avantages */
.advantages {
    margin: 2rem 0;
}

.advantage-item {
    display: flex;
    align-items: start;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.advantage-item .icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.advantage-item h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.advantage-item p {
    margin: 0;
    color: #666;
}

/* Étapes de Réservation */
.booking-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #e8f4f8;
    border-radius: 10px;
}

.step-number {
    background: #4A90E2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step p {
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4A90E2, #3a7bc8);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    color: white;
    margin: 0 0 1rem 0;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #28a745;
    color: white;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25D366;
    color: white;
}

.btn-secondary:hover {
    background: #1ebc59;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: white;
    color: #4A90E2;
}

.btn-tertiary:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

/* FAQ Locale */
.faq-local {
    margin: 2rem 0;
}

.faq-item-local {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

.faq-item-local h4 {
    color: #2c3e50;
    margin-top: 0;
}

.faq-item-local p {
    margin: 0;
    color: #666;
}

/* SEO Footer */
.seo-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 1.8rem;
    }

    .city-hero h2 {
        font-size: 1.3rem;
    }

    .city-content .container {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary, .btn-tertiary {
        width: 100%;
        text-align: center;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-item .icon {
        margin: 0 0 1rem 0;
    }

    .dropdown-content {
        position: relative;
        box-shadow: none;
        margin-top: 0;
    }

    /* Menu mobile */
    .nav-links.active .dropdown-content {
        display: block;
        position: static;
        box-shadow: none;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-description {
    animation: fadeInUp 0.6s ease-out;
}
