html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #333; /* à adapter selon votre charte graphique */
}

.hero-banner {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/assets/images/index-layer1.png');
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* overlay pour améliorer la lisibilité */
    z-index: 1;
}

header {
   width: 100%;
   padding: 15px 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: fixed;
   top: 0px;
   z-index: 10;
   background: rgba(255,255,255,0.9); /* fond semi-transparent */
   box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    max-width: 200px;
}

.hd-logo {
    max-width: 100%;
    height: auto;
    padding-left: 30px;
}

.hd-links {
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.hd-links a {
    padding: 0px 15px;
    text-decoration: none;
    color: #333; /* à adapter selon votre charte graphique */
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.hd-links a:hover {
    color: #022447 ; /* à adapter selon votre charte graphique */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 11;
    margin-right: 15px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #022447 ;
    color: #022447 ;
}

.mont {
    font-family: 'Montserrat', sans-serif;
}

.hero-location {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    font-weight: 500;
}

.services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 0;
    color: #022447 ; /* à adapter selon votre charte graphique */
    margin-bottom: 15px;
}

.location {
    padding: 60px 0;
    background-color: #fff;
}

.location h2 {
    text-align: center;
    margin-bottom: 40px;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-block, .hours-block {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.address-block h3, .hours-block h3 {
    margin-top: 0;
    color: #022447 ; /* à adapter selon votre charte graphique */
    margin-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

address {
    font-style: normal;
    line-height: 1.6;
}

address a {
    color: #022447 ; /* à adapter selon votre charte graphique */
    text-decoration: none;
}

.business-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #e1e1e1;
}

.business-hours li:last-child {
    border-bottom: none;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.directions {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.directions h3 {
    margin-top: 0;
    color: #333;
}

.directions .btn {
    margin-top: 15px;
    display: inline-block;
}

/* Responsive design */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

.testimonials-preview {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 30px;
}

.city-name {
    color: #022447 ; /* à adapter selon votre charte graphique */
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rating-stars {
    color: #FBBC05; /* Couleur des étoiles Google */
    font-size: 2rem;
    letter-spacing: 2px;
}

.rating-stats {
    text-align: center;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #022447 ; /* à adapter selon votre charte graphique */
}

.client-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.client-stars {
    color: #FBBC05; /* Couleur des étoiles Google */
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

.testimonial-content {
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-source {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.source-icon {
    margin-right: 5px;
}

.testimonial-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Version responsive */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .google-rating {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .testimonial-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

.faq-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 15px;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.city-name {
    color: #022447 ; /* à adapter selon votre charte graphique */
    font-weight: 600;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    position: relative;
    padding: 20px 50px 20px 20px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f7ff; /* à adapter selon votre charte graphique */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #022447 ; /* à adapter selon votre charte graphique */
    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.faq-cta {
    text-align: center;
}
.faq-cta a {
    box-sizing: border-box;
}



/* Effet d'animation lors de l'ouverture */
details[open] .faq-answer {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Version responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 40px 15px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }
}

.footer {
    background-color: #1d2732;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-nap address {
    font-style: normal;
    line-height: 1.6;
}

.footer-nap p {
    margin: 8px 0;
}

.footer-nap a, .footer-quick-links a, .footer-service-area a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nap a:hover, .footer-quick-links a:hover, .footer-service-area a:hover {
    color: #022447 ; /* à adapter selon votre charte graphique */
}

.footer-quick-links ul, .service-localities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links li, .service-localities li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    transform: translateY(-3px);
}

.gmb-review {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.gmb-review-link {
    display: block;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.gmb-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stars {
    color: #FFC107;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating {
    font-weight: bold;
}

.review-count {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.leave-review {
    display: inline-block;
    padding: 5px 15px;
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.leave-review:hover {
    background-color: #0056b3; /* à adapter selon votre charte graphique */
}

.footer-categories {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-categories h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-tags li a {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-tags li a:hover {
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    color: #fff;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-copyright a {
    color: #ccc;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #022447 ; /* à adapter selon votre charte graphique */
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        flex-direction: column;
    }
    
    .hd-links {
        margin-top: 15px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
}

.about-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.about-text h3 {
    color: #022447 ; /* à adapter selon votre charte graphique */
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.highlight {
    text-align: center;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #022447 ; /* à adapter selon votre charte graphique */
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 0.9rem;
    color: #666;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.8rem;
}

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

.about-cta a {
        box-sizing: border-box;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1; /* Place l'image avant le texte sur mobile */
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .highlight-number {
        margin-bottom: 0;
    }
}


.trust-badges {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.trust-badges h2 {
    text-align: center;
    margin-bottom: 15px;
}

.trust-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.city-name {
    color: #022447 ; /* à adapter selon votre charte graphique */
    font-weight: 600;
}

.badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.badge-icon {
    min-width: 80px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-icon i {
    font-size: 3rem;
    color: #022447 ; /* à adapter selon votre charte graphique */
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon i {
    transform: scale(1.1);
}

.badge-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.badge-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Animation au survol */
.badge-icon img {
    transition: transform 0.3s ease;
}

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

/* Version responsive */
@media (max-width: 768px) {
    .badges-container {
        grid-template-columns: 1fr;
    }
    
    .badge-item {
        padding: 20px;
    }
}

.cta-section {
    padding: 80px 0;
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    background-image: linear-gradient(135deg, #022447 , #0056b3); /* à adapter selon votre charte graphique */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/city-map.png'); /* Image en filigrane d'une carte de la ville */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.city-name {
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.cta-highlight i {
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn i {
    margin-right: 10px;
}

.btn-primary {
    background-color: #022447 ;
    color: white; /* à adapter selon votre charte graphique */
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #022447 ;
    color: #022447 ;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-info {
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-info a {
    color: #fff;
    text-decoration: underline;
}

/* Animation pour attirer l'attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Version responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}


/* Page contact */

.contact-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    margin-bottom: 15px;
    color: #333;
}

.city-name {
    color: #022447 ; /* à adapter selon votre charte graphique */
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Styles du formulaire */
.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #022447 ; /* à adapter selon votre charte graphique */
    outline: none;
}

.form-consent {
    display: flex;
    align-items: flex-start;
}

.form-consent input {
    width: auto;
    margin-top: 5px;
    margin-right: 10px;
}

.form-consent label {
    font-size: 0.9rem;
    font-weight: 400;
}

.form-cta {
    margin-top: 25px;
}

.btn-primary {
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #0056b3; /* à adapter selon votre charte graphique */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Styles des informations de contact */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.contact-card h2 {
    color: #333;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.method-icon {
    font-size: 1.5rem;
    color: #022447 ; /* à adapter selon votre charte graphique */
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.method-details h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
}

.method-details p {
    margin: 0;
    color: #555;
}

.method-details small {
    font-size: 0.8rem;
    color: #888;
}

.method-details a {
    color: #022447 ; /* à adapter selon votre charte graphique */
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: #0056b3; /* à adapter selon votre charte graphique */
}

.contact-hours {
    margin-top: 30px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

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

.google-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: #333;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.btn-review i {
    color: #FBBC05; /* Couleur étoile Google */
}

.btn-review:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #022447 ; /* à adapter selon votre charte graphique */
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Mobile */
    header {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .logo-container {
        max-width: 140px;
        flex-shrink: 0;
    }

    .hd-logo {
        padding-left: 0;
    }

    /* Show Hamburger Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Navigation */
    .hd-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 0 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 10;
        overflow-y: auto;
    }

    .hd-links.active {
        left: 0;
    }

    .hd-links a {
        width: 100%;
        padding: 15px 30px;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .hd-links a:hover {
        background: #f9f9f9;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 100px 20px 40px;
    }

    h1 {
        font-size: 1.8rem;
    }

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

    .hero-location {
        font-size: 1.2rem;
    }

    /* Hero CTA Buttons Mobile */
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1,
    .hero-content h2 {
        max-width: 90%;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta .btn {
        width: 90%;
        max-width: 90%;
        padding: 15px 20px;
        font-size: 0.95rem;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    /* General Buttons Mobile */
    .btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 0.95rem;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .contact-page {
        padding: 60px 20px;
    }

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

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

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}