:root {
    --primary-color: #967E66;
    --secondary-color: #EAE2D7;
    --accent-color: #C9A88F;
    --dark-brown: #6D5D52;
    --light-beige: #F5F1ED;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #6C757D;
    --shadow-sm: 0 2px 10px rgba(150, 126, 102, 0.1);
    --shadow-md: 0 6px 20px rgba(150, 126, 102, 0.15);
    --shadow-lg: 0 12px 30px rgba(150, 126, 102, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Font families - Change these to switch font options */
    /* Option 1: Playfair Display + Inter (Currently Active) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Option 2: Cormorant Garamond + Work Sans
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Work Sans', sans-serif;
    */

    /* Option 3: Libre Baskerville + Open Sans
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Open Sans', sans-serif;
    */

    /* Option 4: Lora + Raleway
    --font-heading: 'Lora', serif;
    --font-body: 'Raleway', sans-serif;
    */

    /* Original: Montserrat
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    */
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--text-dark);
    scroll-behavior: smooth;
    line-height: 1.7;
}

/* Apply heading font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.hero-banner {
    width: 100%;
    min-height: 600px;
    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-cc-conciergerie.webp');
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(150, 126, 102, 0.75) 0%, rgba(109, 93, 82, 0.65) 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: 10;
   background: rgba(255, 255, 255, 0.98);
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   box-sizing: border-box;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    z-index: 11;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.mobile-menu-toggle:hover {
    color: #967E66;
}

.mobile-menu-toggle.active {
    color: #967E66;
}

.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: 8px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.hd-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.hd-links a:hover {
    color: var(--primary-color);
    background: var(--light-beige);
}

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

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

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero title with Inter font for better & display */
.hero-title {
    font-family: var(--font-body);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    font-weight: 400;
}

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

.btn {
    padding: 15px 35px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-sizing: border-box;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    border: 2px solid white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.mont {
    font-family: var(--font-body);
}

/* Button text uses body font for better readability */
.btn {
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

/* Adjust body text for better readability with new fonts */
p, li, a {
    font-family: var(--font-body);
}

/* Fine-tune heading letter spacing for elegance */
h1 {
    letter-spacing: -0.5px;
}

h2, h3 {
    letter-spacing: -0.3px;
}

.hero-location {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    font-weight: 400;
}

/* Hero social icons */
.hero-social {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    display: flex;
    gap: 15px;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light-beige) 0%, var(--white) 100%);
}

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

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(150, 126, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.service-link::after {
    content: '→';
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--dark-brown);
}

.service-link:hover::after {
    transform: translateX(5px);
}

.location {
    padding: 100px 0;
    background: var(--white);
}

.location h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.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: linear-gradient(135deg, var(--light-beige), var(--white));
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(150, 126, 102, 0.1);
    transition: var(--transition);
}

.address-block:hover, .hours-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.address-block h3, .hours-block h3 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

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

address a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

address a:hover {
    color: var(--dark-brown);
    text-decoration: underline;
}

.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: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--secondary-color);
    height: 450px;
}

.map-container iframe {
    height: 100%;
}

.directions {
    margin-top: 40px;
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-beige));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

.service-areas {
    margin-top: 50px;
    padding: 40px;
    background: var(--light-beige);
    border-radius: var(--radius-lg);
}

.service-areas h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-left: 3px solid var(--primary-color);
}

.city-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.city-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

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

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

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.testimonials-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.city-name {
    color: var(--primary-color);
    font-weight: 600;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 25px;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-beige));
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.rating-message {
    max-width: 600px;
}

.rating-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.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: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 35px;
    transition: var(--transition);
    border: 1px solid rgba(150, 126, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.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 #967E66; /* à 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: 100px 0;
    background: var(--secondary-color);
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.faq-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(150, 126, 102, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    position: relative;
    padding: 25px 60px 25px 25px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-question:hover {
    background: var(--light-beige);
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-beige);
    border-radius: 50%;
}

details[open] .faq-question::after {
    content: '−';
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) rotate(180deg);
}

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

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

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

/* 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;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: var(--light-beige);
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.legal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-beige);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--dark-brown);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 20px 60px;
    }

    .legal-content {
        padding: 30px 20px;
    }
}

.footer {
    background: linear-gradient(to bottom, var(--dark-brown) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer h3 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
    font-weight: 600;
}

.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: var(--white);
    padding-left: 5px;
}

.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: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.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: #967E66; /* à adapter selon votre charte graphique */
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.leave-review:hover {
    background-color: #EAE2D7; /* à 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: #967E66; /* à adapter selon votre charte graphique */
    color: #fff;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: black;
    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: #967E66; /* à 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 20px;
        flex-wrap: wrap;
    }

    .container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hd-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .hd-links a {
        padding: 18px 15px;
        border-bottom: 1px solid var(--secondary-color);
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

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

    .hd-links a:hover {
        background: var(--light-beige);
        padding-left: 25px;
    }

    .hero-banner {
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-content {
        padding-top: 80px;
    }

    h1 {
        font-size: 2rem;
    }

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

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

    .btn {
        width: 100%;
        padding: 15px 25px;
    }

    .services, .about-preview, .testimonials-preview, .faq-preview, .trust-badges, .location, .cta-section {
        padding: 60px 0;
    }

    .services h2, .testimonials-preview h2, .faq-preview h2, .trust-badges h2, .location h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px;
    }
}

.about-preview {
    padding: 100px 0;
    background: var(--secondary-color);
}

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

.about-text h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

.about-text h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.5;
}

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

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.highlight {
    text-align: center;
    flex: 1;
    padding: 15px;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-brown));
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

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

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

/* 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: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--secondary-color);
}

.trust-badges h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.trust-badges h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.trust-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.badge-item {
    display: flex;
    align-items: center;
    padding: 35px;
    background: linear-gradient(135deg, var(--light-beige), var(--white));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(150, 126, 102, 0.1);
}

.badge-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-color), var(--light-beige));
}

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

.badge-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.badge-item:hover .badge-icon i {
    transform: scale(1.15) rotate(5deg);
    color: var(--dark-brown);
}

.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: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-brown) 100%);
    color: var(--white);
    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');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-section h2 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-section .city-name {
    font-weight: 700;
    color: var(--white);
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    opacity: 0.95;
}

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

.cta-highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.cta-highlight:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.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;
    box-sizing: border-box;
}

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

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 18px 40px;
}

.cta-section .btn-primary:hover {
    background-color: var(--light-beige);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.1rem;
    padding: 18px 40px;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.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.02); }
    100% { transform: scale(1); }
}

.cta-section .btn-primary {
    animation: pulse 3s infinite ease-in-out;
}

.cta-section .btn-primary:hover {
    animation: none;
}

/* 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: #EAE2D7;
}

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

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

.city-name {
    color: #967E66; /* à 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: #967E66; /* à 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: #967E66; /* à 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;
    box-sizing: border-box;
}

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

.method-details a:hover {
    color: #EAE2D7; /* à 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: #967E66; /* à 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;
    }
}