* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: linear-gradient(135deg, #F5EBE0 0%, #E8D5C4 50%, #D4A574 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Animation douce pour la colombe */
@keyframes floatDove {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.dove-icon {
    display: inline-block;
    font-size: 32px;
    margin-left: 15px;
    animation: floatDove 3s ease-in-out infinite;
    vertical-align: middle;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: #C19A6B;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C19A6B, #D4A574);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.availability {
    background: #E91E63;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* Bouton téléphone urgence */
.emergency-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-badge {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    position: relative;
    white-space: nowrap;
}

.emergency-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 3px 12px rgba(220, 38, 38, 0.6);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.phone-button {
    background: linear-gradient(135deg, #C19A6B 0%, #D4A574 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(193, 154, 107, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4);
}

.phone-icon {
    font-size: 16px;
    animation: ring 3s ease-in-out infinite;
}

@keyframes ring {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }
    92%, 96% {
        transform: rotate(-12deg);
    }
    94%, 98% {
        transform: rotate(12deg);
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

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

    .header {
        position: sticky;
        top: 0;
    }

    .header-content {
        gap: 15px;
    }

    .emergency-phone {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .phone-button {
        font-size: 16px;
        padding: 10px 20px;
        justify-content: center;
        width: 100%;
    }

    .emergency-badge {
        font-size: 8px;
        padding: 3px 10px;
    }

    .phone-icon {
        font-size: 18px;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        order: 2;
    }
}

/* Hero Section - Pleine Largeur avec dégradé terre */
.hero {
    background: linear-gradient(135deg,
                rgba(212, 165, 116, 0.15) 0%,
                rgba(166, 123, 91, 0.1) 50%,
                rgba(193, 154, 107, 0.15) 100%);
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anges qui volent - Effet amélioré et visible */
.hero::before {
    content: '🕊️ 🕊️ 🕊️';
    position: absolute;
    top: 15%;
    left: -50px;
    width: 100%;
    font-size: 50px;
    opacity: 0.08;
    pointer-events: none;
    letter-spacing: 150px;
    animation: floatingAngels 35s ease-in-out infinite;
    z-index: 0;
    filter: blur(1px);
}

.hero::after {
    content: '🕊️ 🕊️ 🕊️';
    position: absolute;
    bottom: 15%;
    right: -50px;
    font-size: 60px;
    opacity: 0.09;
    pointer-events: none;
    letter-spacing: 140px;
    animation: floatingAngels2 30s ease-in-out infinite reverse;
    z-index: 0;
    filter: blur(1px);
}

@keyframes floatingAngels {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    20% {
        transform: translateX(40px) translateY(-30px) rotate(3deg);
    }
    40% {
        transform: translateX(-30px) translateY(-15px) rotate(-2deg);
    }
    60% {
        transform: translateX(25px) translateY(-40px) rotate(2deg);
    }
    80% {
        transform: translateX(-15px) translateY(-25px) rotate(-3deg);
    }
}

@keyframes floatingAngels2 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-35px) translateY(20px) rotate(4deg);
    }
    50% {
        transform: translateX(30px) translateY(-30px) rotate(-3deg);
    }
    75% {
        transform: translateX(-20px) translateY(15px) rotate(2deg);
    }
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.city-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    animation: fadeInDown 0.8s ease-out;
}

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

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(93, 78, 55, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

.main-title .highlight {
    color: #A67B5B;
    display: block;
    font-size: 0.5em;
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.subtitle {
    font-size: 18px;
    color: #6D5D4B;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
}

/* Décoration élégante */
.elegant-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #A67B5B, transparent);
    margin: 25px 0;
    animation: expandWidth 1s ease-out 0.6s both;
    position: relative;
}

.elegant-divider::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: -8px;
    color: #A67B5B;
    font-size: 16px;
    opacity: 0.6;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

/* Form Section - À droite */
.form-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(93, 78, 55, 0.15),
        0 0 0 1px rgba(166, 123, 91, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideInFromRight 0.8s ease-out 0.3s both;
    position: relative;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D4A574, #C19A6B, #A67B5B);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}


.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #A67B5B;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

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

label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #E91E63;
}

/* Radio buttons visuels pour le type de devis */
.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid #D4C4B0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 110px;
}

.service-label .icon {
    font-size: 32px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.service-label .label-text {
    font-size: 14px;
    font-weight: 600;
    color: #5D4E37;
}

.service-option input[type="radio"]:checked + .service-label {
    border-color: #C19A6B;
    background: linear-gradient(145deg, rgba(193, 154, 107, 0.15), rgba(166, 123, 91, 0.1));
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.2);
}

.service-option input[type="radio"]:checked + .service-label .icon {
    transform: scale(1.15);
}

.service-label:hover {
    border-color: #C19A6B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(193, 154, 107, 0.15);
}

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

    .service-label {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px;
        min-height: auto;
    }

    .service-label .icon {
        font-size: 28px;
        margin-bottom: 0;
        margin-right: 12px;
    }
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #D4C4B0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: #5D4E37;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #A67B5B;
    box-shadow: 0 0 0 4px rgba(166, 123, 91, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #C19A6B, #A67B5B);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(166, 123, 91, 0.25);
    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: left 0.5s ease;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #A67B5B, #8D6E4F);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(166, 123, 91, 0.35);
}

.form-note {
    text-align: center;
    color: #A67B5B;
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}

.btn-secondary {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    color: #6D5D4B;
    border: 2px solid #C19A6B;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: #C19A6B;
    color: white;
    border-color: #A67B5B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(193, 154, 107, 0.3);
}

/* Location */
.location {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    text-align: left;
    color: #6D5D4B;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border: 1px solid rgba(193, 154, 107, 0.3);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.15);
    animation: fadeInUp 0.8s ease-out 0.7s both;
    margin-bottom: 25px;
}

/* Carousel d'avis Google */
.reviews-carousel-container {
    width: 100%;
    max-width: 600px;
    margin-top: 25px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviews-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-logo {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6D5D4B;
}

.overall-rating .stars {
    color: #FBBC04;
    font-size: 14px;
    letter-spacing: 1px;
}

.overall-rating .score {
    font-weight: 700;
    color: #5D4E37;
}

/* Rotateur d'avis */
.reviews-rotator {
    position: relative;
    width: 100%;
    min-height: 140px;
}

.review-card {
    width: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 235, 224, 0.8));
    backdrop-filter: blur(15px);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(193, 154, 107, 0.25);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fadeInOut 15s ease-in-out infinite;
}

.review-card:nth-child(1) {
    animation-delay: 0s;
}

.review-card:nth-child(2) {
    animation-delay: 5s;
}

.review-card:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(10px);
    }
    6.67%, 26.67% {
        opacity: 1;
        transform: translateY(0);
    }
    33.33% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.review-stars {
    color: #FBBC04;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #5D4E37;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    font-size: 12px;
    font-weight: 600;
    color: #A67B5B;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-icon {
    color: #34A853;
    font-size: 12px;
}

/* Animation pour les sections */
@keyframes fadeInUpSection {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Agence Pornic */
.agency-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 235, 224, 0.95));
    position: relative;
    z-index: 10;
    border-top: 2px solid rgba(193, 154, 107, 0.2);
    border-bottom: 2px solid rgba(193, 154, 107, 0.2);
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 0.2s forwards;
}

.agency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.agency-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.25);
}

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

.agency-content {
    text-align: center;
}

.agency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.agency-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 20px;
    line-height: 1.3;
}

.agency-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6D5D4B;
    margin-bottom: 30px;
}

.agency-text strong {
    color: #5D4E37;
    font-weight: 600;
}

/* Le style .emergency-phone est déjà défini globalement et sera utilisé */

@media (min-width: 768px) {
    .agency-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .agency-content {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .agency-section {
        padding: 50px 20px;
    }

    .agency-title {
        font-size: 32px;
    }

    .agency-text {
        font-size: 16px;
    }

    /* Le responsive .emergency-phone est déjà défini globalement */
}

/* Section Mot des Dirigeants */
.ceo-message-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(245, 235, 224, 0.6), rgba(255, 255, 255, 0.95));
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 0.4s forwards;
}

.ceo-message-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.ceo-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.25);
}

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

.ceo-content {
    text-align: center;
    position: relative;
}

.ceo-quote-icon {
    font-size: 80px;
    color: rgba(193, 154, 107, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.ceo-message-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ceo-message-text {
    font-size: 22px;
    line-height: 1.8;
    color: #5D4E37;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 35px;
    position: relative;
    padding: 0 20px;
}

.ceo-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.ceo-names {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #5D4E37;
    letter-spacing: 0.5px;
}

.ceo-title-text {
    font-size: 15px;
    color: #A67B5B;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ceo-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C19A6B, #A67B5B);
    border-radius: 2px;
    margin-top: 5px;
}

@media (min-width: 768px) {
    .ceo-message-container {
        grid-template-columns: 1fr 1fr;
        gap: 70px;
    }

    .ceo-content {
        text-align: left;
    }

    .ceo-signature {
        align-items: flex-start;
    }

    .ceo-message-text {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .ceo-message-section {
        padding: 50px 20px;
    }

    .ceo-message-title {
        font-size: 22px;
    }

    .ceo-message-text {
        font-size: 18px;
        padding: 0 10px;
    }

    .ceo-names {
        font-size: 20px;
    }

    .ceo-quote-icon {
        font-size: 60px;
    }
}

/* Section Réassurance après hero */
.reassurance-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.03), rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    padding: 60px 40px;
    margin: 0;
    border-top: 2px solid rgba(26, 26, 26, 0.08);
    border-bottom: 2px solid rgba(26, 26, 26, 0.08);
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 0.3s forwards;
}

.reassurance-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.15), rgba(166, 123, 91, 0.1));
    border-radius: 50px;
    border: 2px solid rgba(193, 154, 107, 0.3);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.15);
}

.stars {
    font-size: 24px;
    letter-spacing: 3px;
}

.trust-text {
    font-size: 18px;
    font-weight: 600;
    color: #5D4E37;
    font-family: 'Playfair Display', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(193, 154, 107, 0.25);
    box-shadow: 0 4px 12px rgba(166, 123, 91, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(166, 123, 91, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: #E91E63;
    font-weight: bold;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #5D4E37;
    text-align: left;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .reassurance-section {
        padding: 40px 20px;
    }

    .trust-badge {
        flex-direction: column;
        padding: 20px 30px;
        gap: 10px;
    }

    .stars {
        font-size: 20px;
    }

    .trust-text {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 20px;
    }
}

/* Section Empathique */
.empathy-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02), #F5EBE0 0%, #E8D5C4 100%);
    position: relative;
    z-index: 10;
    box-shadow: 0 -2px 20px rgba(26, 26, 26, 0.05), 0 2px 20px rgba(26, 26, 26, 0.05);
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 0.5s forwards;
}

.empathy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.empathy-content {
    text-align: center;
}

.empathy-badge {
    display: inline-block;
    background: rgba(166, 123, 91, 0.15);
    color: #A67B5B;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.empathy-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 20px;
    line-height: 1.3;
}

.empathy-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6D5D4B;
    max-width: 800px;
    margin: 0 auto 30px;
}

.empathy-text strong {
    color: #5D4E37;
    font-weight: 600;
}

.empathy-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.25);
    aspect-ratio: 16 / 10;
}

.empathy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.empathy-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 78, 55, 0.15), rgba(166, 123, 91, 0.1));
}

@media (min-width: 768px) {
    .empathy-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .empathy-content {
        text-align: left;
    }

    .empathy-text {
        margin: 0 0 30px 0;
    }
}

@media (max-width: 767px) {
    .empathy-section {
        padding: 50px 20px;
    }

    .empathy-title {
        font-size: 32px;
    }

    .empathy-text {
        font-size: 16px;
    }

    .empathy-image-wrapper {
        aspect-ratio: 4 / 3;
    }
}

/* Section Processus Simplifié */
.process-section {
    padding: 100px 40px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(245, 240, 235, 0.5) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(193, 154, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(166, 123, 91, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.2), rgba(166, 123, 91, 0.15));
    color: #8D6E4F;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(193, 154, 107, 0.3);
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #2D2416;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Timeline horizontale */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

/* Ligne de connexion entre les étapes - Version améliorée */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(193, 154, 107, 0.3) 10%,
        rgba(193, 154, 107, 0.6) 50%,
        rgba(193, 154, 107, 0.3) 90%,
        transparent 100%
    );
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 30px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(193, 154, 107, 0.1);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(166, 123, 91, 0.15);
    border-color: rgba(193, 154, 107, 0.3);
}

.step-number {
    width: 140px;
    height: 140px;
    margin: -60px auto 25px;
    background: linear-gradient(145deg, #FFFFFF, #F5F0EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 4px solid #C19A6B;
    box-shadow:
        0 10px 30px rgba(166, 123, 91, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-step:hover .step-number {
    transform: scale(1.08) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(166, 123, 91, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
    border-color: #A67B5B;
}

.step-emoji {
    font-size: 40px;
    animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2D2416;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 14px;
    color: #6D5D4B;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        width: 120px;
        height: 120px;
        margin: -50px auto 20px;
    }
}

@media (max-width: 767px) {
    .process-section {
        padding: 60px 20px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-step {
        padding: 25px 15px;
    }

    .step-number {
        width: 100px;
        height: 100px;
        margin: -40px auto 20px;
    }

    .step-emoji {
        font-size: 36px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
    }
}

/* Section Services */
.services-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    position: relative;
    z-index: 10;
}

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

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

.services-badge {
    display: inline-block;
    background: rgba(166, 123, 91, 0.15);
    color: #A67B5B;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 18px;
    color: #6D5D4B;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(193, 154, 107, 0.25);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(166, 123, 91, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
}

.service-icon {
    font-size: 48px;
    line-height: 1;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #5D4E37;
    margin: 0;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6D5D4B;
    flex-grow: 1;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #C19A6B, #A67B5B);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(166, 123, 91, 0.2);
}

.service-cta:hover {
    background: linear-gradient(135deg, #A67B5B, #8D6E4F);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(166, 123, 91, 0.3);
    color: white;
    text-decoration: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #5D4E37;
    margin: 0;
}

.modal-subtitle {
    font-size: 14px;
    color: #A67B5B;
    margin-top: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #6D5D4B;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(193, 154, 107, 0.15);
    color: #5D4E37;
}

.modal-body {
    padding: 30px;
}

@media (max-width: 767px) {
    .services-section {
        padding: 50px 20px;
    }

    .services-title {
        font-size: 32px;
    }

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

    .modal-content {
        max-height: 85vh;
    }

    .modal-header {
        padding: 25px 20px 15px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* Section Témoignages */
.testimonials-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02), #F5EBE0 0%, #E8D5C4 100%);
    position: relative;
    z-index: 10;
    box-shadow: 0 -2px 20px rgba(26, 26, 26, 0.05), 0 2px 20px rgba(26, 26, 26, 0.05);
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 0.9s forwards;
}

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

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

.testimonials-badge {
    display: inline-block;
    background: rgba(166, 123, 91, 0.15);
    color: #A67B5B;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 20px;
}

/* Badge Google avec note */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(193, 154, 107, 0.3);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.15);
    margin-bottom: 40px;
}

.google-badge-logo {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-badge-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-badge-stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 1px;
}

.google-badge-score {
    font-size: 18px;
    font-weight: 700;
    color: #5D4E37;
}

/* Grille de témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(193, 154, 107, 0.25);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: rgba(193, 154, 107, 0.15);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(166, 123, 91, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
}

.testimonial-stars {
    color: #FBBC04;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5D4E37;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #A67B5B;
}

.testimonial-location {
    font-size: 14px;
    font-weight: 500;
    color: #6D5D4B;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 50px 20px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .google-badge {
        flex-direction: column;
        gap: 10px;
        padding: 15px 25px;
    }
}

/* Section Engagements / Différenciateurs */
.commitments-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.03), rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    position: relative;
    z-index: 10;
    border-top: 2px solid rgba(26, 26, 26, 0.08);
    border-bottom: 2px solid rgba(26, 26, 26, 0.08);
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 1.1s forwards;
}

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

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

.commitments-badge {
    display: inline-block;
    background: rgba(166, 123, 91, 0.15);
    color: #A67B5B;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.commitments-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 15px;
}

.commitments-subtitle {
    font-size: 18px;
    color: #6D5D4B;
    max-width: 700px;
    margin: 0 auto;
}

/* Grille d'engagements */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.commitment-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 35px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 2px solid rgba(193, 154, 107, 0.25);
    box-shadow: 0 8px 30px rgba(166, 123, 91, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E91E63, #C2185B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(166, 123, 91, 0.2);
    border-color: rgba(233, 30, 99, 0.4);
}

.commitment-card:hover::before {
    opacity: 1;
}

.commitment-icon {
    font-size: 48px;
    color: #E91E63;
    font-weight: bold;
    line-height: 1;
}

.commitment-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #5D4E37;
    margin: 0;
    line-height: 1.3;
}

.commitment-description {
    font-size: 15px;
    color: #6D5D4B;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .commitments-section {
        padding: 50px 20px;
    }

    .commitments-title {
        font-size: 32px;
    }

    .commitments-subtitle {
        font-size: 16px;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-card {
        padding: 30px 25px;
    }

    .commitment-icon {
        font-size: 42px;
    }

    .commitment-title {
        font-size: 18px;
    }

    .commitment-description {
        font-size: 14px;
    }
}

/* Section FAQ */
.faq-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02), #F5EBE0 0%, #E8D5C4 100%);
    position: relative;
    z-index: 10;
    box-shadow: 0 -2px 20px rgba(26, 26, 26, 0.05), 0 2px 20px rgba(26, 26, 26, 0.05);
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 1.3s forwards;
}

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

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

.faq-badge {
    display: inline-block;
    background: rgba(166, 123, 91, 0.15);
    color: #A67B5B;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 18px;
    color: #6D5D4B;
    max-width: 700px;
    margin: 0 auto;
}

/* Liste des questions */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(193, 154, 107, 0.25);
    box-shadow: 0 4px 16px rgba(166, 123, 91, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(166, 123, 91, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
}

.faq-question {
    font-size: 19px;
    font-weight: 700;
    color: #5D4E37;
    margin-bottom: 12px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-icon {
    color: #C19A6B;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #6D5D4B;
    margin-left: 32px;
}

.faq-answer strong {
    color: #5D4E37;
    font-weight: 600;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 17px;
    }

    .faq-answer {
        font-size: 15px;
        margin-left: 28px;
    }
}

/* Section Final CTA */
.final-cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.03), rgba(255, 255, 255, 0.95), rgba(245, 235, 224, 0.9));
    position: relative;
    z-index: 10;
    border-top: 2px solid rgba(26, 26, 26, 0.08);
    border-bottom: 2px solid rgba(26, 26, 26, 0.08);
    opacity: 0;
    animation: fadeInUpSection 0.8s ease-out 1.5s forwards;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 35px;
    line-height: 1.3;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.final-cta-phone {
    width: 100%;
    background: linear-gradient(135deg, #C19A6B, #A67B5B);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(166, 123, 91, 0.3);
}

.final-cta-phone:hover {
    background: linear-gradient(135deg, #A67B5B, #8D6E4F);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(166, 123, 91, 0.4);
}

.final-cta-button {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    color: #5D4E37;
    border: 2px solid #C19A6B;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.final-cta-button:hover {
    background: #C19A6B;
    color: white;
    border-color: #A67B5B;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.3);
}

.final-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #A67B5B;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .final-cta-buttons {
        flex-direction: row;
    }

    .final-cta-phone,
    .final-cta-button {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .final-cta-section {
        padding: 50px 20px;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .final-cta-phone {
        font-size: 19px;
        padding: 18px 32px;
    }

    .final-cta-button {
        font-size: 17px;
        padding: 16px 32px;
    }

    .final-cta-guarantee {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
}

/* Footer - Styles Tailwind intégrés */
.bg-secondary {
    background: linear-gradient(135deg, rgba(245, 235, 224, 0.4), rgba(255, 255, 255, 0.95));
    overflow-x: hidden;
    max-width: 100%;
}

/* Empêcher tout débordement horizontal */
section, footer, header, main {
    max-width: 100%;
    overflow-x: hidden;
}

/* Assurer que tous les grids restent dans la largeur */
[class*="grid"], [style*="display: grid"] {
    max-width: 100%;
    box-sizing: border-box;
}

/* Contraintes Tailwind */
[class*="max-w-"] {
    max-width: 100% !important;
}

[class*="px-"], [class*="mx-"] {
    box-sizing: border-box !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-slate-600 {
    color: rgb(71 85 105);
}

.text-slate-700 {
    color: rgb(51 65 85);
}

.text-slate-900 {
    color: rgb(15 23 42);
}

.hover\:text-slate-900:hover {
    color: rgb(15 23 42);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #059669;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.error-message {
    color: #E91E63;
    font-size: 14px;
    margin-top: 5px;
}

/* Desktop Layout - 50/50 */
@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content:not(.home-hero) {
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        padding: 80px 60px;
        align-items: start;
    }

    .main-title {
        font-size: 56px;
    }

    .subtitle {
        font-size: 19px;
    }

    .form-container {
        padding: 45px;
        position: sticky;
        top: 40px;
    }

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

    .form-group.full-width {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1200px) {
    .main-title {
        font-size: 62px;
    }

    .subtitle {
        font-size: 20px;
    }
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .logo img {
        height: 50px;
    }

    .availability {
        font-size: 13px;
        padding: 6px 15px;
    }

    .hero {
        background-attachment: scroll;
        min-height: auto;
        padding: 40px 0;
    }

    .hero::after {
        font-size: 40px;
        top: 10px;
        right: 15px;
    }

    .hero-content {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }

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

    .form-container {
        padding: 35px 25px;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
        max-width: 100%;
    }

    .city-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .location {
        font-size: 13px;
        padding: 10px 20px;
        justify-content: center;
    }

    .reviews-carousel-container {
        max-width: 100%;
    }

    .reviews-rotator {
        min-height: 160px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .elegant-divider {
        margin: 20px auto;
    }

    .elegant-divider::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: fadeInUp 0.6s ease-out;
}
/* Grille des agences */
.agencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .agencies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .agencies-grid { grid-template-columns: 1fr; }
}
