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

:root {
    --blue-dark: #0f3d73;
    --blue-sky: #7ec8ee;
    --orange: #e2671f;
    --orange-deep: #bf4f10;
    --surface-light: #f5fbff;
}

body {
    font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    animation: page-fade-in 0.6s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 90%;
}

main > .page-section {
    display: none;
}

main > .page-section.is-active {
    display: block;
    animation: block-rise-in 0.55s ease;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes block-rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes topbar-drop-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navbar-drop-in {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rise-in-soft {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes texture-drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 120px;
    }
}

@keyframes image-breathe {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Navigation */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: #2b75b8;
    color: #fff;
    height: 38px;
    display: flex;
    align-items: center;
    animation: topbar-drop-in 0.55s ease both;
}

.top-contact-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-contact-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.86rem;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.top-contact-bar a:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-contact-right a i,
.top-contact-right a {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.top-contact-right a:hover i {
    transform: translateY(-2px) scale(1.08);
}

.top-contact-bar .lang-switch.active {
    font-weight: 700;
    text-decoration: underline;
    opacity: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background:
        linear-gradient(160deg, rgba(232, 245, 255, 0.96) 0%, rgba(214, 237, 252, 0.94) 58%, rgba(199, 229, 248, 0.92) 100%),
        radial-gradient(circle at 10% 20%, rgba(126, 200, 238, 0.25) 0%, transparent 35%);
    backdrop-filter: saturate(120%);
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(15, 61, 115, 0.14);
    box-shadow: 0 8px 22px rgba(15, 61, 115, 0.11);
    animation: navbar-drop-in 0.7s ease both;
}

header {
    height: 130px;
}

.logo img {
    height: 76px;
    width: auto;
    display: block;
    border-radius: 10px;
    mix-blend-mode: multiply;
}

.logo {
    padding: 0.25rem 0.45rem;
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(203, 233, 250, 0.82) 0%, rgba(184, 223, 246, 0.72) 100%);
    border: 1px solid rgba(15, 61, 115, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(15, 61, 115, 0.08);
    transition: all 0.22s ease;
}

.nav-links a i {
    font-size: 0.92rem;
    line-height: 1;
}

.nav-links a:hover {
    color: var(--blue-dark);
    background: rgba(126, 200, 238, 0.36);
    border-color: rgba(15, 61, 115, 0.18);
    transform: translateY(-1px);
}

.nav-links a.btn-warning,
.nav-links a.btn.btn-warning {
    background: linear-gradient(135deg, var(--orange) 0%, #f07d34 100%) !important;
    border: 1px solid rgba(191, 79, 16, 0.85) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(226, 103, 31, 0.34);
}

.nav-links a.btn-warning:hover,
.nav-links a.btn.btn-warning:hover {
    background: linear-gradient(135deg, var(--orange-deep) 0%, #d85f1e 100%) !important;
    border-color: rgba(149, 58, 15, 0.9) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.services-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.services-caret {
    font-size: 0.72rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.services-nav-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    display: none;
    flex-direction: column;
    min-width: 220px;
    background: linear-gradient(170deg, rgba(242, 250, 255, 0.98) 0%, rgba(227, 243, 253, 0.96) 100%);
    border: 1px solid rgba(0, 40, 87, 0.14);
    border-radius: 10px;
    padding: 0.4rem 0;
    box-shadow: 0 12px 28px rgba(15, 61, 115, 0.16);
    z-index: 1200;
}

.services-nav-item.open .services-nav-submenu {
    display: block;
}

.services-nav-item.open .services-caret {
    transform: rotate(180deg);
}

.services-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    color: #1a1a1a;
    font-size: 0.98rem;
    line-height: 1.2;
    border-bottom: 1px solid #eef2f6;
    white-space: nowrap;
}

.services-nav-btn i {
    color: var(--blue-dark);
    font-size: 0.9rem;
}

.services-nav-btn:last-child {
    border-bottom: none;
}

.services-nav-btn:hover {
    background: rgba(126, 200, 238, 0.44);
    color: var(--blue-dark) !important;
}

.nav-links a.btn-contact {
    background: var(--orange);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.nav-links a.btn-contact:hover {
    background: var(--orange-deep);
    color: white;
}

/* Section Accueil */
.home-poster {
    position: relative;
    min-height: 100vh;
    padding-bottom: 34vh;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(15, 61, 115, 0.9) 0%, rgba(20, 77, 144, 0.93) 55%, rgba(28, 89, 161, 0.96) 100%),
        radial-gradient(circle at 20% 20%, rgba(126, 200, 238, 0.2) 0%, transparent 36%),
        radial-gradient(circle at 80% 75%, rgba(126, 200, 238, 0.16) 0%, transparent 35%);
    overflow: hidden;
}

.home-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04) 75%, transparent 75%, transparent);
    background-size: 120px 120px;
    opacity: 0.18;
    pointer-events: none;
    animation: texture-drift 16s linear infinite;
}

.home-poster-overlay {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 4.6rem 1.2rem 2rem;
}

.home-kicker {
    letter-spacing: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    animation: rise-in-soft 0.55s ease both;
}

.home-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.08;
    margin: 0 auto 1.4rem;
    max-width: 760px;
    font-weight: 700;
    animation: rise-in-soft 0.65s ease 0.08s both;
}

.home-description {
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto 2rem;
    opacity: 0.96;
    animation: rise-in-soft 0.75s ease 0.15s both;
}

.home-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: transform 0.2s ease, background 0.2s ease;
    animation: rise-in-soft 0.8s ease 0.22s both;
}

.home-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    background: var(--orange-deep);
}

.home-points {
    list-style: none;
    margin: 2rem auto 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    max-width: 830px;
    font-size: 1rem;
    line-height: 1.35;
}

.home-points li {
    background: rgba(126, 200, 238, 0.2);
    border: 1px solid rgba(126, 200, 238, 0.45);
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    backdrop-filter: blur(1px);
    animation: rise-in-soft 0.55s ease both;
}

.home-points li:nth-child(1) { animation-delay: 0.22s; }
.home-points li:nth-child(2) { animation-delay: 0.28s; }
.home-points li:nth-child(3) { animation-delay: 0.34s; }
.home-points li:nth-child(4) { animation-delay: 0.40s; }
.home-points li:nth-child(5) { animation-delay: 0.46s; }

.home-reviews {
    margin: 1.6rem auto 0;
    text-align: left;
    background: rgba(8, 30, 58, 0.45);
    border: 1px solid rgba(126, 200, 238, 0.35);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(2px);
    max-width: 920px;
    animation: rise-in-soft 0.88s ease 0.28s both;
}

.home-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.home-reviews-head h2 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: #fff;
}

.home-reviews-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 0%, #ef833f 100%);
    color: #fff;
    white-space: nowrap;
}

.home-reviews-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.home-review-card {
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(126, 200, 238, 0.33);
}

.home-review-text {
    margin: 0 0 0.45rem;
    color: #eff7ff;
    font-size: 0.93rem;
    line-height: 1.45;
}

.home-review-meta {
    margin: 0;
    color: #bfe7ff;
    font-size: 0.82rem;
    font-weight: 700;
}

.home-truck-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 34vh;
    z-index: 1;
}

.home-truck-image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    filter: saturate(1.05) contrast(1.05);
    animation: image-breathe 9s ease-in-out infinite;
}

.home-truck-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 27, 53, 0.85) 0%, rgba(10, 27, 53, 0.35) 35%, transparent 75%);
    pointer-events: none;
}

.home-truck-brand {
    position: absolute;
    left: 50%;
    bottom: 1.3rem;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

/* Section Services */
.services-section {
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f2fc 55%, #f4f8fe 100%);
    padding: 3.2rem 0.8rem 2.5rem;
    scroll-margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.services-kicker {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.45rem;
}

.services-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem;
    margin-top: 1.4rem;
    text-align: left;
    align-items: start;
}

.service-detail-left {
    display: flex;
    flex-direction: column;
}

.service-detail-right {
    min-width: 0;
}

.services-title {
    text-align: center;
    font-size: clamp(1.7rem, 3.3vw, 2.6rem);
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 1.35rem;
    line-height: 1.1;
}

.services-lead {
    text-align: center;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    color: #111;
    margin-bottom: 2.0rem;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.service-btn {
    border: 1.5px solid var(--blue-dark);
    background: #fff;
    color: var(--blue-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.6rem 1.3rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(15,61,115,0.08);
}

.service-btn:hover {
    background: #e8f2fc;
    box-shadow: 0 4px 14px rgba(15,61,115,0.14);
    transform: translateY(-2px);
}

.service-btn.active {
    background: var(--blue-dark);
    color: #fff;
    border-color: var(--blue-dark);
    box-shadow: 0 4px 16px rgba(15,61,115,0.25);
}

.service-btn i {
    font-size: 0.9rem;
}

.service-content-card {
    max-width: 1300px;
    margin: 0 auto 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.1rem 1.4rem 1.1rem 1.6rem;
    border: 1px solid rgba(15, 61, 115, 0.1);
    border-left: 4px solid var(--orange);
    box-shadow: 0 4px 20px rgba(15,61,115,0.07);
}

.service-content-card h3 {
    color: var(--orange);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    margin-bottom: 0.5rem;
}

.service-content-card p {
    color: #111;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.45;
    margin: 0;
}

#service-content-text {
    display: grid;
    gap: 0.6rem;
}

#service-content-text p {
    margin: 0;
}

#service-content-text .taxi-line,
#service-content-text .admin-line {
    color: var(--orange);
    font-weight: 700;
}

.services-intro {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: #111;
    margin-bottom: 0.8rem;
}

.services-list {
    list-style: none;
    padding-left: 5rem;
    margin-bottom: 1.3rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.15rem 0;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    line-height: 1.15;
}

.service-emoji {
    font-size: 0.98em;
}

.service-main {
    color: var(--orange);
    font-weight: 700;
}

.services-note {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.35;
    color: var(--blue-dark);
    font-weight: 500;
    margin-bottom: 0;
}

.services-images-placeholder {
    background: #ffffff;
    border: 1px solid rgba(15,61,115,0.10);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15,61,115,0.07);
}

.service-images-carousel {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.service-carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-carousel-slide img.rotate-fix-90 {
    object-fit: cover;
    transform: rotate(-90deg) scale(1.32);
    transform-origin: center;
    background: transparent;
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.service-images-carousel {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-images-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.88;
}

.service-images-carousel #service-prev-btn {
    left: 12px;
}

.service-images-carousel #service-next-btn {
    right: 12px;
}

.service-carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: 0;
}

.service-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-carousel-slide {
    min-width: 100%;
    position: relative;
}

.service-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.service-dot:hover {
    background: #bbb;
}

.service-dot.active {
    background: var(--blue-sky);
    transform: scale(1.2);
}

.image-slot {
    background: #f5f8fb;
    border: 1px dashed #bcd5e6;
    border-radius: 10px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d9fb8;
    font-weight: 600;
}

.accent-blue {
    color: var(--blue-sky);
    font-weight: 700;
}

.services-deco {
    position: absolute;
    right: 2rem;
    bottom: -0.6rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
}

/* Section Qui sommes-nous */
.about-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f2fc 55%, #f4f8fe 100%);
}

.about-section.about-page {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f2fc 55%, #f4f8fe 100%);
}

/* Values Page */
.values-page-main {
    min-height: calc(100vh - 150px);
    padding: 2.6rem 1rem 3rem;
    background:
        radial-gradient(circle at 15% 15%, rgba(126, 200, 238, 0.24) 0%, transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(226, 103, 31, 0.14) 0%, transparent 22%),
        linear-gradient(145deg, #f4faff 0%, #ffffff 52%, #fff9f4 100%);
}

.values-hero {
    max-width: 1120px;
    margin: 0 auto 1.35rem;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1rem;
    align-items: stretch;
}

.values-hero-copy,
.values-hero-panel,
.values-commitment {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 61, 115, 0.1);
    box-shadow: 0 18px 40px rgba(15, 61, 115, 0.08);
}

.values-hero-copy {
    padding: clamp(1.35rem, 3vw, 2.4rem);
}

.values-kicker {
    margin: 0 0 0.65rem;
    color: var(--orange);
    font-size: 0.92rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.values-kicker.small {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.values-hero-copy h1 {
    margin: 0;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.05;
}

.values-intro {
    margin: 1rem 0 0;
    color: #24374c;
    font-size: clamp(1.05rem, 1.65vw, 1.28rem);
    line-height: 1.65;
}

.values-intro span {
    color: #5aaad7;
    font-weight: 800;
}

.values-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.values-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(126, 200, 238, 0.16);
    border: 1px solid rgba(126, 200, 238, 0.36);
    color: var(--blue-dark);
    font-weight: 700;
}

.values-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    align-items: stretch;
    background:
        linear-gradient(155deg, rgba(15, 61, 115, 0.98) 0%, rgba(27, 87, 153, 0.98) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.values-hero-panel::before,
.values-hero-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(126, 200, 238, 0.12);
}

.values-hero-panel::before {
    width: 180px;
    height: 180px;
    top: -45px;
    right: -40px;
}

.values-hero-panel::after {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: -15px;
}

.values-panel-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-height: 100%;
    padding: 1.25rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.values-panel-card i {
    font-size: 2rem;
    color: #ffd18b;
    margin-bottom: 1rem;
}

.values-panel-card strong {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
}

.values-panel-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.values-grid-section {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.value-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(18, 50, 87, 0.1);
    border: 1px solid rgba(15, 61, 115, 0.08);
}

.value-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #89c4ea 0%, #72b7e2 100%);
    color: #fff;
    font-size: 3rem;
}

.value-card-body {
    padding: 1.2rem 1.2rem 1.1rem;
}

.value-card-body h2 {
    margin: 0 0 0.4rem;
    color: #111;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.value-card-body p {
    margin: 0;
    color: #27394d;
    font-size: 1.05rem;
    line-height: 1.5;
}

.values-commitment {
    max-width: 1120px;
    margin: 1.2rem auto 0;
    padding: 1.55rem;
    display: grid;
    grid-template-columns: 1.3fr auto;
    align-items: center;
    gap: 1.1rem;
    background:
        radial-gradient(circle at top right, rgba(126, 200, 238, 0.18) 0%, transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.96) 100%);
}

.values-commitment-copy {
    display: grid;
    gap: 0.7rem;
}

.values-commitment h2 {
    margin: 0;
    color: var(--blue-dark);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.15;
    max-width: 560px;
}

.values-commitment p {
    margin: 0;
    max-width: 720px;
    color: #30465e;
    font-size: 1.02rem;
    line-height: 1.7;
}

.values-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.15rem;
}

.values-proof-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(126, 200, 238, 0.14);
    border: 1px solid rgba(126, 200, 238, 0.26);
    color: var(--blue-dark);
    font-weight: 600;
}

.values-proof-list i {
    color: var(--orange);
}

.values-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    min-width: 250px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.values-cta.primary {
    background: linear-gradient(135deg, var(--orange) 0%, #ee8a4e 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(191, 79, 16, 0.24);
}

.values-cta:hover {
    transform: translateY(-1px);
}

.values-cta.primary:hover {
    color: #fff;
    box-shadow: 0 14px 28px rgba(191, 79, 16, 0.28);
}

/* Avis Page */
.avis-page-main {
    min-height: calc(100vh - 150px);
    padding: 2.6rem 1rem 3rem;
    background:
        radial-gradient(circle at 16% 20%, rgba(126, 200, 238, 0.25) 0%, transparent 32%),
        radial-gradient(circle at 84% 16%, rgba(226, 103, 31, 0.14) 0%, transparent 26%),
        linear-gradient(145deg, #edf7ff 0%, #ffffff 56%, #fff8ef 100%);
}

.avis-page-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.avis-kicker {
    margin: 0;
    color: var(--orange);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.avis-title {
    margin: 0.35rem 0 0;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.06;
}

.avis-subtitle {
    margin: 0.9rem 0 1.2rem;
    color: #2b3f55;
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    max-width: 760px;
}

.avis-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.avis-list-card,
.avis-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 61, 115, 0.14);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 14px 30px rgba(15, 61, 115, 0.1);
}

.avis-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.avis-list-head h2,
.avis-form-card h2 {
    margin: 0;
    color: var(--blue-dark);
    font-size: 1.2rem;
}

#avis-count {
    color: #304e6f;
    font-weight: 700;
    font-size: 0.9rem;
}

.avis-list {
    display: grid;
    gap: 0.65rem;
}

.avis-item {
    border-radius: 14px;
    border: 1px solid rgba(126, 200, 238, 0.36);
    background: linear-gradient(150deg, #f4fbff 0%, #ffffff 100%);
    padding: 0.85rem;
}

.avis-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.avis-item-name {
    margin: 0;
    color: #11253b;
    font-size: 1rem;
}

.avis-item-service {
    color: #2d4f75;
    font-weight: 700;
    font-size: 0.82rem;
    background: rgba(126, 200, 238, 0.2);
    border: 1px solid rgba(126, 200, 238, 0.3);
    border-radius: 999px;
    padding: 0.18rem 0.6rem;
}

.avis-item-stars {
    margin: 0.35rem 0;
    color: #d9821e;
    font-size: 1rem;
    letter-spacing: 1px;
}

.avis-item-message {
    margin: 0;
    color: #23384f;
    line-height: 1.5;
}

.avis-item-date {
    margin: 0.45rem 0 0;
    color: #5e7993;
    font-size: 0.8rem;
    font-weight: 600;
}

.avis-empty {
    margin: 0;
    color: #45627f;
}

.avis-pagination {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.avis-page-btn {
    min-height: 36px;
    border: 1px solid rgba(15, 61, 115, 0.28);
    border-radius: 10px;
    padding: 0.3rem 0.75rem;
    background: #fff;
    color: var(--blue-dark);
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.avis-page-btn:hover:not(:disabled) {
    background: var(--blue-dark);
    color: #fff;
}

.avis-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#avis-page-info {
    font-weight: 700;
    color: #2b4865;
    font-size: 0.9rem;
}

.avis-form {
    display: grid;
    gap: 0.35rem;
}

.avis-form label {
    color: #11253b;
    font-weight: 700;
    margin-top: 0.35rem;
}

.avis-form input,
.avis-form select,
.avis-form textarea {
    width: 100%;
    border: 1px solid rgba(15, 61, 115, 0.2);
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    background: #fff;
}

.avis-form textarea {
    resize: vertical;
}

.avis-form input:focus,
.avis-form select:focus,
.avis-form textarea:focus {
    outline: none;
    border-color: var(--blue-sky);
    box-shadow: 0 0 0 3px rgba(126, 200, 238, 0.2);
}

.avis-submit-btn {
    margin-top: 0.55rem;
    min-height: 46px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange) 0%, #ef833f 100%);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 10px 20px rgba(226, 103, 31, 0.22);
}

.avis-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(226, 103, 31, 0.28);
}

.avis-note {
    margin: 0.7rem 0 0;
    color: #4b6580;
    font-size: 0.82rem;
}

/* Contact Page */
.contact-page-main {
    min-height: calc(100vh - 150px);
    padding: 3rem 1rem 2.5rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(126, 200, 238, 0.28) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(245, 124, 0, 0.2) 0%, transparent 32%),
        linear-gradient(135deg, #edf6ff 0%, #f8fbff 45%, #fff8ef 100%);
}

.contact-page-shell {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 61, 115, 0.15);
    border-radius: 24px;
    padding: clamp(1.3rem, 2.3vw, 2.1rem);
    box-shadow: 0 20px 42px rgba(15, 61, 115, 0.12);
}

.contact-page-kicker {
    margin: 0 0 0.45rem;
    color: var(--orange);
    font-weight: 800;
    font-size: clamp(1.2rem, 2.2vw, 1.9rem);
}

.contact-page-title {
    margin: 0;
    color: var(--blue-dark);
    font-size: clamp(1.6rem, 3.1vw, 2.5rem);
    font-weight: 800;
}

.contact-page-subtitle {
    margin: 1rem 0 1.2rem;
    color: #122841;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    border-left: 4px solid var(--blue-sky);
    padding-left: 0.8rem;
}

.contact-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0 0 1rem;
}

.contact-highlight-item {
    background: linear-gradient(145deg, #eef7ff 0%, #ffffff 100%);
    border: 1px solid rgba(15, 61, 115, 0.15);
    border-radius: 14px;
    padding: 0.8rem;
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(126, 200, 238, 0.35);
    margin-bottom: 0.35rem;
}

.contact-highlight-item h2 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: var(--blue-dark);
}

.contact-highlight-item p {
    margin: 0;
    color: #2d435f;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-info-card {
    background: linear-gradient(140deg, #4e87bb 0%, #3f79b0 100%);
    border-radius: 24px;
    padding: clamp(1rem, 1.8vw, 1.5rem);
    color: #fff;
    box-shadow: 0 10px 30px rgba(16, 55, 94, 0.3);
}

.contact-call-block {
    margin: 0 0 0.6rem;
    padding: 0.2rem 0 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-action-block {
    margin: 0.65rem 0 0;
    padding: 0 0 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-action-block:last-child {
    border-bottom: none;
    padding-bottom: 0.1rem;
}

.contact-call-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.55rem;
    font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.call-number-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.call-number-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange) 0%, #ee8a4e 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid rgba(191, 79, 16, 0.28);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 8px 16px rgba(191, 79, 16, 0.2);
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0.7rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    line-height: 1.35;
    border: 1px solid rgba(126, 200, 238, 0.45);
    box-shadow: 0 8px 16px rgba(10, 30, 55, 0.12);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.call-number-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(191, 79, 16, 0.24);
}

.contact-action-btn:hover {
    color: var(--blue-dark);
    background: linear-gradient(135deg, #ffffff 0%, #eaf7ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(10, 30, 55, 0.16);
}

.contact-social-icon {
    color: #ffda8a;
    font-size: 1.15em;
    line-height: 1;
}

.contact-bottom-cta {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.contact-bottom-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    min-height: 46px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-bottom-btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange) 0%, #ee8a4e 100%);
    border: 1px solid rgba(191, 79, 16, 0.28);
    box-shadow: 0 8px 18px rgba(191, 79, 16, 0.2);
}

.contact-bottom-btn.secondary {
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(126, 200, 238, 0.45);
}

.contact-bottom-btn:hover {
    transform: translateY(-1px);
}

.contact-bottom-btn.primary:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
    box-shadow: 0 8px 18px rgba(191, 79, 16, 0.24);
}

.contact-bottom-btn.secondary:hover {
    color: var(--blue-dark);
    background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
    box-shadow: 0 8px 18px rgba(10, 30, 55, 0.16);
}

.call-number-hint {
    margin: 0.55rem 0 0;
    font-size: 0.9rem;
    color: #e6f6ff;
    opacity: 0.95;
}

.contact-line {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin: 0.35rem 0;
    color: #fff;
    text-decoration: none;
    font-size: clamp(1rem, 1.5vw, 1.85rem);
    line-height: 1.35;
}

.contact-line strong {
    color: #dff1ff;
}

.contact-line:hover {
    color: #ffe8d2;
}

.contact-emoji {
    width: 1.4rem;
    flex-shrink: 0;
    text-align: center;
}

.availability-box {
    text-align: center;
    margin-top: 1.2rem;
}

.availability-box h2 {
    color: #d2aa00;
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.availability-box p {
    margin: 0.2rem 0 0;
    color: #d2aa00;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
}

.contact-page-cta {
    margin: 1.15rem 0 0;
    text-align: center;
    color: #0050a4;
    font-size: clamp(1.1rem, 2.2vw, 2rem);
    font-weight: 700;
}

.contact-page-divider {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.divider-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(to right, rgba(15, 61, 115, 0.15), rgba(15, 61, 115, 0.7));
}

.divider-truck {
    font-size: 1.8rem;
}

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

/* Lien actif dans navigation */
.nav-links a.active-link {
    color: #fff;
    background: linear-gradient(135deg, #0f3d73 0%, #1f5d9f 100%);
    border-color: rgba(15, 61, 115, 0.5);
    box-shadow: 0 8px 18px rgba(15, 61, 115, 0.25);
}

.services-nav-btn.active-link {
    background: linear-gradient(135deg, #d8eefc 0%, #bfe3f8 100%);
    color: var(--blue-dark) !important;
}

.nav-links a.active-link i {
    color: #fff;
}

.home-poster-overlay,
.services-inner,
.gallery-carousel,
.about-split,
.contact-page-shell,
.values-hero,
.values-grid-section,
.values-commitment {
    animation: block-rise-in 0.7s ease;
}

.service-btn,
.feature-item,
.value-card,
.contact-highlight-item,
.contact-action-btn,
.service-content-card,
.services-images-placeholder,
.carousel-btn,
.service-dot,
.carousel-dot {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    will-change: transform;
}

.value-card:hover,
.contact-highlight-item:hover,
.service-content-card:hover,
.services-images-placeholder:hover {
    transform: translateY(-4px);
}

.value-card:hover,
.contact-highlight-item:hover,
.feature-item:hover,
.about-right-panel:hover {
    box-shadow: 0 12px 28px rgba(15, 61, 115, 0.16);
}

.floating-call-btn {
    animation: float-pulse 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@keyframes float-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.about-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.7rem;
}

.about-title-left {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--blue-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-align: left;
}

.about-text {
    font-size: 1.08rem;
    color: #3a4a5c;
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: left;
}

.about-features {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.1rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(15,61,115,0.09);
    min-width: 110px;
    border: 1px solid rgba(15,61,115,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,61,115,0.14);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--orange);
}

.feature-item span {
    font-weight: 600;
    color: #002857;
    font-size: 0.9rem;
}

.about-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.65rem 1.4rem;
    border: 2px solid var(--blue-dark);
    border-radius: 999px;
    color: var(--blue-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.about-back-btn:hover {
    background: var(--blue-dark);
    color: #fff;
}

.about-right-panel {
    background: linear-gradient(145deg, var(--blue-dark) 0%, #0a2d5a 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 40px rgba(15,61,115,0.25);
    position: relative;
    overflow: hidden;
}

.about-right-panel::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(126,200,238,0.12);
}

.about-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-stat {
    padding: 1.1rem 0;
    text-align: center;
}

.about-stat-value {
    display: block;
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 800;
    color: var(--blue-sky);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.about-stat-value i {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    color: var(--blue-sky);
}

.about-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.about-stat-divider {
    height: 1px;
    background: rgba(126,200,238,0.2);
}

/* Gallery Section - Carousel */
.gallery-section {
    padding: 2rem 1rem;
    background: #fff;
    position: relative;
}

.gallery-title {
    text-align: center;
    font-size: 1.5rem;
    color: #002857;
    margin-bottom: 1.5rem;
}

.gallery-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Watermark / Bandeau sur les images */
.watermark-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 40, 87, 0.9) 0%, rgba(0, 40, 87, 0.7) 50%, transparent 100%);
    padding: 60px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.watermark-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.carousel-btn {
    background: var(--blue-sky);
    color: var(--blue-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(126, 200, 238, 0.35);
}

.carousel-btn:hover {
    background: #5ab8e0;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot:hover {
    background: #bbb;
}

.carousel-dot.active {
    background: var(--blue-sky);
    transform: scale(1.2);
}

/* Swipe support styles */
.carousel-container {
    touch-action: pan-y;
    user-select: none;
}

/* Bouton Appeler - Hero */
.call-btn-hero {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--orange) 0%, #ee8a4e 100%) !important;
    border: none !important;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(226, 103, 31, 0.5) !important;
}

/* Bouton flottant Appeler */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: linear-gradient(135deg, var(--orange) 0%, #ee8a4e 100%) !important;
    border: none !important;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%) !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 103, 31, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(226, 103, 31, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(226, 103, 31, 0);
    }
}
/* Cars Section - Conservé pour Firebase */
.cars-section {
    padding: 4rem 5%;
}

.cars-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.car-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.car-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.car-card p {
    color: #666;
    margin-bottom: 0.3rem;
}

.car-card .prix {
    color: #e94560;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 1rem;
}

.car-card .btn-delete {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.car-card .btn-delete:hover {
    background: #ff3333;
}

/* Add Car Section */
.add-car-section {
    padding: 4rem 5%;
    background: white;
}

.add-car-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

#car-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    text-align: center;
    background: var(--blue-dark);
    color: white;
}

.contact-section h2 {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
}

.contact-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #0f0f1a;
    color: #888;
    text-align: center;
    padding: 1.5rem;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Message */
.message {
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.message.success {
    background: #d4edda;
    color: #155724;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Menu hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #002857;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    .top-contact-bar {
        height: 34px;
    }

    .top-contact-inner {
        padding: 0 0.7rem;
    }

    .top-contact-left {
        display: none;
    }

    .top-contact-right {
        width: 100%;
        justify-content: flex-end;
        gap: 0.8rem;
    }

    .top-contact-bar a {
        font-size: 0.82rem;
    }

    .navbar {
        top: 34px;
        padding: 0.9rem 4%;
    }

    header {
        height: 122px;
    }

    .logo img {
        height: 64px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 0.65rem;
        gap: 0;
        order: 3;
        margin-top: 1rem;
        background: linear-gradient(165deg, rgba(236, 248, 255, 0.98) 0%, rgba(221, 241, 253, 0.96) 100%);
        border: 1px solid rgba(15, 61, 115, 0.12);
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(15, 61, 115, 0.12);
    }

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

    .nav-links li {
        padding: 0.55rem 0;
        border-bottom: 1px solid rgba(0, 40, 87, 0.1);
    }

    .nav-links a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 220px;
    }

    .services-nav-submenu {
        position: static;
        display: none;
        min-width: 0;
        margin-top: 0.55rem;
        border: 1px solid rgba(0, 40, 87, 0.12);
        box-shadow: none;
        background: #fff;
        padding: 0.25rem 0;
        width: 100%;
    }

    .services-nav-item.open .services-nav-submenu {
        display: block;
    }

    .services-nav-toggle {
        width: 100%;
        justify-content: center;
    }

    .services-nav-btn {
        font-size: 0.95rem;
        padding: 0.6rem 0.8rem;
        text-align: center;
        justify-content: center;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .home-poster-overlay {
        padding: 3.8rem 1rem 1.7rem;
    }

    .home-poster {
        padding-bottom: 30vh;
    }

    .home-truck-wrap {
        height: 30vh;
    }

    .home-title {
        font-size: clamp(1.8rem, 6.2vw, 2.9rem);
    }

    .home-description {
        font-size: 1.05rem;
        line-height: 1.45;
    }

    .home-points {
        gap: 0.4rem;
        font-size: 0.95rem;
    }

    .home-reviews-grid {
        grid-template-columns: 1fr;
    }

    .avis-layout {
        grid-template-columns: 1fr;
    }

    .home-truck-image {
        max-height: 34vh;
    }

    .services-section {
        padding: 2.4rem 1rem 2.2rem;
        scroll-margin-top: 85px;
    }

    .services-body {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-btn {
        border-radius: 10px;
    }

    .services-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-carousel-slide img {
        height: 300px;
    }

    /* Carousel responsive - Tablette */
    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    /* About responsive - Tablette */
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-right-panel {
        order: -1;
        padding: 1.5rem;
    }

    .about-panel-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .about-stat-divider {
        display: none;
    }

    .about-features {
        gap: 1rem;
    }

    .cars-section {
        padding: 2.5rem 4%;
    }

    .cars-section h2 {
        font-size: 1.8rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 2.5rem 4%;
    }

    .contact-page-main {
        padding: 2rem 0.75rem;
    }

    .values-page-main {
        padding: 2rem 0.8rem 2.4rem;
    }

    .values-hero {
        grid-template-columns: 1fr;
    }

    .values-grid-section {
        grid-template-columns: 1fr;
    }

    .values-commitment {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-highlight-grid {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .contact-page-shell {
        border-radius: 18px;
    }

    .contact-info-card {
        border-radius: 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .top-contact-bar {
        height: 32px;
    }

    .top-contact-right {
        gap: 0.65rem;
    }

    .top-contact-bar a {
        font-size: 0.78rem;
    }

    .navbar {
        top: 32px;
    }

    header {
        height: 114px;
    }

    .logo img {
        height: 58px;
    }

    .navbar {
        padding: 0.8rem 4%;
    }

    .home-poster {
        min-height: 92vh;
        padding-bottom: 27vh;
    }

    .home-poster-overlay {
        padding: 2.4rem 0.8rem 1.1rem;
    }

    .home-truck-wrap {
        height: 27vh;
    }

    .home-kicker {
        font-size: 0.8rem;
        letter-spacing: 1.6px;
        margin-bottom: 0.8rem;
    }

    .home-title {
        font-size: 2.1rem;
        line-height: 1.06;
        margin-bottom: 0.9rem;
    }

    .home-description {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }

    .home-cta {
        min-width: 160px;
        padding: 0.72rem 1.2rem;
        font-size: 1rem;
    }

    .home-points {
        margin-top: 1rem;
        gap: 0.35rem;
        font-size: 0.88rem;
        text-align: left;
    }

    .home-points li {
        padding: 0.5rem 0.6rem;
    }

    .home-reviews {
        padding: 0.8rem;
    }

    .home-reviews-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-review-text {
        font-size: 0.9rem;
    }

    .avis-page-main {
        padding: 1.9rem 0.8rem 2.3rem;
    }

    .avis-list-card,
    .avis-form-card {
        border-radius: 16px;
        padding: 0.85rem;
    }

    .avis-item-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-truck-image {
        max-height: 30vh;
        object-position: 58% bottom;
    }

    .home-truck-brand {
        font-size: 0.68rem;
        bottom: 0.85rem;
    }

    .services-section {
        padding: 1.7rem 0.8rem 1.8rem;
        scroll-margin-top: 78px;
    }

    .services-body {
        gap: 1.2rem;
    }

    .service-content-card {
        padding: 0.9rem;
    }

    .service-content-card h3 {
        font-size: 1.1rem;
    }

    .service-content-card p {
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .service-carousel-slide img {
        height: 260px;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
    }

    /* Carousel responsive - Mobile */
    .gallery-carousel {
        gap: 5px;
    }

    .carousel-slide img {
        height: 280px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .carousel-dots {
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Watermark Mobile */
    .watermark-overlay {
        padding: 40px 15px 15px;
    }

    .watermark-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* About responsive - Mobile */
    .about-section {
        padding: 2rem 1rem;
    }

    .about-title-left {
        font-size: 1.4rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-panel-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        gap: 0.8rem;
    }

    .feature-item {
        min-width: 90px;
        padding: 0.8rem;
    }

    .feature-item i {
        font-size: 1.2rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    /* Bouton flottant Mobile */
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .call-btn-hero {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }

    .cars-section,
    .add-car-section,
    .contact-section {
        padding: 2rem 3%;
    }

    .cars-section h2,
    .add-car-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .car-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .car-card h3 {
        font-size: 1.1rem;
    }

    .car-card .prix {
        font-size: 1.2rem;
    }

    .car-card .btn-delete {
        width: 100%;
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .form-group input {
        padding: 0.9rem;
        font-size: 16px; /* Empêche le zoom sur iOS */
    }

    .btn-submit {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .contact-section p {
        font-size: 0.95rem;
    }

    .contact-page-subtitle {
        border-left-width: 3px;
        padding-left: 0.55rem;
        margin-top: 0.85rem;
    }

    .values-hero-copy,
    .values-hero-panel,
    .values-commitment {
        border-radius: 20px;
    }

    .value-card {
        grid-template-columns: 1fr;
    }

    .value-card-icon {
        min-height: 110px;
        font-size: 2.5rem;
    }

    .value-card-body {
        padding: 1rem;
    }

    .value-card-body h2 {
        font-size: 1.35rem;
    }

    .value-card-body p {
        font-size: 1rem;
    }

    .values-cta-group {
        width: 100%;
    }

    .values-cta {
        width: 100%;
    }

    .call-number-row {
        flex-direction: column;
    }

    .call-number-btn {
        width: 100%;
    }

    .contact-action-btn {
        width: 100%;
    }

    .contact-bottom-cta {
        grid-template-columns: 1fr;
    }

    .call-number-hint {
        font-size: 0.86rem;
    }

    .contact-line {
        font-size: 1.05rem;
    }

    .availability-box h2,
    .availability-box p {
        font-size: 1.7rem;
    }

    .contact-page-cta {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    footer {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
}

/* Améliorations tactiles */
@media (hover: none) and (pointer: coarse) {
    .car-card:hover {
        transform: none;
    }

    .btn-submit:hover {
        transform: none;
    }

    .car-card .btn-delete {
        padding: 0.8rem 1.2rem;
    }

    .nav-links a {
        padding: 0.5rem;
    }
}
