/* =========================================================
   ALBERT WHOLESALE / HORIZON EXPORT
   STYLE.CSS — VERSION COMPLETE ET CORRIGEE
========================================================= */


/* =========================================================
   1. VARIABLES
========================================================= */

:root {

    /* ---------- ALBERT WHOLESALE ---------- */

    --kraft: #e7dcc3;
    --kraft-light: #f4eee0;

    --ink: #1c2b3a;
    --ink-soft: #2c3e50;

    --stamp: #a8323d;
    --stamp-dark: #7f2530;

    --brass: #b08d3e;

    --white-aw: #faf6ee;

    --line: rgba(28, 43, 58, 0.18);


    /* ---------- HORIZON TRACKING ---------- */

    --gold: #f5c300;
    --gold2: #c99a00;
    --gold-glow: rgba(245, 195, 0, 0.25);

    --black: #080808;
    --dark: #101010;
    --dark2: #181818;
    --dark3: #222222;
    --dark4: #2a2a2a;

    --white: #f2ede6;
    --muted: rgba(242, 237, 230, 0.45);

    --green: #00e676;
    --red: #ff4444;
    --blue: #40c4ff;
    --orange: #ff9800;

    --r: 16px;
    --r2: 10px;

    --sh: 0 12px 48px rgba(0, 0, 0, 0.7);
}

/* =========================================================
   2. RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--kraft-light);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
}

.mono {
    font-family: "Space Mono", monospace;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}


/* =========================================================
   4. EYEBROW
========================================================= */

.eyebrow {
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stamp);

    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--stamp);
    display: inline-block;
}


/* =========================================================
   5. HEADER / NAVIGATION
========================================================= */

header,
.aw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 200;

    background: rgba(28, 43, 58, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-bottom: 1px solid rgba(250, 246, 238, 0.06);
}

nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 64px;
    height: 64px;

    gap: 18px;
}

.brand {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;

    font-size: 1.25rem;
    letter-spacing: 0.04em;

    color: var(--white-aw);
    text-transform: uppercase;

    white-space: nowrap;
}

.brand span {
    color: var(--stamp);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 0.85rem;
    color: rgba(250, 246, 238, 0.8);

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a {
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--brass);

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--white-aw);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    background: var(--stamp);
    color: var(--white-aw);

    padding: 9px 18px;

    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    border-radius: 2px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--stamp-dark);
    transform: translateY(-1px);
}


/* =========================================================
   6. BOUTON ADMIN NAVIGATION
========================================================= */

.aw-header .admin-trigger {
    background: transparent;

    border: 1px solid rgba(245, 195, 0, 0.3);
    border-radius: 6px;

    padding: 7px 12px;

    font-family: "Inter", sans-serif;
    font-size: 0.7rem;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(245, 195, 0, 0.8);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;

    display: flex;
    align-items: center;
    gap: 6px;

    margin-left: 8px;
}

.aw-header .admin-trigger:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 195, 0, 0.05);
}

.aw-header .admin-trigger i {
    font-size: 1rem;
}


/* =========================================================
   7. MENU MOBILE — BOUTON
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(250, 246, 238, 0.25);
    background: transparent;

    color: var(--white);

    border-radius: 4px;

    align-items: center;
    justify-content: center;

    font-size: 1.6rem;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(250, 246, 238, 0.08);
    border-color: var(--white);
}

.menu-toggle.active {
    background: var(--stamp);
    border-color: var(--stamp);
}

.menu-toggle i {
    transition: transform 0.25s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}


/* =========================================================
   8. MENU MOBILE
========================================================= */

.mobile-menu {
    display: none;

    position: fixed;

    top: 64px;
    left: 0;
    right: 0;

    z-index: 199;

    background: rgba(28, 43, 58, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 15px 20px 20px;

    border-top: 1px solid rgba(250, 246, 238, 0.08);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);

    transform: translateY(-15px);
    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 13px;

    color: rgba(250, 246, 238, 0.85);

    padding: 15px 10px;

    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    border-bottom: 1px solid rgba(250, 246, 238, 0.08);

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-menu a i {
    color: var(--brass);
    font-size: 1.2rem;
}

.mobile-menu a:hover {
    color: var(--white);
    padding-left: 16px;
}

.mobile-menu .mobile-whatsapp {
    margin-top: 12px;

    justify-content: center;

    background: var(--stamp);
    color: var(--white);

    border: none;

    padding: 13px;
}

.mobile-menu .mobile-whatsapp i {
    color: var(--white);
}


/* =========================================================
   11. BOUTONS ALBERT
========================================================= */

.btn-primary,
.btn-ghost {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 26px;

    font-size: 0.85rem;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    font-weight: 600;

    border-radius: 2px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.btn-primary {
    border: 1px solid transparent;

    background: var(--stamp);

    color: var(--white-aw);
}

.btn-primary:hover {
    background: var(--stamp-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    border: 1px solid rgba(250, 246, 238, 0.35);

    color: var(--white-aw);

    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--white-aw);
    background: rgba(250, 246, 238, 0.06);
}


/* =========================================================
   12. TICKET
========================================================= */

.ticket-container {
    position: relative;
}

.ticket {
    background: var(--kraft-light);

    color: var(--ink);

    padding: 26px 24px;

    border-radius: 2px;

    position: relative;

    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.55);

    transform: rotate(1.5deg);
}

.ticket::after {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px dashed var(--line);

    pointer-events: none;
}

.ticket-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-family: "Space Mono", monospace;

    font-size: 0.74rem;

    padding: 7px 0;

    border-bottom: 1px solid var(--line);
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-row span:first-child {
    color: var(--ink-soft);

    text-transform: uppercase;

    letter-spacing: 0.05em;
}

.ticket-row span:last-child {
    font-weight: 700;

    text-align: right;
}

.stamp-badge {
    position: absolute;

    top: -22px;
    right: -14px;

    width: 88px;
    height: 88px;

    border-radius: 50%;

    border: 2px solid var(--stamp);

    color: var(--stamp);

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: "Space Mono", monospace;

    font-size: 0.58rem;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    transform: rotate(-14deg);

    background: var(--kraft-light);

    line-height: 1.25;
}


/* =========================================================
   13. SECTIONS ALBERT
========================================================= */

section {
    padding: 96px 0;
}

.section-head {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 24px;

    margin-bottom: 52px;

    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-head p {
    max-width: 360px;

    color: var(--ink-soft);

    font-size: 0.95rem;
}


/* =========================================================
   14. CATALOGUE
========================================================= */

.catalogue {
    background: var(--white-aw);
}

.lot {
    display: grid;

    grid-template-columns: 110px 1fr auto;

    gap: 28px;

    align-items: center;

    padding: 30px 0;

    border-top: 1px solid var(--line);
}

.lot:last-child {
    border-bottom: 1px solid var(--line);
}

.lot-code {
    font-family: "Space Mono", monospace;

    font-size: 0.95rem;

    color: var(--stamp);

    font-weight: 700;
}

.lot-body h3 {
    font-size: 1.7rem;

    margin-bottom: 8px;

    font-weight: 700;
}

.lot-body p {
    color: var(--ink-soft);

    font-size: 0.95rem;

    max-width: 520px;
}

.lot-link {
    font-family: "Space Mono", monospace;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    color: var(--ink);

    border-bottom: 1px solid var(--ink);

    padding-bottom: 3px;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.lot-link:hover {
    color: var(--stamp);
    border-color: var(--stamp);
}


/* =========================================================
   15. IMAGES CATALOGUE
========================================================= */

.lot-image {
    width: 110px;
    height: 90px;

    overflow: hidden;

    border-radius: 8px;

    background: var(--kraft);

    border: 1px solid var(--line);

    flex-shrink: 0;
}

.lot-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.35s ease;
}

.lot:hover .lot-image img {
    transform: scale(1.06);
}


/* =========================================================
   16. POURQUOI NOUS
========================================================= */

.why {
    background: var(--kraft-light);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: var(--line);

    border: 1px solid var(--line);
}

.why-card {
    background: var(--kraft-light);

    padding: 34px 26px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.why-card:hover {
    background: var(--white-aw);

    transform: translateY(-3px);
}

.why-card .mono {
    font-size: 0.72rem;

    color: var(--brass);

    letter-spacing: 0.08em;
}

.why-card h3 {
    font-size: 1.35rem;

    margin: 14px 0 10px;

    font-weight: 700;
}

.why-card p {
    font-size: 0.88rem;

    color: var(--ink-soft);
}


/* =========================================================
   17. PROCESS
========================================================= */

.process {
    background: var(--ink);

    color: var(--white-aw);
}

.process h2,
.process h3 {
    color: var(--white-aw);
}

.process .section-head p {
    color: rgba(250, 246, 238, 0.62);
}

.process .eyebrow {
    color: var(--brass);
}

.process .eyebrow::before {
    background: var(--brass);
}

.steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    position: relative;
}

.step {
    border-top: 2px solid rgba(250, 246, 238, 0.2);

    padding-top: 20px;
}

.step .num {
    font-family: "Space Mono", monospace;

    font-size: 0.85rem;

    color: var(--stamp);

    display: block;

    margin-bottom: 14px;
}

.step h3 {
    font-size: 1.3rem;

    margin-bottom: 10px;

    font-weight: 700;
}

.step p {
    font-size: 0.87rem;

    color: rgba(250, 246, 238, 0.6);
}


/* =========================================================
   18. CONTACT
========================================================= */

.contact {
    background: var(--white-aw);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);

    margin-bottom: 18px;
}

.contact p.lead {
    color: var(--ink-soft);

    margin-bottom: 30px;

    max-width: 440px;
}

.contact-card {
    background: var(--ink);

    color: var(--white-aw);

    padding: 38px;

    border-radius: 2px;

    position: relative;
}

.contact-card h3 {
    color: var(--white-aw);
}

.contact-card .mono {
    font-size: 0.72rem;

    color: var(--brass);

    letter-spacing: 0.1em;

    display: block;

    margin-bottom: 6px;
}

.contact-card h3 {
    font-size: 1.9rem;

    margin-bottom: 22px;

    font-weight: 700;
}

.contact-line {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-top: 1px solid rgba(250, 246, 238, 0.15);

    font-size: 0.92rem;
}

.contact-line:last-of-type {
    border-bottom: 1px solid rgba(250, 246, 238, 0.15);
}

.contact-line span:first-child {
    color: rgba(250, 246, 238, 0.55);

    text-transform: uppercase;

    font-size: 0.75rem;

    letter-spacing: 0.06em;
}

.contact-card .btn {
    margin-top: 26px;

    width: 100%;
}


/* =========================================================
   19. FOOTER
========================================================= */

footer {
    background: var(--ink);

    color: rgba(250, 246, 238, 0.45);

    text-align: center;

    padding: 26px 0;

    font-size: 0.78rem;

    border-top: 1px solid rgba(250, 246, 238, 0.1);
}


/* =========================================================
   20. ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity 1.3s ease,
        transform 1.3s ease;
}

.reveal.in {
    opacity: 1;

    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   21. HORIZON TRACKING — SECTION
========================================================= */

.tracking-section {
    background: var(--black);

    padding: 0 0 60px;

    color: var(--white);

    position: relative;
}

.tracking-header {
    background: var(--black);

    border-bottom: 1.5px solid var(--gold);

    padding: 60px 24px 30px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.tracking-header::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(245, 195, 0, 0.08) 0%,
            transparent 65%
        );

    pointer-events: none;
}

.logo-plane {
    font-size: 2.8rem;

    color: var(--gold);

    filter: drop-shadow(
        0 0 14px var(--gold)
    );

    animation: float 3s ease-in-out infinite;

    display: block;

    margin-bottom: 8px;
}

.tracking-title {
    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(2rem, 7vw, 3rem);

    letter-spacing: 3px;

    color: var(--gold);

    text-shadow:
        0 0 40px rgba(245, 195, 0, 0.4);

    line-height: 1;

    margin: 0;

    text-transform: uppercase;
}

.header-sub {
    font-size: 0.75rem;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 600;

    margin-top: 8px;

    font-family: "Syne", sans-serif;
}

.tracking-main {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 520px;

    margin: 0 auto;

    padding: 32px 18px 0;
}


/* =========================================================
   22. TRACKING TITLES
========================================================= */

.stitle {
    font-family: "Bebas Neue", sans-serif;

    font-size: 1.5rem;

    letter-spacing: 3px;

    color: var(--white);

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    gap: 10px;
}

.stitle::before {
    content: "";

    flex-shrink: 0;

    width: 4px;
    height: 20px;

    border-radius: 2px;

    background: var(--gold);

    box-shadow:
        0 0 10px var(--gold);
}


/* =========================================================
   23. HORIZON CARD
========================================================= */

.card {
    background: var(--dark2);

    border: 1px solid rgba(245, 195, 0, 0.12);

    border-radius: var(--r);

    padding: 22px;

    box-shadow: var(--sh);

    margin-bottom: 20px;
}

.card-label {
    font-size: 0.7rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--gold);

    font-weight: 700;

    margin-bottom: 16px;

    display: flex;

    align-items: center;

    gap: 6px;

    font-family: "Syne", sans-serif;
}

.card-label i {
    font-size: 1rem;
}


/* =========================================================
   24. INPUTS TRACKING
========================================================= */

.input-wrap {
    position: relative;

    margin-bottom: 14px;
}

.input-icon {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--gold);

    font-size: 1.1rem;

    pointer-events: none;

    display: flex;

    align-items: center;

    z-index: 2;
}

.tracking-section input[type="text"],
.tracking-section input[type="password"],
.tracking-section input[type="number"],
.tracking-section input[type="email"],
.tracking-section input[type="tel"],
.tracking-section select,
.tracking-section textarea,

.overlay input[type="text"],
.overlay input[type="password"],
.overlay input[type="number"],
.overlay input[type="email"],
.overlay input[type="tel"],
.overlay select,
.overlay textarea {

    width: 100%;

    background: var(--dark3);

    border: 1.5px solid rgba(245, 195, 0, 0.18);

    border-radius: var(--r2);

    padding: 15px 15px 15px 44px;

    color: var(--white);

    font-family: "Space Mono", monospace;

    font-size: 0.9rem;

    letter-spacing: 1px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    -webkit-appearance: none;
    appearance: none;
}

.tracking-section input:focus,
.tracking-section select:focus,
.tracking-section textarea:focus,

.overlay input:focus,
.overlay select:focus,
.overlay textarea:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px var(--gold-glow);
}

.tracking-section input::placeholder,
.tracking-section textarea::placeholder,

.overlay input::placeholder,
.overlay textarea::placeholder {

    color: rgba(242, 237, 230, 0.3);

    font-size: 0.85rem;
}

.tracking-section select,
.overlay select {
    padding-left: 44px;

    cursor: pointer;
}

.tracking-section select option,
.overlay select option {
    background: var(--dark3);

    color: var(--white);
}

.tracking-section textarea,
.overlay textarea {
    resize: vertical;

    min-height: 80px;

    padding-top: 14px;

    font-family: "Syne", sans-serif;

    letter-spacing: 0;
}


/* =========================================================
   25. BOUTONS TRACKING
========================================================= */

.btn-gold {
    width: 100%;

    border: none;

    border-radius: var(--r2);

    padding: 16px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 1.1rem;

    letter-spacing: 3px;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: var(--gold);

    color: var(--black);
}

.btn-gold:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 32px rgba(245, 195, 0, 0.5);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;

    color: var(--gold);

    border: 1.5px solid rgba(245, 195, 0, 0.4);

    border-radius: var(--r2);

    padding: 16px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 1.1rem;

    letter-spacing: 3px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    transition: all 0.2s;

    width: 100%;
}

.btn-outline:hover {
    background: rgba(245, 195, 0, 0.07);

    border-color: var(--gold);
}

.btn-sm {
    padding: 10px 16px;

    font-size: 0.85rem;

    letter-spacing: 2px;

    width: auto;
}

.spinner {
    display: none;

    width: 18px;
    height: 18px;

    border: 2px solid transparent;

    border-top-color: var(--black);

    border-radius: 50%;

    animation: spin 0.7s linear infinite;
}


/* =========================================================
   26. BADGES
========================================================= */

.badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 14px;

    border-radius: 100px;

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.badge .dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: currentColor;

    animation: pulse 1.6s infinite;
}

.b-transit {
    background: rgba(0, 230, 118, 0.1);

    color: var(--green);

    border: 1px solid rgba(0, 230, 118, 0.3);
}

.b-delivered {
    background: rgba(245, 195, 0, 0.1);

    color: var(--gold);

    border: 1px solid rgba(245, 195, 0, 0.3);
}

.b-pending {
    background: rgba(255, 152, 0, 0.1);

    color: var(--orange);

    border: 1px solid rgba(255, 152, 0, 0.3);
}

.b-blocked {
    background: rgba(255, 68, 68, 0.1);

    color: var(--red);

    border: 1px solid rgba(255, 68, 68, 0.3);
}


/* =========================================================
   27. RESULT PANEL
========================================================= */

#resultPanel {
    display: none;

    animation: fadeUp 0.4s ease both;
}

.info-row {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.info-row:first-child {
    padding-top: 0;
}

.info-label {
    font-size: 0.68rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 600;

    font-family: "Syne", sans-serif;
}

.info-value {
    font-size: 0.95rem;

    font-weight: 700;

    color: var(--white);

    word-break: break-word;
}

.info-value.mono {
    font-family: "Space Mono", monospace;

    font-size: 0.88rem;
}


/* =========================================================
   28. PHOTO COLIS
========================================================= */

.parcel-photo-container {
    width: 100%;

    margin-bottom: 18px;
}

.parcel-photo {
    width: 100%;

    height: 200px;

    object-fit: cover;

    border-radius: 12px;

    margin-bottom: 0;

    border: 1px solid rgba(245, 195, 0, 0.15);

    display: block;
}

.photo-placeholder {
    width: 100%;

    height: 140px;

    border-radius: 12px;

    background: var(--dark3);

    border: 2px dashed rgba(245, 195, 0, 0.2);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: var(--muted);

    font-size: 0.8rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

    font-family: "Syne", sans-serif;
}

.photo-placeholder i {
    font-size: 2.2rem;

    color: var(--muted);
}


/* =========================================================
   29. PROGRESSION
========================================================= */

.prog-wrap {
    margin-top: 6px;
}

.prog-meta {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--muted);

    margin-bottom: 8px;

    font-family: "Syne", sans-serif;
}

.prog-track {
    height: 7px;

    background: var(--dark4);

    border-radius: 100px;

    overflow: hidden;
}

.prog-fill {
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--gold2),
            var(--gold)
        );

    border-radius: 100px;

    width: 0%;

    transition:
        width 1.4s cubic-bezier(0.16, 1, 0.3, 1);

    box-shadow:
        0 0 14px rgba(245, 195, 0, 0.6);
}


/* =========================================================
   30. TIMELINE TRACKING
========================================================= */

.step-tracking {
    display: flex;

    gap: 14px;

    padding: 14px 0;

    animation: fadeUp 0.35s ease both;
}

.step-col {
    display: flex;

    flex-direction: column;

    align-items: center;

    flex-shrink: 0;

    width: 26px;
}

.step-dot {
    width: 26px;
    height: 26px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.8rem;

    font-weight: 700;

    flex-shrink: 0;
}

.step-dot i {
    font-size: 0.9rem;
}

.sd-done {
    background: var(--gold);

    color: var(--black);
}

.sd-active {
    background: var(--green);

    color: var(--black);

    box-shadow:
        0 0 14px rgba(0, 230, 118, 0.5);
}

.sd-next {
    background: var(--dark4);

    color: var(--muted);

    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.step-line {
    flex: 1;

    width: 2px;

    background: rgba(255, 255, 255, 0.06);

    margin-top: 4px;
}

.step-line.done-line {
    background: var(--gold2);
}

.step-body {
    flex: 1;

    min-width: 0;

    padding-bottom: 6px;
}

.step-title {
    font-size: 0.88rem;

    font-weight: 700;

    color: var(--white);

    font-family: "Syne", sans-serif;

    word-break: break-word;
}

.step-title.faded {
    color: var(--muted);
}

.step-desc {
    font-size: 0.75rem;

    color: var(--muted);

    margin-top: 3px;

    line-height: 1.5;
}

.step-time {
    font-size: 0.68rem;

    font-family: "Space Mono", monospace;

    color: var(--gold);

    margin-top: 4px;
}


/* =========================================================
   31. MAP LEAFLET
========================================================= */

.map-card {
    border-radius: var(--r);

    overflow: hidden;

    height: 260px;

    position: relative;

    box-shadow: var(--sh);

    margin-bottom: 18px;

    border: 1px solid rgba(245, 195, 0, 0.12);
}

#leafletMap {
    width: 100%;
    height: 100%;

    z-index: 1;
}

.leaflet-container {
    background: #0d0d14;
}

.leaflet-control-zoom a {
    background: var(--dark2);

    color: var(--gold);

    border-color: rgba(245, 195, 0, 0.2);
}

.leaflet-control-zoom a:hover {
    background: var(--dark3);
}

.leaflet-popup-content-wrapper {
    background: var(--dark2);

    color: var(--white);

    border: 1px solid rgba(245, 195, 0, 0.3);

    border-radius: var(--r2);

    box-shadow: var(--sh);
}

.leaflet-popup-tip {
    background: var(--dark2);
}

.leaflet-popup-content {
    font-family: "Space Mono", monospace;

    font-size: 0.78rem;

    color: var(--white);

    margin: 10px 14px;
}

.leaflet-control-attribution {
    background: rgba(8, 8, 8, 0.8);

    color: var(--muted);

    font-size: 0.6rem;
}

.leaflet-control-attribution a {
    color: var(--gold);
}


/* =========================================================
   32. NOTES / WHATSAPP
========================================================= */

.notes-text {
    font-size: 0.88rem;

    line-height: 1.7;

    color: var(--muted);

    word-break: break-word;
}

.btn-wa {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    background: transparent;

    color: var(--gold);

    border: 1.5px solid rgba(245, 195, 0, 0.3);

    border-radius: var(--r2);

    padding: 15px;

    font-family: "Syne", sans-serif;

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    text-decoration: none;

    transition: all 0.2s;
}

.btn-wa i {
    font-size: 1.3rem;
}

.btn-wa:hover {
    background: rgba(245, 195, 0, 0.07);

    border-color: var(--gold);
}


/* =========================================================
   33. NOT FOUND
========================================================= */

#notFound {
    display: none;

    background: var(--dark2);

    border: 1px solid rgba(255, 68, 68, 0.2);

    border-radius: var(--r);

    padding: 32px;

    text-align: center;

    animation: fadeUp 0.35s ease both;
}

#notFound .nfi {
    font-size: 3rem;

    color: var(--red);

    margin-bottom: 12px;
}

#notFound .nfi i {
    font-size: 3rem;
}

#notFound h3 {
    font-family: "Bebas Neue", sans-serif;

    font-size: 1.5rem;

    letter-spacing: 2px;

    color: var(--red);

    margin-bottom: 8px;
}

#notFound p {
    font-size: 0.82rem;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   34. TOAST
========================================================= */

#toast {
    position: fixed;

    bottom: 24px;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(100px);

    background: var(--dark2);

    border: 1px solid rgba(245, 195, 0, 0.3);

    border-radius: 100px;

    padding: 12px 24px;

    font-size: 0.82rem;

    font-weight: 600;

    letter-spacing: 1px;

    color: var(--white);

    z-index: 9999;

    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    white-space: nowrap;

    max-width: calc(100vw - 30px);

    overflow: hidden;

    text-overflow: ellipsis;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6);
}

#toast.show {
    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   35. OVERLAY / MODAL
========================================================= */

.overlay {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 300;

    background: rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    overflow-y: auto;

    padding: 20px 16px;
}

.overlay.open {
    display: flex;

    align-items: flex-start;

    justify-content: center;
}

.modal {
    background: var(--dark);

    border: 1px solid rgba(245, 195, 0, 0.2);

    border-radius: var(--r);

    padding: 28px 22px;

    width: 100%;

    max-width: 520px;

    position: relative;

    animation: fadeUp 0.3s ease both;

    margin: auto;

    color: var(--white);
}

.modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    background: transparent;

    border: none;

    color: var(--muted);

    font-size: 1.4rem;

    cursor: pointer;

    padding: 4px 8px;

    border-radius: 6px;

    transition: color 0.2s;

    display: flex;

    align-items: center;
}

.modal-close:hover {
    color: var(--gold);
}

.modal h2 {
    font-family: "Bebas Neue", sans-serif;

    font-size: 1.6rem;

    letter-spacing: 3px;

    color: var(--gold);

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    gap: 10px;
}

.modal h2 i {
    font-size: 1.6rem;
}


/* =========================================================
   36. FORMULAIRE ADMIN
========================================================= */

.form-label {
    font-size: 0.68rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 700;

    margin-bottom: 6px;

    display: block;

    font-family: "Syne", sans-serif;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding-left: 16px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


/* =========================================================
   37. STEP BUILDER
========================================================= */

.step-builder {
    background: var(--dark3);

    border-radius: var(--r2);

    padding: 14px;

    margin-top: 8px;
}

.step-item {
    display: flex;

    align-items: center;

    gap: 10px;

    background: var(--dark4);

    border-radius: 8px;

    padding: 10px;

    margin-bottom: 8px;

    font-size: 0.8rem;
}

.step-item-icon {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    font-size: 0.9rem;
}

.step-item-icon.done {
    background: var(--gold);

    color: var(--black);
}

.step-item-icon.active {
    background: var(--green);

    color: var(--black);
}

.step-item-icon.next {
    background: var(--dark3);

    color: var(--muted);

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item-text {
    flex: 1;

    min-width: 0;

    word-break: break-word;
}

.step-item-del {
    background: transparent;

    border: none;

    color: var(--red);

    cursor: pointer;

    font-size: 1rem;

    padding: 2px 6px;

    display: flex;

    align-items: center;
}

.add-step-row {
    display: flex;

    gap: 8px;

    margin-top: 10px;

    flex-wrap: wrap;
}

.add-step-row input {
    flex: 1;

    min-width: 100px;

    padding-left: 12px;

    font-size: 0.82rem;
}


/* =========================================================
   38. ADMIN LIST
========================================================= */

.admin-list-title {
    font-size: 0.7rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--muted);

    font-weight: 700;

    margin-bottom: 12px;

    font-family: "Syne", sans-serif;
}

.parcel-item {
    background: var(--dark3);

    border-radius: var(--r2);

    padding: 14px 16px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    gap: 14px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.parcel-item:hover {
    border-color: rgba(245, 195, 0, 0.2);

    transform: translateY(-1px);
}

.parcel-item-num {
    font-family: "Space Mono", monospace;

    font-size: 0.9rem;

    font-weight: 700;

    flex: 1;

    min-width: 0;

    word-break: break-word;
}

.parcel-item-name {
    font-size: 0.75rem;

    color: var(--muted);

    margin-top: 3px;

    word-break: break-word;
}

.parcel-actions {
    display: flex;

    gap: 8px;

    flex-shrink: 0;
}

.parcel-actions button {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    padding: 7px 11px;

    font-size: 1rem;

    cursor: pointer;

    transition: all 0.2s;

    display: flex;

    align-items: center;

    color: var(--white);
}

.parcel-actions .edit-btn:hover {
    border-color: var(--gold);

    color: var(--gold);
}

.parcel-actions .del-btn:hover {
    border-color: var(--red);

    color: var(--red);
}


/* =========================================================
   39. PHOTO UPLOAD ADMIN
========================================================= */

.photo-upload-area {
    border: 2px dashed rgba(245, 195, 0, 0.25);

    border-radius: var(--r2);

    padding: 20px;

    text-align: center;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;

    position: relative;
}

.photo-upload-area:hover {
    border-color: var(--gold);

    background: rgba(245, 195, 0, 0.03);
}

.photo-preview {
    width: 100%;

    height: 120px;

    object-fit: cover;

    border-radius: 8px;

    margin-top: 10px;

    display: none;
}


/* =========================================================
   40. DIVIDER
========================================================= */

.divider {
    height: 1px;

    background: rgba(255, 255, 255, 0.06);

    margin: 20px 0;
}


/* =========================================================
   41. FEATURES
========================================================= */

.features-section {
    margin-bottom: 32px;
}

.features-grid {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.feature-card {
    background: var(--dark2);

    border: 1px solid rgba(245, 195, 0, 0.1);

    border-radius: var(--r);

    padding: 22px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 10px;

    box-shadow: var(--sh);

    transition:
        border-color 0.25s ease,
        transform 0.2s ease;

    position: relative;

    overflow: hidden;
}

.feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity: 0;

    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: rgba(245, 195, 0, 0.3);

    transform: translateY(-2px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: rgba(245, 195, 0, 0.08);

    border: 1.5px solid rgba(245, 195, 0, 0.2);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 4px;
}

.feature-icon i {
    font-size: 1.6rem;

    color: var(--gold);

    filter:
        drop-shadow(
            0 0 8px rgba(245, 195, 0, 0.4)
        );
}

.feature-title {
    font-family: "Bebas Neue", sans-serif;

    font-size: 1.1rem;

    letter-spacing: 2px;

    color: var(--white);

    margin: 0;
}

.feature-desc {
    font-size: 0.78rem;

    color: var(--muted);

    line-height: 1.7;

    letter-spacing: 0.3px;

    margin: 0;
}


/* =========================================================
   42. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold2);

    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* =========================================================
   43. ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brass);

    outline-offset: 2px;
}


/* =========================================================
   44. TABLET — 900PX
========================================================= */

@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-image-wrap {
        max-width: 100%;

        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .lot {
        grid-template-columns: 100px 1fr auto;

        gap: 20px;
    }

    .lot-image {
        width: 100px;

        height: 85px;
    }
}


/* =========================================================
   45. TABLET — 800PX
========================================================= */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-card {
        width: 100%;
    }
}


/* =========================================================
   46. MOBILE NAVIGATION — 760PX
========================================================= */

@media (max-width: 760px) {

    .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .aw-header nav.wrap {
        height: 64px;
    }

    .admin-trigger,
    .aw-header .admin-trigger {
        display: none;
    }

    .brand {
        font-size: 1.15rem;
    }

    .hero {
        padding-top: 125px;

        padding-bottom: 80px;
    }

    section {
        padding: 75px 0;
    }

    .tracking-header {
        padding-top: 45px;
    }
}


/* =========================================================
   47. MOBILE — 700PX
========================================================= */

@media (max-width: 700px) {

    .lot {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .lot-image {
        width: 100%;

        height: 190px;
    }

    .lot-link {
        display: inline-block;

        width: fit-content;
    }
}


/* =========================================================
   48. MOBILE — 560PX
========================================================= */

@media (max-width: 560px) {

    .wrap {
        padding-left: 18px;

        padding-right: 18px;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero h1 {
        font-size: clamp(
            2.4rem,
            13vw,
            3.6rem
        );
    }

    .hero p.lead {
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }

    .hero-image {
        height: 240px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .ticket {
        transform: none;
    }

    .stamp-badge {
        right: 5px;

        top: -15px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tracking-main {
        padding-left: 14px;

        padding-right: 14px;
    }

    .card {
        padding: 18px;
    }

    .map-card {
        height: 230px;
    }

    .parcel-photo {
        height: 180px;
    }

    .modal {
        padding: 24px 18px;
    }

    .parcel-item {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .parcel-item-num {
        width: 100%;

        flex-basis: 100%;
    }

    .parcel-actions {
        width: 100%;
    }

    .parcel-actions button {
        flex: 1;

        justify-content: center;
    }
}


/* =========================================================
   49. PETIT ÉCRAN — 430PX
========================================================= */

@media (max-width: 430px) {

    body {
        font-size: 14px;
    }

    .wrap {
        padding-left: 16px;

        padding-right: 16px;
    }

    .menu-toggle {
        width: 42px;

        height: 42px;
    }

    .mobile-menu {
        top: 64px;

        padding-left: 15px;

        padding-right: 15px;
    }

    .hero {
        padding-top: 110px;

        padding-bottom: 65px;
    }

    section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 35px;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .hero-image {
        height: 210px;
    }

    .ticket {
        padding: 22px 18px;
    }

    .ticket-row {
        font-size: 0.68rem;
    }

    .tracking-title {
        font-size: 2rem;

        letter-spacing: 2px;
    }

    .header-sub {
        font-size: 0.62rem;

        letter-spacing: 2px;
    }

    .stitle {
        font-size: 1.3rem;
    }

    .btn-gold,
    .btn-outline {
        padding: 14px;

        font-size: 1rem;
    }

    .map-card {
        height: 210px;
    }

    .info-value {
        font-size: 0.88rem;
    }

    .toast {
        max-width: calc(100vw - 24px);
    }
}


/* =========================================================
   50. TRÈS PETIT ÉCRAN — 360PX
========================================================= */

@media (max-width: 360px) {

    .wrap {
        padding-left: 13px;

        padding-right: 13px;
    }

    .brand {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        height: 190px;
    }

    .tracking-main {
        padding-left: 10px;

        padding-right: 10px;
    }

    .card {
        padding: 15px;
    }

    .form-row {
        gap: 0;
    }

    .step-tracking {
        gap: 10px;
    }

    .step-body {
        overflow: hidden;
    }

    .contact-card {
        padding: 24px 18px;
    }
}


/* =========================================================
   51. REDUCTION DES ANIMATIONS
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }
}


/* =====================================================
   HERO — ACCUEIL
===================================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;
}


/* =====================================================
   IMAGE
===================================================== */

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;

    transition: transform 1.2s ease;
}


/* =====================================================
   VOILE SUR L'IMAGE
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.65) 42%,
            rgba(0, 0, 0, 0.30) 100%
        );

    z-index: -2;
}


/* =====================================================
   CONTENU
===================================================== */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1150px, 90%);

    margin: 0 auto;

    padding: 110px 0;

    color: #fff;
}


/* =====================================================
   LABEL ACCUEIL
===================================================== */

.hero-label {
    display: inline-block;

    margin-bottom: 22px;

    padding: 8px 15px;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 4px;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;

    backdrop-filter: blur(6px);

    -webkit-backdrop-filter: blur(6px);
}


/* =====================================================
   EYEBROW
===================================================== */

.hero-content .eyebrow {
    margin-bottom: 18px;

    color: rgba(255,255,255,.85);

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* =====================================================
   TITRE
===================================================== */

.hero-content h1 {
    max-width: 850px;

    margin: 0 0 24px;

    color: #fff;

    font-size: clamp(
        2.7rem,
        6vw,
        5.5rem
    );

    line-height: 1;

    font-weight: 800;

    letter-spacing: -.045em;

    text-shadow:
        0 4px 20px rgba(0,0,0,.4);
}


/* =====================================================
   MOT LOGISTIQUES
===================================================== */

.hero-content h1 em {
    font-style: normal;

    color: #fff;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-content .lead {
    max-width: 720px;

    margin: 0 0 32px;

    color: rgba(255,255,255,.92);

    font-size: clamp(
        1rem,
        1.5vw,
        1.15rem
    );

    line-height: 1.8;

    text-shadow:
        0 2px 10px rgba(0,0,0,.4);
}
/* =====================================================
   BOUTONS HERO
===================================================== */

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}


/* =====================================================
   STYLE COMMUN
===================================================== */

.hero-ctas .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 13px 22px;

    border-radius: 5px;

    text-decoration: none;

    font-size: .9rem;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* =====================================================
   EN SAVOIR PLUS
===================================================== */

.hero-ctas .btn-learn {

    background: #ffffff;

    color: #111111;

    border: 1px solid #ffffff;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);
}


/* MOT "PLUS" — COULEUR SPÉCIALE */

.hero-ctas .btn-learn span {

    color: #d4a017;

    font-weight: 800;
}


/* FLÈCHE */

.hero-ctas .btn-learn i {

    font-size: 1.15rem;

    color: #d4a017;

    transition:
        transform .25s ease;
}


/* HOVER */

.hero-ctas .btn-learn:hover {

    transform: translateY(-3px);

    background: #d4a017;

    color: #ffffff;

    border-color: #d4a017;

    box-shadow:
        0 10px 30px rgba(212,160,23,.28);
}


/* LE MOT PLUS AU HOVER */

.hero-ctas .btn-learn:hover span {

    color: #ffffff;
}


/* FLÈCHE AU HOVER */

.hero-ctas .btn-learn:hover i {

    color: #ffffff;

    transform: translateX(4px);
}


/* =====================================================
   SUIVRE UN COLIS
===================================================== */

.hero-ctas .btn-track {

    background: rgba(255,255,255,.08);

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.6);

    backdrop-filter: blur(7px);

    -webkit-backdrop-filter: blur(7px);
}


/* ICÔNE */

.hero-ctas .btn-track i {

    font-size: 1.15rem;
}


/* HOVER */

.hero-ctas .btn-track:hover {

    transform: translateY(-3px);

    background: rgba(255,255,255,.18);

    border-color: #ffffff;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .hero-ctas {

        display: flex;

        flex-direction: row;

        align-items: center;

        gap: 10px;

        width: 100%;

    }


    .hero-ctas .btn {

        flex: 1;

        min-width: 0;

        min-height: 48px;

        padding: 12px 10px;

        font-size: .78rem;

    }


    .hero-ctas .btn i {

        font-size: 1rem;

    }

}


/* =====================================================
   TRÈS PETITS ÉCRANS
===================================================== */

@media (max-width: 380px) {

    .hero-ctas {

        gap: 7px;

    }


    .hero-ctas .btn {

        padding: 11px 7px;

        font-size: .72rem;

    }


    .hero-ctas .btn i {

        font-size: .95rem;

    }

}
/* =====================================================
   LANGUES MOBILE
===================================================== */

.mobile-language-section {
  margin: 8px 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
}

.mobile-language-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 4px 10px;
}

.mobile-language-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 10px 8px;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
}

.mobile-language-option:hover {
  background: rgba(255,255,255,.08);
}

/* =========================================================
   CORRECTIONS HERO PREMIUM
   Évite les conflits avec l'ancien HERO
========================================================= */

.hero {
    min-height: 680px;
    background: #080808;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 1150px;
}

@media (max-width: 760px) {
    .hero {
        min-height: 620px;
    }

    .hero-content {
        width: min(92%, 1150px);
        padding: 95px 0 70px;
    }

    .hero-content h1 {
        font-size: clamp(2.45rem, 10vw, 4rem);
    }

    .hero-content .lead {
        font-size: .98rem;
        line-height: 1.65;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 560px;
    }

    .hero-image {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.72) 0%,
                rgba(0,0,0,.68) 55%,
                rgba(0,0,0,.84) 100%
            );
    }

    .hero-content {
        padding: 88px 0 55px;
    }

    .hero-label {
        margin-bottom: 16px;
        padding: 7px 11px;
        font-size: .66rem;
    }

    .hero-content .eyebrow {
        font-size: .68rem;
        margin-bottom: 14px;
    }

    .hero-content h1 {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
        line-height: 1.02;
        margin-bottom: 18px;
    }

    .hero-content .lead {
        font-size: .9rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
}

@media (max-width: 380px) {
    .hero {
        min-height: 530px;
    }

    .hero-content {
        padding-top: 78px;
        padding-bottom: 45px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: .84rem;
    }
}


/* =========================================================
   HORIZON EXPORT
   TRANSITION PREMIUM — CSS
   Bleu nuit / Or champagne
========================================================= */

/* ---------------------------------------------------------
   VARIABLES
--------------------------------------------------------- */

:root {
    --loader-navy: #0B1F33;
    --loader-navy-light: #123B5D;
    --loader-gold: #C9A227;
    --loader-gold-light: #E0C45A;
    --loader-white: #FFFFFF;
    --loader-muted: rgba(255, 255, 255, 0.68);
}


/* ---------------------------------------------------------
   ÉCRAN PRINCIPAL
--------------------------------------------------------- */

.site-loader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(18, 59, 93, 0.48),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #071725 0%,
            #0B1F33 48%,
            #102F4A 100%
        );

    opacity: 1;

    transition:
        opacity 0.65s ease,
        visibility 0.65s ease;
}


/* ---------------------------------------------------------
   LÉGER EFFET LUMINEUX
--------------------------------------------------------- */

.site-loader::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 39, 0.08) 0%,
            rgba(201, 162, 39, 0.035) 35%,
            transparent 70%
        );

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    animation: loaderGlow 3s ease-in-out infinite;
}


/* ---------------------------------------------------------
   CONTENU
--------------------------------------------------------- */

.loader-content {
    position: relative;

    z-index: 2;

    width: min(90%, 700px);

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ---------------------------------------------------------
   LOGO / NOM
--------------------------------------------------------- */

.loader-brand {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(2rem, 5vw, 3.8rem);

    font-weight: 800;

    letter-spacing: 0.14em;

    line-height: 1;

    opacity: 0;

    transform: translateY(15px);

    animation:
        loaderBrandIn 0.7s cubic-bezier(.22,1,.36,1) 0.15s
        forwards;
}


.loader-brand-main {
    color: var(--loader-white);
}


.loader-brand-accent {
    color: var(--loader-gold-light);

    font-weight: 700;
}


/* ---------------------------------------------------------
   LIGNE DORÉE
--------------------------------------------------------- */

.loader-line {
    position: relative;

    width: min(260px, 60vw);

    height: 1px;

    margin-top: 25px;

    background: rgba(255, 255, 255, 0.13);

    overflow: hidden;

    opacity: 0;

    animation:
        loaderLineAppear 0.5s ease 0.55s
        forwards;
}


.loader-line span {
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--loader-gold),
            var(--loader-gold-light),
            transparent
        );

    transform: translateX(-100%);

    animation:
        loaderLineMove 1s cubic-bezier(.22,1,.36,1) 0.65s
        forwards;
}


/* ---------------------------------------------------------
   SLOGAN
--------------------------------------------------------- */

.loader-title {
    margin: 25px 0 0;

    padding: 0;

    color: var(--loader-white);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(1.15rem, 3vw, 1.65rem);

    font-weight: 500;

    letter-spacing: 0.015em;

    line-height: 1.5;

    opacity: 0;

    transform: translateY(12px);

    animation:
        loaderTextIn 0.65s ease 0.8s
        forwards;
}


/* ---------------------------------------------------------
   SERVICES
--------------------------------------------------------- */

.loader-services {
    margin: 13px 0 0;

    color: var(--loader-muted);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(0.72rem, 2vw, 0.88rem);

    font-weight: 500;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(10px);

    animation:
        loaderTextIn 0.65s ease 1s
        forwards;
}


.loader-services span {
    color: var(--loader-gold);

    margin: 0 7px;

    font-weight: 700;
}


/* ---------------------------------------------------------
   STATUT
--------------------------------------------------------- */

.loader-status {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 38px;

    color: rgba(255, 255, 255, 0.42);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.7rem;

    letter-spacing: 0.05em;

    opacity: 0;

    animation:
        loaderStatusIn 0.6s ease 1.15s
        forwards;
}


/* ---------------------------------------------------------
   PETIT POINT ANIMÉ
--------------------------------------------------------- */

.loader-dot {
    display: inline-block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--loader-gold);

    box-shadow:
        0 0 0 0 rgba(201, 162, 39, 0.5);

    animation:
        loaderDotPulse 1.5s ease-in-out infinite;
}


/* ---------------------------------------------------------
   FIN DE TRANSITION
--------------------------------------------------------- */

.site-loader.loader-finished {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* ---------------------------------------------------------
   ANIMATION DU LOGO
--------------------------------------------------------- */

@keyframes loaderBrandIn {

    from {
        opacity: 0;
        transform: translateY(15px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


/* ---------------------------------------------------------
   ANIMATION LIGNE
--------------------------------------------------------- */

@keyframes loaderLineAppear {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes loaderLineMove {

    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }

}


/* ---------------------------------------------------------
   ANIMATION TEXTES
--------------------------------------------------------- */

@keyframes loaderTextIn {

    from {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


/* ---------------------------------------------------------
   ANIMATION STATUT
--------------------------------------------------------- */

@keyframes loaderStatusIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


/* ---------------------------------------------------------
   LUMIÈRE
--------------------------------------------------------- */

@keyframes loaderGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }

}


/* ---------------------------------------------------------
   POINT
--------------------------------------------------------- */

@keyframes loaderDotPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(201, 162, 39, 0.45);
    }

    70% {
        box-shadow:
            0 0 0 7px rgba(201, 162, 39, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(201, 162, 39, 0);
    }

}


/* =========================================================
   VERSION MOBILE
========================================================= */

@media (max-width: 600px) {

    .loader-brand {
        font-size: 2rem;

        letter-spacing: 0.1em;

        gap: 7px;
    }


    .loader-line {
        width: 190px;

        margin-top: 21px;
    }


    .loader-title {
        margin-top: 22px;

        padding: 0 15px;

        font-size: 1.05rem;

        line-height: 1.55;
    }


    .loader-services {
        max-width: 300px;

        margin-top: 11px;

        font-size: 0.65rem;

        line-height: 2;
    }


    .loader-services span {
        margin: 0 4px;
    }


    .loader-status {
        margin-top: 30px;

        font-size: 0.64rem;
    }


    .site-loader::before {
        width: 350px;
        height: 350px;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .site-loader,
    .loader-brand,
    .loader-line,
    .loader-line span,
    .loader-title,
    .loader-services,
    .loader-status,
    .loader-dot,
    .site-loader::before {
        animation: none !important;
        transition: none !important;
    }

    .loader-brand,
    .loader-line,
    .loader-title,
    .loader-services,
    .loader-status {
        opacity: 1;
        transform: none;
        filter: none;
    }

}
/* =========================================================
   AJOUTS — CATALOGUE / AVIS / STATS / GARANTIES
   NE MODIFIE PAS LE CSS EXISTANT
========================================================= */


/* =========================================================
   CATALOGUE
========================================================= */

.catalogue-section {
    position: relative;
    padding: 90px 20px;
}

.catalogue-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.catalogue-header h2 {
    margin-bottom: 15px;
}

.catalogue-header p {
    margin: 0 auto;
    line-height: 1.7;
    opacity: .85;
}

.catalogue-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.catalogue-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--card-bg, #ffffff);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.catalogue-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .13);
}

.catalogue-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.catalogue-card:hover .catalogue-image img {
    transform: scale(1.05);
}

.catalogue-content {
    padding: 25px;
}

.catalogue-content h3 {
    margin: 0 0 12px;
}

.catalogue-content p {
    line-height: 1.65;
    margin-bottom: 22px;
    opacity: .85;
}

.catalogue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* =========================================================
   AVIS CLIENTS / TEMOIGNAGES
========================================================= */

.testimonials-section {
    padding: 90px 20px;
}

.testimonials-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonials-header p {
    line-height: 1.7;
    opacity: .85;
}

.testimonials-grid {
    width: min(1150px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 18px;
    background: var(--card-bg, #ffffff);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.testimonial-stars {
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.testimonial-text {
    line-height: 1.75;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    font-size: .85rem;
    opacity: .7;
}


/* =========================================================
   CHIFFRES CLES
========================================================= */

.stats-section {
    padding: 75px 20px;
}

.stats-grid {
    width: min(1150px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 18px;
    background: var(--card-bg, #ffffff);
    border: 1px solid rgba(0, 0, 0, .08);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    opacity: .75;
    line-height: 1.5;
}


/* =========================================================
   GARANTIES
========================================================= */

.guarantees-section {
    padding: 90px 20px;
}

.guarantees-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.guarantees-header p {
    line-height: 1.7;
    opacity: .85;
}

.guarantees-grid {
    width: min(1150px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.guarantee-card {
    text-align: center;
    padding: 30px 22px;
    border-radius: 18px;
    background: var(--card-bg, #ffffff);
    border: 1px solid rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .09);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.guarantee-card h3 {
    margin-bottom: 10px;
}

.guarantee-card p {
    margin: 0;
    line-height: 1.6;
    opacity: .8;
}


/* =========================================================
   POURQUOI NOUS CHOISIR
========================================================= */

.why-us-section {
    padding: 90px 20px;
}

.why-us-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.why-us-header p {
    line-height: 1.7;
    opacity: .85;
}

.why-us-grid {
    width: min(1150px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-us-card {
    position: relative;
    padding: 30px;
    border-radius: 18px;
    background: var(--card-bg, #ffffff);
    border: 1px solid rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.why-us-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.why-us-card h3 {
    margin-bottom: 12px;
}

.why-us-card p {
    margin: 0;
    line-height: 1.7;
    opacity: .8;
}


/* =========================================================
   PARTENAIRES / CERTIFICATIONS
========================================================= */

.partners-section {
    padding: 70px 20px;
}

.partners-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.partners-header p {
    line-height: 1.7;
    opacity: .8;
}

.partners-grid {
    width: min(1000px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    min-height: 100px;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .08);
    background: var(--card-bg, #ffffff);
    font-weight: 700;
    opacity: .85;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .catalogue-section,
    .testimonials-section,
    .guarantees-section,
    .why-us-section {
        padding: 65px 15px;
    }

    .stats-section,
    .partners-section {
        padding: 60px 15px;
    }

    .catalogue-grid,
    .testimonials-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .guarantees-grid,
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalogue-image {
        height: 200px;
    }

    .catalogue-content,
    .testimonial-card,
    .why-us-card {
        padding: 22px;
    }
}


@media (max-width: 420px) {

    .stats-grid,
    .guarantees-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-image {
        height: 180px;
    }
}

.partners-row .partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partners-row .partner-logo img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
}


/* =========================================================
   CORRECTION VISIBILITÉ — INFORMATIONS COLIS
   Les valeurs du suivi restent parfaitement lisibles
   même si le fond de la carte est clair.
========================================================= */

#resultPanel .info-label {
    color: #5f6b78 !important;
    opacity: 1 !important;
}

#resultPanel .info-value {
    color: #172b3d !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}

#resultPanel .info-value.mono {
    color: #172b3d !important;
}

/* Statut EN TRANSIT */
#resultPanel .b-transit {
    color: #168a55 !important;
}

/* Valeurs de dates / valeurs dorées */
#resultPanel .date-value,
#resultPanel .gold-value {
    color: #b8860b !important;
}


/* =========================================================
   CORRECTION VISIBILITÉ — FORMULAIRE / HISTORIQUE DES ÉTAPES
   Les champs Date/heure, Description et les textes de l'étape
   restent visibles sur mobile et desktop.
========================================================= */

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea,
.modal .add-step-row input {
    background: #222222 !important;
    color: #f2ede6 !important;
    border: 1.5px solid rgba(245, 195, 0, 0.30) !important;
    -webkit-text-fill-color: #f2ede6 !important;
    opacity: 1 !important;
}

.modal .form-group input::placeholder,
.modal .form-group textarea::placeholder,
.modal .add-step-row input::placeholder {
    color: rgba(242, 237, 230, 0.72) !important;
    -webkit-text-fill-color: rgba(242, 237, 230, 0.72) !important;
    opacity: 1 !important;
}

.modal .form-group select {
    color: #f2ede6 !important;
    -webkit-text-fill-color: #f2ede6 !important;
}

.modal .form-group select option {
    background: #222222 !important;
    color: #f2ede6 !important;
}

.modal .step-builder {
    background: #222222 !important;
    color: #f2ede6 !important;
}

.modal .step-item {
    background: #2a2a2a !important;
    color: #f2ede6 !important;
}

.modal .step-item-text {
    color: #f2ede6 !important;
    opacity: 1 !important;
}

.modal .step-builder input,
.modal .step-builder textarea,
.modal .step-builder select {
    color: #f2ede6 !important;
    -webkit-text-fill-color: #f2ede6 !important;
}

.modal .step-builder input::placeholder,
.modal .step-builder textarea::placeholder {
    color: rgba(242, 237, 230, 0.72) !important;
    -webkit-text-fill-color: rgba(242, 237, 230, 0.72) !important;
    opacity: 1 !important;
}
