/* ===========================
   VARIABLES & BASE
=========================== */
:root {
    --yellow: #F5C400;
    --yellow-dark: #d4a900;
    --blue: #1B3A8C;
    --blue-dark: #122870;
    --blue-light: #2a4fa8;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --text-dark: #0d1b3e;
    --text-muted: #6c757d;
    --font-main: 'Inter', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(27, 58, 140, 0.10);
    --shadow-lg: 0 8px 40px rgba(27, 58, 140, 0.18);
    --transition: all 0.3s ease;
}

.alert-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #DFFAEB;
    border: 2px solid #34C97A;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.alert-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #34C97A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.alert-success-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0F5132;
    margin: 0 0 6px;
}

.alert-success-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1a6b3a;
    margin: 0;
    line-height: 1.6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden !important;
    padding-top: 70px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===========================
   BOUTONS GLOBAUX
=========================== */
.btn-fiablo-yellow {
    background-color: var(--yellow);
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--yellow);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-fiablo-yellow:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 196, 0, 0.35);
}

.btn-pill {
    border-radius: 50px !important;
    padding: 10px 28px;
}

.btn-fiablo-outline {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-fiablo-outline:hover {
    background-color: var(--white);
    color: var(--blue);
}

/* ===========================
   HEADER / NAVBAR
=========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 16px rgba(27, 58, 140, 0.08);
}

.site-header .navbar-brand img {
    height: 85px;
    width: auto;
}

.site-header .nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--blue);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--blue);
    background-color: rgba(27, 58, 140, 0.06);
}

.site-header .navbar-toggler {
    border: 0px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}

.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B3A8C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   SECTION HERO
=========================== */
.section-hero {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -100px;
}

.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #013485d9;
    z-index: 0;
}

.section-hero .hero-content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F5C400;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    margin-bottom: 24px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F5C400;
    flex-shrink: 0;
}

.hero-title {
    font-weight: 900;
    font-size: 86px;
    line-height: 100.8px;
    letter-spacing: -2.4px;
    color: #ffffff;
    margin-bottom: 32px;
}

.hero-title .text-gradient {
    background: linear-gradient(90deg, #F5C400 0%, #FFF085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 23px;
    line-height: 39px;
    color: #FFFFFFB2;
    max-width: 570px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #F5C400;
    color: #1B3A8C;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    border-radius: 16px;
    border: none;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: #F5C400;
    color: #1B3A8C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 196, 0, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    border-radius: 16px;
    border: 2px solid #FFFFFF33;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--blue);
    transform: translateY(-2px);
}

/* ===========================
   SECTION COMMENT ÇA MARCHE
=========================== */
.section-how {
    background: #F5F7FA;
    padding-top: 60px;
    padding-bottom: 60px;
}

.how-mobile {
    display: none;
}

.how-desktop {
    display: block;
}

.how-mobile-header {
    display: none;
    padding: 60px 0 32px;
}

.how-sticky-wrapper {
    height: 300vh;
    position: relative;
}

.how-sticky {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.how-title {
    font-weight: 800;
    font-size: 48px;
    color: #13224F;
}

.how-title span {
    color: #F5C400;
}

.how-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 420px;
    margin: 12px auto 0;
}

.how-track-outer {
    overflow: hidden;
    width: 100%;
}

.how-track {
    display: flex;
    gap: 32px;
    padding: 0 calc((100vw - 700px) / 2);
    will-change: transform;
}

.how-card {
    min-width: 700px;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(27, 58, 140, 0.08);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
    transform: scale(0.92);
}

.how-card.active {
    opacity: 1;
    transform: scale(1);
}

.how-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.how-card-icon img {
    width: 45px;
    height: 45px;
}

.how-card h3 {
    line-height: 40px;
    font-weight: 700;
    font-size: 26px;
    color: #13224F;
    margin-bottom: 25px;
}

.how-card p {
    font-size: 16px;
    color: #45556C;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.how-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.how-dot {
    width: 20px;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    transition: background 0.3s ease;
}

.how-dot.active {
    background: #13224F;
    width: 47px;
}

/* ===========================
   SECTION NOS VALEURS
=========================== */
.section-values {
    background-color: #0d2260;
    position: relative;
    clip-path: polygon(0 0%, 100% 8%, 100% 100%, 0 92%);
    margin-top: -140px;
    padding-top: 160px;
    padding-bottom: 185px;
    padding-left: 3%;
    padding-right: 3%;
}

.values-title-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.values-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.values-title {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 48px;
    color: #ffffff;
    margin: 0;
}

.values-card {
    background: #1B3A8C;
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    transition: var(--transition);
    border: solid 1.05px #495571;
}

.values-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.values-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #495571;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.values-icon img {
    width: 28px;
    height: 28px;
}

.values-card h3 {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
}

.values-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===========================
   SECTION POURQUOI FIABILO
=========================== */
.section-why {
    background: #ffffff;
    position: relative;
    min-height: 100vh;
}

.why-intro {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.why-intro.active {
    opacity: 1;
    pointer-events: all;
}

.why-intro-text {
    font-weight: 800;
    color: #1B3A8C;
    font-size: 24px;
    opacity: 0;
    transform: scale(0.3);
    display: block;
    transition: none;
}

.why-content {
    opacity: 1;
    padding: 100px 0;
}

.why-diagram {
    position: relative;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1;
    margin: 5% auto 0;
}

.why-bird-full {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.why-bird-full img {
    width: 100%;
}

.why-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 4;
    max-width: 160px;
}

.why-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #1B3A8C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.why-step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.why-step-text h4 {
    font-weight: 700;
    font-size: 18px;
    color: #0D1426;
    margin-bottom: 4px;
}

.why-step-text p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.why-step-top {
    top: -8%;
    left: 73%;
    transform: translateX(-50%);
}

.why-step-right {
    top: 76%;
    right: -9%;
    transform: translateY(-50%);
    align-items: flex-start;
    text-align: left;
}

.why-step-bottom {
    bottom: -4%;
    left: 28%;
    transform: translateX(-50%);
}

.why-step-left {
    top: 25%;
    left: 1%;
    transform: translateY(-50%);
}

.why-mobile-img {
    display: none;
}

/* ===========================
   SECTION LES CHIFFRES PARLENT
=========================== */
.section-stats {
    background: #F5C400;
    position: relative;
    clip-path: polygon(0 22%, 100% 0%, 100% 100%, 0 83%);
    padding: 12% 0 13%;
    z-index: 99;
}

.stats-title {
    font-weight: 900;
    font-size: 48px;
    color: #1B3A8C;
    text-align: center;
    margin-bottom: 60px;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-weight: 900;
    font-size: 65px;
    color: #1B3A8C;
    line-height: 1;
    margin-bottom: 12px;
}

.stats-label {
    font-weight: 700;
    font-size: 18px;
    color: #1b3a8ccf;
    line-height: 1.3;
}

/* ===========================
   SECTION PARTOUT EN TUNISIE
=========================== */
.section-cities {
    background: #F5F7FA;
    padding: 120px 0;
    position: relative;
    margin-top: -105px;
}

.cities-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F9C015;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cities-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #0D1426;
    margin-bottom: 8px;
    line-height: 1.1;
}

.cities-title span {
    font-weight: 700;
    color: #0D1426;
    position: relative;
    display: inline-block;
}

.cities-underline {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
}

.cities-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #626D84;
    margin-bottom: 48px;
    margin-top: 24px;
    max-width: 400px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.cities-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: #0F1F3D;
    transition: var(--transition);
    justify-content: flex-start;
}

.cities-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.cities-card i {
    font-size: 22px;
    color: #F5C400;
    flex-shrink: 0;
}

/* ===========================
   SECTION TÉMOIGNAGES
=========================== */
.section-testimonials {
    background: #1B3A8C;
    position: relative;
    clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0 100%);
    margin: -60px 0;
    padding: 140px 0 160px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F9C015;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonials-title {
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    font-family: 'Montserrat';
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
}

.testimonial-quote img {
    width: 40px;
    height: 40px;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars img {
    height: 20px;
}

.testimonial-text {
    font-size: 14px;
    color: #626D84;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
    font-family: 'Montserrat';
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(28 58 140 / 10%);
    color: #13296C;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-weight: 600;
    font-size: 15px;
    color: #0F1F3D;
    font-family: 'Montserrat';
    margin: 0;
}

.testimonial-info span {
    font-weight: 400;
    font-size: 13px;
    color: #626D84;
    font-family: 'Montserrat';
}

/* ===========================
   SECTION FAQ
=========================== */
.section-faq {
    background: #ffffff;
    padding: 110px 0;
}

.faq-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F9C015;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-title {
    font-weight: 700;
    font-size: 44px;
    color: #0F1F3D;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Montserrat';
}

.faq-subtitle {
    font-size: 17px;
    color: #626D84;
    line-height: 1.7;
    margin-bottom: 32px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1B3A8C;
    transition: var(--transition);
}

.faq-contact:hover {
    color: #F5C400;
}

.faq-contact i {
    font-size: 18px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 12px;
    border: 2px solid #E0E4EB;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    background: #1B3A8C;
    border-color: #1B3A8C;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    font-family: 'Montserrat';
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0f1f3d;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 14px;
    color: #6c757d;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    color: #ffffff;
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #ffffff;
    line-height: 26px;
    font-weight: 400;
}

/* ===========================
   SECTION CTA FINAL
=========================== */
.section-cta {
    background: #13224F;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0 100%);
    margin-top: -60px;
    padding: 130px 0 80px;
    text-align: center;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: url('../images/Background_Blur__1_.png') no-repeat left center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: url('../images/Background_Blur.png') no-repeat right center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-weight: 900;
    font-size: 64px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-title span {
    color: #F5C400;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F5C400;
    color: #1B3A8C;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    padding: 18px 44px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.btn-cta-main:hover {
    background: #ffffff;
    color: #1B3A8C;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.35);
}

.cta-note {
    font-size: 14px;
    margin-top: 20px !important;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: #ffffff;
    padding: 20px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #0F1F3D;
    letter-spacing: 1px;
}

.footer-dot {
    color: #F5C400;
}

.footer-copy {
    font-size: 14px;
    color: #13224f;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* ===========================
   PAGE RÉCLAMATION
=========================== */
.section-reclamation {
    position: relative;
    background: #ffffff;
    padding-bottom: 100px;
}

.reclamation-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120vh;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    z-index: 0;
}

.reclamation-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #013485d9;
}

.reclamation-header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 0 50px;
}

.section-reclamation>.container {
    position: relative;
    z-index: 1;
}

.reclamation-title {
    font-weight: 700;
    font-size: 35px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reclamation-title-icon {
    width: 48px;
    height: 48px;
}

.reclamation-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 28px;
    font-family: 'Inter';
    font-weight: 400 !important;
}

.reclamation-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ===========================
   PAGE DEVIS
=========================== */
.section-devis {
    position: relative;
    background: #ffffff;
    padding-bottom: 100px;
}

.devis-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120vh;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    z-index: 0;
}

.devis-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #013485d9;
}

.devis-header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 85px 0 50px;
}

.section-devis>.container {
    position: relative;
    z-index: 1;
}

.devis-tag {
    display: inline-block;
    background: #F5C400;
    color: #0F1F3D;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.devis-title {
    font-weight: 800;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.devis-title span {
    color: #F5C400;
}

.devis-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.devis-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.devis-note {
    text-align: center;
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
}

/* ===========================
   FORMULAIRES (commun réclamation & devis)
=========================== */
.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-weight: 700;
    font-size: 18px;
    color: #0F1F3D;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E0E4EB;
}

.form-section-title img {
    width: 22px;
    height: 22px;
}

.form-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-section-icon img {
    width: 20px;
    height: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #0D1426;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form-label span {
    color: #F5C400;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    opacity: 0.5;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid #E0E4EB;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #0F1F3D;
    background: #e2e4e97d;
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-input::placeholder {
    color: #676F7E;
    font-weight: 400;
    line-height: 28px;
}

.form-input:focus {
    border-color: #f5c400;
}

.form-input-center {
    text-align: center;
    padding-left: 16px;
}

.select-wrapper {
    position: relative;
}

.form-select-custom {
    cursor: pointer;
    padding-right: 40px;
}

.select-arrow {
    position: absolute;
    right: 14px;
    font-size: 12px;
    color: #9CA3AF;
    pointer-events: none;
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 14px;
    padding-left: 16px;
}

.btn-reclamation-submit {
    width: 100%;
    background: #FFC105;
    color: #1B3A8C;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Inter';
    border: none;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.btn-reclamation-submit:hover {
    background: #f5c400;
    transform: translateY(-2px);
}

/* ===========================
   PAGE SUIVI
=========================== */
.section-suivi {
    position: relative;
    background: #ffffff;
    padding-bottom: 0;
    min-height: 100vh;
    margin-bottom: 20px;
}

.suivi-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.suivi-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #013485d9;
}

.suivi-header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 0 48px;
}

.section-suivi>.container {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.suivi-tag {
    display: inline-block;
    background: #F5C400;
    color: #0F1F3D;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.suivi-title {
    font-weight: 800;
    font-size: 52px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.suivi-title span {
    color: #F5C400;
}

.suivi-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.suivi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 44px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.suivi-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F1F3D;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.suivi-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.suivi-input-group {
    position: relative;
    flex: 1;
}

.suivi-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.45;
    pointer-events: none;
}

.suivi-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid #E0E4EB;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #0F1F3D;
    background: #F5F7FA;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.suivi-input::placeholder {
    color: #9CA3AF;
}

.suivi-input:focus {
    border-color: #F5C400;
    background: #ffffff;
}

.suivi-btn {
    background: #F5C400;
    color: #0F1F3D;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 10px;
    padding: 14px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.suivi-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 196, 0, 0.4);
}

/* ===========================
   RÉSULTATS DE SUIVI
=========================== */
.section-suivi-results {
    background: #ffffff;
    padding: 56px 0 100px;
}

.suivi-status-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.suivi-status-livree {
    background: #DFFAEB;
    border-color: #34C97A;
}

.suivi-status-encours {
    background: #E0EAFF;
    border-color: #3B6FF0;
}

.suivi-status-retour {
    background: #FFE8DF;
    border-color: #E8622A;
}

.suivi-status-attente {
    background: #FFF5CC;
    border-color: #D4A700;
}

.suivi-status-depot {
    background: #EDE8FF;
    border-color: #7C3AED;
}

.suivi-status-transit {
    background: #DFF3FF;
    border-color: #0EA5E9;
}

.suivi-status-warning {
    background: #FFF3CD;
    border-color: #F59E0B;
}

.suivi-status-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 31, 61, 0.1);
}

.suivi-status-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #0F1F3D;
}

.suivi-status-name {
    font-size: 18px;
    font-weight: 700;
    color: #0F1F3D;
    font-family: 'Montserrat', sans-serif;
}

.suivi-status-update {
    font-size: 13px;
    color: #6B7280;
    margin-top: 3px;
    font-family: 'Montserrat', sans-serif;
}

.suivi-status-badge {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 16px;
    border-radius: 99px;
    background: #0F1F3D;
    color: #ffffff;
    white-space: nowrap;
}

.suivi-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.suivi-info-box {
    background: #F0F3FA;
    border: 1.5px solid #D4DAE8;
    border-radius: 12px;
    padding: 14px 16px;
}

.suivi-info-label {
    font-size: 10px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: .1em;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}

.suivi-info-val {
    font-size: 14px;
    font-weight: 700;
    color: #0F1F3D;
    font-family: 'Montserrat', sans-serif;
}

.suivi-divider {
    height: 1.5px;
    background: #D4DAE8;
    max-width: 860px;
    margin: 0 auto 1.5rem;
}

.suivi-timeline-title {
    font-size: 11px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: .12em;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto 1.5rem;
}

.suivi-timeline-title svg {
    width: 16px;
    height: 16px;
    color: #9CA3AF;
}

.suivi-no-history {
    text-align: center;
    color: #9CA3AF;
    font-size: 14px;
    padding: 2rem 0;
}

/* ===========================
   ROUTE TIMELINE
=========================== */
.route-timeline {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.route-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    padding-bottom: 8px;
}

.route-line-bg {
    position: absolute;
    top: 26px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #D4DAE8;
    border-radius: 99px;
    z-index: 0;
}

.route-row-reverse {
    direction: rtl;
}

.route-row-reverse .route-step {
    direction: ltr;
}

.route-turn {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 36px;
}

.route-turn-right {
    justify-content: flex-end;
    padding-right: 40px;
}

.route-turn-left {
    justify-content: flex-start;
    padding-left: 40px;
}

.route-turn-line {
    width: 3px;
    height: 36px;
    background: #D4DAE8;
    border-radius: 99px;
}

.route-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 4px;
}

.route-step-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #C8D0E0;
    background: #EEF1F8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-step-dot svg {
    width: 20px;
    height: 20px;
    color: #8A94A8;
}

.route-step-done .route-step-dot {
    border-color: #1B3A8C;
    background: #DCE4FF;
}

.route-step-done .route-step-dot svg {
    color: #1B3A8C;
}

.route-dot-active,
.route-step-active .route-step-dot {
    border-color: #F5C400 !important;
    background: #FFF5B0 !important;
    box-shadow: 0 0 0 7px rgba(245, 196, 0, 0.22);
}

.route-step-active .route-step-dot svg {
    color: #0F1F3D !important;
}

.route-dot-livree {
    border-color: #16A34A !important;
    background: #DCFCE7 !important;
}

.route-dot-livree svg {
    color: #16A34A !important;
}

.route-dot-encours {
    border-color: #1B3A8C !important;
    background: #DCE4FF !important;
}

.route-dot-encours svg {
    color: #1B3A8C !important;
}

.route-dot-retour {
    border-color: #DC2626 !important;
    background: #FEE2E2 !important;
}

.route-dot-retour svg {
    color: #DC2626 !important;
}

.route-dot-attente {
    border-color: #D97706 !important;
    background: #FEF3C7 !important;
}

.route-dot-attente svg {
    color: #D97706 !important;
}

.route-dot-depot {
    border-color: #7C3AED !important;
    background: #EDE9FE !important;
}

.route-dot-depot svg {
    color: #7C3AED !important;
}

.route-dot-transit {
    border-color: #0369A1 !important;
    background: #E0F2FE !important;
}

.route-dot-transit svg {
    color: #0369A1 !important;
}

.route-dot-warning {
    border-color: #D97706 !important;
    background: #FEF3C7 !important;
}

.route-dot-warning svg {
    color: #D97706 !important;
}

.route-step-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    max-width: 110px;
}

.route-step-name {
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.35;
}

.route-step-done .route-step-name {
    color: #374151;
}

.route-name-active {
    color: #0F1F3D !important;
    font-weight: 800 !important;
}

.route-step-date {
    font-size: 10px;
    color: #9CA3AF;
    font-family: 'Montserrat', sans-serif;
    margin-top: 4px;
}

.route-step-done .route-step-date {
    color: #6B7280;
}

.route-step-active .route-step-date {
    color: #0F1F3D;
    font-weight: 600;
}

.route-step-motif {
    font-size: 10px;
    color: #9CA3AF;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    margin-top: 2px;
}

.suivi-not-found {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.not-found-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #F0F3FA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.not-found-icon-wrap svg {
    width: 32px;
    height: 32px;
    color: #9CA3AF;
}

.not-found-icon-wrap.warning svg {
    color: #D97706;
}

.suivi-not-found h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0F1F3D;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.suivi-not-found p {
    font-size: 15px;
    color: #6B7280;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
}

/* ===========================
   MEDIA QUERIES — 1199px
=========================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 72px;
        line-height: 82px;
    }
}

/* ===========================
   MEDIA QUERIES — 991px (Tablet)
=========================== */
@media (max-width: 991px) {

    /* Header */
    .site-header .navbar-collapse {
        background-color: var(--white);
        padding: 16px;
        border-radius: var(--radius);
        margin-top: 10px;
        box-shadow: var(--shadow);
    }

    .site-header .nav-link {
        padding: 10px 12px;
    }

    .btn-fiablo-yellow {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    /* Hero */
    .section-hero {
        min-height: 65vh;
    }

    .hero-title {
        font-size: 58px;
        line-height: 66px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 34px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 16px;
        padding: 14px 24px;
    }

    /* How */
    .how-desktop {
        display: none;
    }

    .how-mobile {
        display: block;
        padding-bottom: 45px;
    }

    .how-mobile-header {
        display: block;
        padding: 70px 0 32px;
    }

    .how-title {
        font-size: 40px;
    }

    .how-mobile .how-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 8px;
    }

    .how-mobile .how-subtitle {
        text-align: center;
        margin-bottom: 48px;
    }

    .how-subtitle {
        font-size: 16px;
        margin: 16px auto 0;
    }

    .how-timeline {
        position: relative;
    }

    .how-timeline-item {
        display: flex;
        gap: 25px;
        margin-bottom: 40px;
    }

    .how-timeline-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .how-timeline-icon {
        width: 75px;
        height: 75px;
        border-radius: 16px;
        background: #EEF2FF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .how-timeline-icon img {
        width: 32px;
        height: 32px;
    }

    .how-timeline-line {
        width: 2px;
        flex: 1;
        background: repeating-linear-gradient(to bottom, #cbd5e1 0px, #cbd5e1 6px, transparent 6px, transparent 12px);
        margin-top: 8px;
    }

    .how-timeline-content {
        padding-top: 8px;
        padding-left: 25px;
        position: relative;
    }

    .how-badge {
        position: absolute;
        top: -7px;
        left: -36px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #1B3A8C;
        color: white;
        font-size: 14px;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .how-timeline-content h3 {
        font-weight: 700;
        font-size: 18px;
        color: #13224F;
        margin-bottom: 12px;
    }

    .how-timeline-content p {
        font-size: 16px;
        color: #6c757d;
        line-height: 1.6;
    }

    /* Values */
    .section-values {
        clip-path: polygon(0 0%, 100% 3%, 100% 100%, 0 97%);
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .values-title {
        font-size: 40px;
    }

    .values-glow {
        width: 550px;
        height: auto;
    }

    /* Why */
    .section-why {
        min-height: unset;
    }

    .why-diagram {
        max-width: unset;
    }

    .why-step {
        max-width: 150px;
    }

    .why-step-top {
        top: -2%;
        left: 71%;
        transform: translateX(-50%);
    }

    .why-step-right {
        top: 74%;
        right: -3%;
        transform: translateY(-50%);
        align-items: flex-start;
        text-align: left;
    }

    .why-step-bottom {
        bottom: 0%;
        left: 29%;
        transform: translateX(-50%);
    }

    .why-step-left {
        top: 25%;
        left: -3%;
        transform: translateY(-50%);
    }

    /* Stats */
    .section-stats {
        clip-path: polygon(0 14%, 100% 0%, 100% 100%, 0 87%);
    }

    .stats-number {
        font-size: 35px;
    }

    /* Cities */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-title {
        font-size: 36px;
    }

    .cities-card {
        font-size: 24px;
    }

    /* Testimonials */
    .testimonials-title {
        font-size: 36px;
    }

    .section-testimonials {
        padding: 100px 0 120px;
    }

    /* FAQ */
    .faq-title {
        font-size: 34px;
    }

    .section-faq {
        padding: 100px 0;
    }

    /* Suivi */
    .suivi-title {
        font-size: 40px;
    }

    .suivi-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   MEDIA QUERIES — 767px (Mobile)
=========================== */
@media (max-width: 767px) {

    /* Forms */
    .reclamation-form-wrapper,
    .devis-form-wrapper {
        padding: 20px;
        margin: 0 15px;
    }

    /* How */
    .how-card {
        min-width: calc(100vw - 40px);
    }

    .how-track {
        padding: 0 20px;
    }

    /* Values */
    .values-glow {
        width: 100%;
        height: auto;
    }

    /* Hero */
    .section-hero {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        margin-bottom: -60px;
        min-height: 90vh;
    }

    .section-hero .hero-content {
        padding: 25px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 50px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 35px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 15px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    /* Why */
    .section-why {
        min-height: auto;
    }

    .why-content {
        padding: 0;
    }

    .why-diagram {
        display: none;
    }

    .why-mobile-img {
        display: block;
        width: 100%;
        padding: 0 20px;
        margin-top: 70px;
    }

    .why-mobile-img img {
        width: 100%;
        height: auto;
    }

    /* Stats */
    .section-stats {
        clip-path: polygon(0 22%, 100% 0%, 100% 100%, 0 83%);
        padding: 28% 0 28%;
    }

    .stats-number {
        font-size: 48px;
    }

    .stats-title {
        font-size: 32px;
    }

    .stats-label {
        font-size: 16px;
    }

    /* Cities */
    .section-cities {
        padding: 110px 0;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-title {
        font-size: 32px;
    }

    .cities-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        margin-top: 18px;
    }

    .cities-card {
        font-size: 20px;
        padding: 16px 18px;
    }

    /* Testimonials */
    .section-testimonials {
        clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
        padding: 80px 0 100px;
        margin: -40px 0;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* FAQ */
    .section-faq {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }

    /* CTA */
    .section-cta {
        padding: 100px 20px 80px;
        clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%);
    }

    .section-cta::before,
    .section-cta::after {
        display: none;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .btn-cta-main {
        font-size: 16px;
        padding: 16px 32px;
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-inner {
        justify-content: center;
    }

    .footer-logo {
        height: 35px;
    }

    .site-footer {
        padding: 16px 0;
    }



    /* Suivi */
    .section-suivi {
        min-height: 70vh;
    }

    .suivi-header {
        padding: 120px 20px 48px;
    }

    .suivi-card {
        padding: 24px 20px;
        margin: 0 15px;
    }

    .suivi-title {
        font-size: 32px;
    }

    .suivi-input-wrapper {
        flex-direction: column;
    }

    .suivi-input-group {
        width: 100%;
    }

    .suivi-btn {
        width: 100%;
        justify-content: center;
    }

    .suivi-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .suivi-status-banner {
        flex-wrap: wrap;
    }

    .suivi-status-badge {
        margin-left: 0;
    }

    .route-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .route-line-bg {
        display: none;
    }

    .route-turn-right {
        padding-right: 20px;
    }

    .route-turn-left {
        padding-left: 20px;
    }

    /* Reclamation */
    .reclamation-form-wrapper {
        padding: 30px;
        margin: 0 auto;
    }

    .reclamation-subtitle {
        font-size: 16px;
        width: 98%;
    }

    .devis-header {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 81px 0 50px;
    }
}

/* ===========================
   MEDIA QUERIES — 480px (Small mobile)
=========================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 45px;
        line-height: 50px;
    }

    .hero-tag {
        font-size: 16px;
    }

    .how-title {
        font-size: 41px;
    }

    .stats-number {
        font-size: 36px;
    }

    .stats-label {
        font-size: 14px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cities-title {
        font-size: 28px;
    }

    .cities-card {
        font-size: 20px;
        padding: 20px;
    }

    .cities-card i {
        font-size: 20px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 13px;
    }

    .cta-title {
        font-size: 32px;
    }

    .suivi-title {
        font-size: 28px;
    }

    .suivi-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .route-row {
        grid-template-columns: repeat(2, 1fr);
    }
}