:root {
    --primary-dark: #3E5249;
    --primary-sage: #8DA399;
    --accent-gold: #C5A059;
    --white: #ffffff;
    --off-white: #FAFAF8;
    --text-dark: #2D2D2D;
    --text-medium: #555555;
    --text-light: #888888;
    --border-light: rgba(62, 82, 73, 0.1);
    --shadow-soft: 0 4px 20px rgba(62, 82, 73, 0.08);
    --shadow-medium: 0 8px 30px rgba(62, 82, 73, 0.12);
    --shadow-hover: 0 12px 40px rgba(62, 82, 73, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

.hero-banner {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    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/hero-banner-heisei.webp');
    background-attachment: fixed;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 82, 73, 0.85) 0%, rgba(62, 82, 73, 0.6) 100%);
    z-index: 1;
}

header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 100;
    background: transparent;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 40px;
}

header.scrolled .hd-links a {
    color: var(--primary-dark);
}

header.scrolled .hd-links a:hover {
    color: var(--accent-gold);
}

header.scrolled .mobile-menu-toggle {
    color: var(--primary-dark);
}

/* Header style for pages without hero banner (all pages except index) */
header.header-light {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

header.header-light .hd-links a {
    color: var(--primary-dark);
}

header.header-light .hd-links a:hover {
    color: var(--accent-gold);
}

header.header-light .mobile-menu-toggle {
    color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.mobile-menu-toggle:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle.active {
    color: var(--accent-gold);
}

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

.hd-logo {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.hd-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hd-links a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-smooth);
}

.hd-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.hd-links a:hover::after {
    transform: scaleX(1);
}

.hd-links a:hover {
    color: var(--accent-gold);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 40px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 16px 40px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-sizing: border-box;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-smooth);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #b8923f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

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

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

.services {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.services h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition-smooth);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.service-card:nth-child(3n) {
    border-right: none;
}

.service-card:nth-child(n+4) {
    border-bottom: none;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-sage));
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: var(--off-white);
}

.service-card:hover::before {
    width: 60px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-sage);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-sage);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.location {
    padding: 100px 0;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 163, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.location h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.address-block, .hours-block {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.address-block::before, .hours-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--primary-sage));
}

.address-block h3, .hours-block h3 {
    margin-top: 0;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

address p {
    margin: 8px 0;
}

address a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

address a:hover {
    color: var(--accent-gold);
}

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

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.business-hours li span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.service-area-list {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-area-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-sage), var(--accent-gold));
}

.service-area-list h3 {
    margin-top: 0;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.areas-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.areas-grid li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.areas-grid li i {
    color: var(--primary-sage);
    font-size: 0.8rem;
}

.area-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.directions {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.directions h3 {
    margin-top: 0;
    color: var(--white);
}

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

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

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

    .map-container iframe {
        height: 350px;
    }
}

.testimonials-preview {
    padding: 100px 0;
    background-color: var(--off-white);
    position: relative;
}

.testimonials-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.city-name {
    color: var(--accent-gold);
    font-weight: 500;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 25px;
    padding: 25px 40px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.google-rating::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-sage));
}

.rating-stars {
    color: #FBBC05;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

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

.rating-number {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2px;
    color: var(--primary-dark);
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* No reviews message */
.no-reviews-message {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.no-reviews-icon {
    margin-bottom: 25px;
}

.no-reviews-icon i {
    font-size: 3rem;
    color: var(--primary-sage);
    opacity: 0.6;
}

.no-reviews-message p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.no-reviews-message .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 35px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-sage);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-sage);
}

.client-info {
    flex: 1;
}

.client-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.client-stars {
    color: #FBBC05;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-source {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-source span {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.testimonial-cta .btn-secondary {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

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

/* Version responsive */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .google-rating {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

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

    .testimonial-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

.faq-preview {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.faq-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.faq-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-medium);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background-color: transparent;
    margin-bottom: 0;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    position: relative;
    padding: 25px 60px 25px 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 1.5px solid var(--primary-sage);
    border-bottom: 1.5px solid var(--primary-sage);
    transform: translateY(-70%) rotate(45deg);
    transition: var(--transition-smooth);
}

details[open] .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

details[open] .faq-question {
    color: var(--accent-gold);
}

.faq-answer {
    padding: 0 40px 30px 0;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
}

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

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

/* Version responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 50px 20px 0;
        font-size: 1rem;
    }

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

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer h3 {
    color: var(--accent-gold);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 25px;
}

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

.footer-nap p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-nap a, .footer-quick-links a, .footer-service-area a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-nap a:hover, .footer-quick-links a:hover, .footer-service-area a:hover {
    color: var(--accent-gold);
}

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

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

.footer-quick-links a, .service-localities li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.other-agencies {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.other-agencies h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.other-agencies a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.other-agencies a:hover {
    color: var(--white);
}

.other-agencies a i {
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.gmb-review {
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gmb-review-link {
    display: block;
    text-decoration: none;
    color: var(--white);
    text-align: center;
}

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

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

.rating {
    font-weight: 300;
    font-size: 1.2rem;
}

.review-count {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.leave-review {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.leave-review:hover {
    background-color: #b8923f;
}

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

.footer-categories h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

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

.footer-tags li a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-tags li a:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-copyright a:hover {
    color: var(--accent-gold);
}

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

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

    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(3n) {
        border-right: 1px solid var(--border-light);
    }

    .service-card:nth-child(2n) {
        border-right: none;
    }

    .service-card:nth-child(n+4) {
        border-bottom: 1px solid var(--border-light);
    }

    .service-card:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-wrap: nowrap;
        background: rgba(255, 255, 255, 0.98);
    }

    header .hd-links a {
        color: var(--primary-dark);
    }

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

    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
        color: var(--primary-dark);
    }

    .hd-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 100;
        box-sizing: border-box;
    }

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

    .hd-links a {
        padding: 18px 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        text-align: left;
        font-size: 1rem;
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .hd-links a::after {
        display: none;
    }

    .hd-links a:hover {
        color: var(--accent-gold);
        padding-left: 10px;
    }

    .hero-banner {
        height: auto;
        min-height: auto;
        padding: 120px 20px 60px;
        box-sizing: border-box;
    }

    .hero-content {
        padding: 0 10px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 2.2rem;
    }

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

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

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        word-wrap: break-word;
        padding: 16px 20px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .service-card {
        border: 1px solid var(--border-light) !important;
        margin-bottom: 20px;
        padding: 35px 30px;
    }

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

    .services h2,
    .testimonials-preview h2,
    .faq-preview h2,
    .location h2,
    .trust-badges h2,
    .about-text h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-highlights {
        flex-direction: column;
        gap: 10px;
    }

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

.about-preview {
    padding: 100px 0;
    background-color: var(--off-white);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.about-text h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-text h3 {
    color: var(--accent-gold);
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.highlight {
    text-align: center;
}

.highlight-number {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.highlight-text {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 25px;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-badge .years {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.about-badge .text {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 5px;
}

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

.about-cta .btn-secondary {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

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

/* Responsive design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-highlights {
        flex-direction: column;
        gap: 25px;
    }

    .highlight {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 20px;
    }

    .highlight-number {
        margin-bottom: 0;
        min-width: 80px;
    }
}


.trust-badges {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.trust-badges h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.trust-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-medium);
    font-size: 1.05rem;
    font-weight: 300;
}

.badges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.badge-item {
    display: flex;
    align-items: flex-start;
    padding: 40px 35px;
    background-color: var(--white);
    transition: var(--transition-smooth);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.badge-item:nth-child(3n) {
    border-right: none;
}

.badge-item:nth-child(n+4) {
    border-bottom: none;
}

.badge-item:hover {
    background-color: var(--off-white);
}

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

.badge-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.badge-info h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Animation au survol */
.badge-icon img {
    transition: var(--transition-smooth);
}

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

/* Version responsive */
@media (max-width: 992px) {
    .badges-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .badge-item:nth-child(3n) {
        border-right: 1px solid var(--border-light);
    }

    .badge-item:nth-child(2n) {
        border-right: none;
    }

    .badge-item:nth-child(n+4) {
        border-bottom: 1px solid var(--border-light);
    }

    .badge-item:nth-child(n+5) {
        border-bottom: none;
    }
}

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

    .badge-item {
        padding: 30px 25px;
        border-right: none !important;
        border-bottom: 1px solid var(--border-light) !important;
    }

    .badge-item:last-child {
        border-bottom: none !important;
    }
}

.cta-section {
    padding: 100px 0;
    background-color: var(--off-white);
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.cta-section h2 {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-section .city-name {
    color: var(--accent-gold);
    font-weight: 500;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-medium);
    font-weight: 300;
    line-height: 1.7;
}

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

.cta-highlight {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 12px 25px;
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px solid var(--border-light);
    color: var(--primary-dark);
}

.cta-highlight i {
    margin-right: 12px;
    color: var(--accent-gold);
    font-size: 1rem;
}

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

.cta-section .btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: #b8923f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
}

.cta-section .btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    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: var(--accent-gold);
    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: #8DA399; /* à 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: #8DA399; /* à 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: #8DA399; /* à adapter selon votre charte graphique */
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn-primary:hover {
    background-color: #C5A059; /* à 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: #8DA399; /* à 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: #8DA399; /* à adapter selon votre charte graphique */
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: #C5A059; /* à 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;
    box-sizing: border-box;
}

.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: #8DA399; /* à adapter selon votre charte graphique */
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 60px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}