/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: #16a34a;
    color: white;
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-1px);
}

.btn-dark {
    background: #000;
    color: white;
}

.btn-dark:hover {
    background: #374151;
}

.btn-white {
    background: white;
    color: #16a34a;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-outline:hover {
    background: #16a34a;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Top Bar */
.top-bar {
    background: #16a34a;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 2.5rem;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 3rem;
    width: auto;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.logo-text p {
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-link {
    color: #16a34a;           /* Vert */
    text-decoration: none;    /* Retire le souligné */
    font-weight: 500;
    padding: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #15803d;           /* Vert foncé au survol */
    text-decoration: underline; /* Optionnel: souligné au survol */
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #16a34a;
}

.mobile-cta {
    margin: 1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ecfdf5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: block;
    color: #16a34a;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.hero-subtitle-dark {
    display: block;
    color: #111827;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.google-rating {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    max-width: 24rem;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-logo {
    background: #4285f4;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.stars {
    display: flex;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    color: #6b7280;
}

.promo-banner {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #fbbf24;
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom-left-radius: 0.5rem;
}

.promo-badge-small {
    position: absolute;
    top: 1.5rem;
    right: 0;
    background: #fbbf24;
    color: #000;
    padding: 0.125rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: 0.5rem;
}

.promo-banner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.promo-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-badge .icon {
    color: #16a34a;
    width: 1.5rem;
    height: 1.5rem;
}

.badge-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-prop {
    text-align: center;
}

.value-icon {
    background: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.value-prop h3 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.value-prop p {
    color: #6b7280;
    font-size: 0.875rem;
}

.postal-search {
    background: #000;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
}

.postal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.postal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.postal-input {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    color: #000;
    width: 100%;
    max-width: 16rem;
}

.postal-info {
    color: #22c55e;
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}

.trust-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.trust-card p {
    color: #374151;
    line-height: 1.75;
}

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

/* Testimonials Intro */
.testimonials-intro {
    padding: 4rem 0;
    background: #f9fafb;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.testimonials-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16a34a;
}

.section-divider {
    width: 4rem;
    height: 0.25rem;
    background: #16a34a;
    margin: 1.5rem auto 2rem;
}

.testimonials-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.75;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.google-icon {
    background: #4285f4;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.facebook-icon {
    background: #1877f2;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    font-weight: 700;
    color: #111827;
}

.testimonial-author p {
    color: #6b7280;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-stars {
    display: flex;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.services-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16a34a;
}

.services-description {
    max-width: 48rem;
    margin: 0 auto;
    color: #374151;
    font-size: 1.125rem;
}

.services-description p {
    margin-bottom: 1rem;
}

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

.service-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    group: hover;
}

.service-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
}

.service-overlay h4 {
    color: white;
    font-weight: 700;
}

.service-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ecfdf5 100%);
}

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.advantages-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.advantage-intro {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.advantage-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.advantage-intro p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.75;
}

.advantage-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advantage-option {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.advantage-option:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.advantage-emoji {
    font-size: 2.5rem;
}

.advantage-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.advantage-details p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.advantage-method {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.advantage-conditions {
    background: #ecfdf5;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #16a34a;
}

.advantage-conditions h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.advantage-conditions .icon {
    color: #16a34a;
}

.advantage-conditions ul {
    list-style: none;
}

.advantage-conditions li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.advantage-conditions li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #16a34a;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.advantages-image {
    position: relative;
}

.advantages-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.advantage-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.badge-amount {
    font-size: 1.875rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-number {
    background: #16a34a;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: #15803d;
}

.step-icon {
    background: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: #16a34a;
}

.process-step:hover .step-icon svg {
    color: white;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.step-duration {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

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

.cta-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 64rem;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Service Zone */
.service-zone {
    padding: 5rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f9fafb 100%);
}

.zone-header {
    text-align: center;
    margin-bottom: 4rem;
}

.zone-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.zone-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zone-map {
    position: relative;
}

.zone-map img {
    width: 100%;
    height: 24rem;
    object-fit: contain;
    border-radius: 1rem;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.map-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-badge .icon {
    color: #16a34a;
    width: 1.5rem;
    height: 1.5rem;
}

.zone-description {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.zone-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.zone-description .icon {
    color: #16a34a;
}

.zone-description p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.75;
}

.zone-cities {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.city-group {
    border-left: 4px solid #16a34a;
    padding-left: 1.5rem;
}

.city-group h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.75rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-item .icon {
    color: #16a34a;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.city-item span {
    color: #374151;
    font-size: 0.875rem;
}

.zone-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.overall-rating {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars .star {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
}

.overall-rating p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.testimonial-rating .star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.verified-badge {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.verified-badge .icon {
    width: 1rem;
    height: 1rem;
}

.testimonial-card blockquote {
    color: #6b7280;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: #6b7280;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.trust-indicator {
    text-align: center;
}

.trust-icon {
    background: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-icon svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.trust-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #6b7280;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #16a34a;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.75;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.faq-help {
    max-width: 64rem;
    margin: 0 auto;
}

.help-card {
    background: #ecfdf5;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #bbf7d0;
    text-align: center;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.help-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */

.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.success-message {
    background: #ecfdf5;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #bbf7d0;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.success-icon {
    background: #dcfce7;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #16a34a;
}

.success-message h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.success-contact {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #bbf7d0;
    max-width: 24rem;
    margin: 0 auto;
}

.success-contact p {
    color: #374151;
    margin: 0;
}

.success-contact strong {
    color: #16a34a;
}

/* --- FLEX LAYOUT POUR L'ORDRE --- */
.contact-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@media (max-width: 900px) {
    .contact-content {
        flex-direction: column-reverse !important;
        gap: 1.5rem;
    }
    .contact-info,
    .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.contact-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    background: #dcfce7;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
}

.contact-label {
    font-weight: 600;
    color: #111827;
}

.contact-value {
    color: #6b7280;
    text-decoration: none;
}

.contact-value:hover {
    color: #16a34a;
    text-decoration: underline;
}

.documents-required {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.documents-required h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.documents-required .icon {
    color: #16a34a;
}

.documents-required ul {
    list-style: none;
}

.documents-required li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.documents-required li .icon {
    width: 1rem;
    height: 1rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
}

.error-messages {
    margin-bottom: 1.5rem;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #fecaca;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: #16a34a;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.form-security .icon {
    width: 1rem;
    height: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    background: #16a34a;
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.footer-logo-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #22c55e;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.75;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item .icon {
    color: #22c55e;
    width: 1.25rem;
    height: 1.25rem;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-contact-item span {
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links button {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: white;
}

/* Sticky Actions */
.sticky-actions {
    position: fixed;
    z-index: 50;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem; !important;
    background: #16a34a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta:hover {
    background: #15803d;
    transform: scale(1.05);
}

.sticky-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #22c55e;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-whatsapp:hover {
    background: #16a34a;
    transform: scale(1.1);
}

.sticky-phone {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    background: #2563eb;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-phone:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    max-width: 28rem;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #6b7280;
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.modal-icon {
    background: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.modal-icon svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #6b7280;
}

.modal-form {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-form input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.modal-success {
    padding: 2rem;
    text-align: center;
    color: #16a34a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-subtitle-dark {
        font-size: 1.75rem;
    }
    
    .value-props {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .zone-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-dark {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .postal-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .postal-input {
        max-width: none;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-prop h3 {
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .sticky-text {
        display: none;
    }
    
    .sticky-phone {
        display: flex;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-subtitle-dark {
        font-size: 1.125rem;
    }
    
    .google-rating {
        padding: 1rem;
    }
    
    .rating-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .promo-banner {
        padding: 1rem;
    }
    
    .promo-amount {
        font-size: 1.25rem;
    }
    
    .services-header h2,
    .services-header h3 {
        font-size: 2rem;
    }
    
    .advantages-header h2 {
        font-size: 2rem;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .zone-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header h2,
    .testimonials-header h3 {
        font-size: 2rem;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .zone-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print Styles */
@media print {
    .header,
    .sticky-actions,
    .modal {
        display: none !important;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    * {
        box-shadow: none !important;
    }
}