/* 
   REUNION TOITURE - ULTRA PREMIUM STYLES 
   ---------------------------------
   Colors: Inspired by Reunion Flag (Blue, Red, Yellow) 
   Style: Modern, Clean, "New Gen", Glassmorphism
*/

:root {
    /* Colors - Elegant Reunion Palette */
    --color-primary: #002395;
    /* Royal Blue */
    --color-primary-dark: #001a70;
    --color-secondary: #E30613;
    /* Volcanic Red */
    --color-secondary-dark: #b9050f;
    --color-action: #FFCE00;
    /* Sun Yellow */
    --color-action-dark: #e6b800;

    --color-text-main: #1e293b;
    --color-text-light: #64748b;
    --color-white: #ffffff;
    --color-light-bg: #f8fafc;

    --gradient-hero: linear-gradient(135deg, rgba(0, 35, 149, 0.95) 0%, rgba(227, 6, 19, 0.8) 100%);

    /* Typography - Fluid */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --text-hero-title: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --text-hero-desc: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    --text-section-title: clamp(1.8rem, 3vw + 1rem, 2.8rem);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --section-spacing: clamp(4rem, 8vw, 7rem);

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 20, 60, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(0, 20, 60, 0.15);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font-family: inherit;
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: var(--section-spacing) 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section__title {
    font-size: var(--text-section-title);
    margin-bottom: 1rem;
    color: var(--color-text-main);
    font-weight: 800;
}

.section__subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.text-highlight {
    color: var(--color-action);
}

.text-orange-500 {
    color: #f97316;
}

.mt-4 {
    margin-top: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.hero__google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero__google-rating .stars {
    color: #facc15;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero__google-rating .rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.hero__google-rating .source {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: #0f172a;
    padding: 2.5rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar__container {
    position: relative;
}

.trust-bar__scroll {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 5rem;
    min-width: fit-content;
}

.trust-item__icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(249, 115, 22, 0.05);
}

.trust-item__title {
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.trust-item__desc {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .trust-bar__scroll {
        animation: scroll 12s linear infinite;
    }

    .trust-item {
        padding: 0 2rem;
    }
}

.trust-bar__scroll:hover {
    animation-play-state: paused;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo__img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__text .entreprise {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

.logo__text .scherrer {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo__highlight {
    color: var(--color-secondary);
}

.logo--footer {
    color: white;
}

/* --- ANIMATIONS --- */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn--primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin-left: 1rem;
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

.btn--pulse {
    position: relative;
    z-index: 1;
}

.btn--pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.btn--full {
    width: 100%;
}


/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link:not(.nav__link--cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav__link:not(.nav__link--cta):hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav__link--cta:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(0, 50, 150, 0.3);
    transform: translateY(-2px);
}

.nav__close,
.nav__toggle {
    display: none !important;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    color: white;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.hero__form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero__form .form__title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero__form .form__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero__form .form__input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero__form .form__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero__form .form__input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-action);
}

.hero__form select.form__input option {
    background: #1e293b;
    color: white;
}

.form__footer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

.form__result {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.form__result.success {
    color: #4ade80;
}

.form__result.error {
    color: #f87171;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-action);
}

.hero__title {
    font-size: var(--text-hero-title);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero__description {
    font-size: var(--text-hero-desc);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero__stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat__item {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-action);
}

/* --- ABOUT & SERVICES (Grid Improvements) --- */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

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

.about__img {
    transition: transform 0.5s ease;
    width: 100%;
}

.about__img-wrapper:hover .about__img {
    transform: scale(1.05);
}

.about__badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    color: var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.about__text {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.features__list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.check {
    color: #22c55e;
    font-weight: 800;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service__card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 90, 35, 0.1);
}

.service__img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service__card:hover .service__img {
    transform: scale(1.1);
}

.service__img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.service__content {
    padding: 2rem;
}

.service__title {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

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

/* --- TESTIMONIALS REDESIGN --- */
.testimonials {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--section-spacing) 0;
    overflow: hidden;
}

.testimonials .section__header {
    margin-bottom: 3rem;
}

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

.testimonials__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 300px;
}

.testimonial-slide__card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 35, 149, 0.06);
    border: 1px solid rgba(0, 35, 149, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 35, 149, 0.12);
    border-color: var(--color-primary);
}

.testimonial-slide__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-slide__info {
    flex: 1;
}

.testimonial-slide__avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0, 35, 149, 0.2);
}

.testimonial-slide__name {
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: var(--color-text-main);
}

.testimonial-slide__date {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.testimonial-slide__stars {
    color: var(--color-action);
    font-size: 1.1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 4px rgba(255, 206, 0, 0.2));
}

.testimonial-slide__quote {
    color: var(--color-text-main);
    line-height: 1.7;
    font-size: 1.05rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-slide__footer {
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 35, 149, 0.1);
}

.slider-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.testimonials__dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--color-secondary);
    width: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.btn--result {
    margin: 2.5rem auto 0;
    display: block;
    padding: 1.2rem 3rem;
    background: var(--color-action);
    color: var(--color-primary);
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(255, 206, 0, 0.35);
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    width: fit-content;
}

.btn--result:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 206, 0, 0.45);
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonials__slider {
        padding: 0 0.5rem;
    }

    .testimonials__track {
        gap: 1.5rem;
    }

    .testimonials__controls {
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
    }

    .btn--result {
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }

    .testimonial-slide__card {
        padding: 2rem 1.5rem;
    }

    .testimonial-slide__avatar {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .testimonial-slide__quote {
        font-size: 1rem;
    }
}

/* --- FAQ REDESIGN --- */
.faq {
    background: white;
    padding: var(--section-spacing) 0;
}

.faq__list {
    max-width: 850px;
    margin: 0 auto;
}

.faq__item {
    background: #f8fafc;
    border-radius: 18px;
    border: 2px solid #e2e8f0;
    margin-bottom: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item:hover {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 35, 149, 0.08);
}

.faq__item.active {
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 12px 30px rgba(0, 35, 149, 0.12);
}

.faq__question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-text-main);
}

.faq__icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 35, 149, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    background: var(--color-secondary);
    color: white;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq__item.active .faq__answer {
    padding-bottom: 1.75rem;
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq__item {
        border-radius: 14px;
        margin-bottom: 1rem;
    }

    .faq__question {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
    }

    .faq__icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .faq__answer {
        padding: 0 1.25rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faq__item.active .faq__answer {
        padding-bottom: 1.25rem;
        max-height: 400px;
    }
}

/* --- MOBILE FOOTER BUTTONS --- */
.mobile-footer-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-footer-cta {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        gap: 12px;
        padding: 14px 16px 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 2px solid var(--color-primary);
        z-index: 1000;
        box-shadow: 0 -10px 40px rgba(0, 35, 149, 0.15);
    }

    .m-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px;
        border-radius: 16px;
        font-weight: 900;
        font-size: 1rem;
        transition: all 0.2s ease;
        text-decoration: none;
        border: none;
    }

    .m-btn:active {
        transform: scale(0.95);
    }

    .m-btn--call {
        background: var(--color-primary);
        color: white;
        box-shadow: 0 8px 20px rgba(0, 35, 149, 0.3);
    }

    .m-btn--quote {
        background: var(--color-action);
        color: var(--color-primary);
        box-shadow: 0 8px 20px rgba(255, 206, 0, 0.35);
    }

    body {
        padding-bottom: 95px;
    }
}

/* --- BANNER --- */
.banner {
    background: var(--color-secondary);
    padding: 4rem 0;
    color: white;
}

.banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.banner__title {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.banner__text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* --- CONTACT & RESPONSIVE --- */
.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

.contact__items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__icon {
    width: 60px;
    height: 60px;
    background: var(--color-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact__label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.3rem;
}

.contact__value {
    font-weight: 700;
    font-size: 1.2rem;
}

.zones__list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e5ed;
}

.contact__form {
    background: white;
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form__input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e0e5ed;
    border-radius: 10px;
    background: #f8faff;
    transition: var(--transition);
    outline: none;
    font-size: 1rem;
}

.form__input:focus {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 50, 150, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 150px;
}

/* --- FOOTER --- */
.footer {
    background: #0f172a;
    color: white;
    padding: 5rem 0 0;
}

.footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__desc {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    max-width: 350px;
    line-height: 1.6;
}

.footer__title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer__links ul li {
    margin-bottom: 0.8rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer__links a:hover {
    color: var(--color-action);
    padding-left: 5px;
}

.footer__copy {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .about__img-wrapper {
        min-height: 300px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        padding: 2.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        align-items: stretch;
    }

    .nav__list.show {
        right: 0;
    }

    .nav__toggle {
        display: block !important;
        color: var(--color-primary);
        font-size: 1.5rem;
        transition: var(--transition);
    }

    .nav__toggle:hover {
        color: var(--color-secondary);
        transform: scale(1.1);
    }

    .nav__link {
        border-bottom: 1px solid #f1f1f1;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav__link:not(.nav__link--cta)::after {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero {
        height: auto;
        padding-bottom: 4rem;
    }

    .hero__stats {
        gap: 2rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner__container {
        flex-direction: column;
        text-align: center;
    }

    /* Sticky bottom CTA for Mobile */
    .nav__link--cta {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ========================================
   SECTION AVANT/APRÈS - RÉSINE ÉTANCHÉITÉ
   ======================================== */
.avant-apres {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    padding: var(--section-spacing) 0;
}

.avant-apres__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.avant-apres__image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 35, 149, 0.25);
}

.avant-apres__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.avant-apres__image-container:hover .avant-apres__image {
    transform: scale(1.02);
}

.avant-apres__labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    pointer-events: none;
}

.avant-apres__label {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.avant-apres__label--avant {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.avant-apres__label--apres {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.avant-apres__content {
    padding: 1rem;
}

.avant-apres__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.avant-apres__description {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.avant-apres__benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.avant-apres__benefits li {
    padding: 0.6rem 0;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avant-apres__benefits li::before {
    content: none;
}

/* Responsive Avant/Après */
@media (max-width: 900px) {
    .avant-apres__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .avant-apres__content {
        text-align: center;
        padding: 0;
    }

    .avant-apres__benefits {
        display: inline-block;
        text-align: left;
    }

    .avant-apres__content .btn {
        width: 100%;
    }

    .avant-apres__labels {
        padding: 0.75rem;
    }

    .avant-apres__label {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}