@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #F0F9FF;
    --card: #FFFFFF;
    --muted: #4A6A8A;
    --text: #002D5A;
    --brand: #F29100;
    --brand2: #00CCFF;
    --navy: #002D5A;
    --line: rgba(0, 45, 90, .10);
    --shadow: 0 4px 24px rgba(0, 45, 90, .08);
    --shadow-lg: 0 12px 40px rgba(0, 45, 90, .12);
    --radius: 18px;
    --max: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../images/mayotte-vacances-plage-jardin-maore.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.07;
    z-index: -1;
}

/* ─── Bannière spécialités Import/Maritime ─── */
.specialties-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #004a8f 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.specialties-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/mayotte-vacances-plage-jardin-maore.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.specialties-banner .container {
    position: relative;
    z-index: 1;
}

.specialties-banner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    font-size: 1.5rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .8;
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.specialty-card {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    transition: transform .3s, background .3s;
}

.specialty-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.18);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.specialty-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.specialty-card p {
    opacity: .8;
    font-size: .95rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .specialties-grid { grid-template-columns: 1fr; }
}

/* ─── Info notice (commander / services) ─── */
.info-notice {
    margin-top: 32px;
}

.info-notice .card.callout {
    border-left: 4px solid var(--brand);
}

.info-notice .list {
    margin-top: 12px;
}

.security-notice {
    margin: 18px 0;
    border-left: 4px solid var(--brand);
}

/* ─── Page Commander ─── */
.commander-intro {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.commander-intro .lead {
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.step-card {
    position: relative;
    padding: 32px 24px 28px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(242,145,0,.35);
}

.step-icon {
    font-size: 2.2rem;
    margin: 8px 0 14px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.step-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
}

.commander-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0 12px;
}

@media (max-width: 860px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* ─── Section Réseaux sociaux ─── */
.social-section {
    padding: 64px 0;
    text-align: center;
}

.social-section h2 {
    margin-bottom: 8px;
}

.social-section .social-lead {
    color: var(--muted);
    margin-bottom: 40px;
    font-size: .98rem;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: transform .25s, box-shadow .25s;
    min-width: 120px;
    color: #fff;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.social-card svg {
    width: 32px;
    height: 32px;
}

/* ─── Réseaux sociaux footer ─── */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-social-link {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    transition: color .2s, border-color .2s;
}

.footer-social-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,.6);
}

.social-card.tiktok   { background: #010101; }
.social-card.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.snapchat  { background: #FFFC00; color: #fff; }
.social-card.facebook  { background: #1877F2; }

/* ─── Bannière infos ramassage (transparente) ─── */
.info-banner {
    background: linear-gradient(135deg, rgba(0,45,90,.55) 0%, rgba(0,74,143,.45) 100%);
    padding: 56px 0;
}

.info-banner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    font-size: 1.5rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.info-banner .specialties-grid .specialty-card:nth-child(1) {
    background: #ffffff;
    border: none;
    color: var(--navy);
}

.info-banner .specialties-grid .specialty-card:nth-child(2) {
    background: #f5f0e8;
    border: none;
    color: var(--navy);
}

.info-banner .specialty-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-banner .specialty-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
}

.info-banner .specialty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.info-banner .container {
    position: relative;
}

.info-banner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    font-size: 1.5rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .8;
}

.info-banner .specialties-grid .specialty-card {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    transition: transform .3s, background .3s;
}

.info-banner .specialties-grid .specialty-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.18);
}

main {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .25s
}

.reveal-delay-4 {
    transition-delay: .3s
}

.reveal-delay-5 {
    transition-delay: .35s
}

.reveal-delay-6 {
    transition-delay: .4s
}

/* ─── Page Load Animation ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* ═══════════════════════════════════════════
   TOPBAR — White with cyan accent
   ═══════════════════════════════════════════ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    backdrop-filter: blur(16px) saturate(1.4);
    background: rgba(255, 255, 255, .88);
    border-bottom: 2px solid var(--brand2);
    animation: fadeIn .6s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--navy);
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), filter .4s;
    filter: drop-shadow(0 2px 8px rgba(242, 145, 0, .25));
}

.brand:hover .logo {
    transform: rotate(6deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(242, 145, 0, .35));
}

.brand span {
    opacity: .9;
    transition: opacity .3s
}

.brand:hover span {
    opacity: 1
}

.links {
    display: flex;
    align-items: center;
    gap: 6px
}

.links a {
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: all .25s cubic-bezier(.16, 1, .3, 1);
}

.links a:hover {
    background: rgba(0, 204, 255, .08);
    color: var(--navy);
}

.links a.active {
    background: rgba(0, 45, 90, .08);
    color: var(--navy);
    font-weight: 600;
}

.cta {
    padding: 9px 16px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    background: var(--brand) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 16px rgba(242, 145, 0, .25);
    transition: all .3s cubic-bezier(.16, 1, .3, 1) !important;
}

.cta:hover {
    background: #D98000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(242, 145, 0, .35) !important;
}

.menuBtn {
    display: none;
    border: 1px solid var(--line);
    background: #FFFFFF;
    color: var(--navy);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    transition: background .2s;
}

.menuBtn:hover {
    background: rgba(0, 204, 255, .08)
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    padding: 48px 0 26px;
    background: linear-gradient(180deg, rgba(0, 204, 255, .06) 0%, transparent 60%);
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: stretch;
}

.kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(0, 204, 255, .3);
    background: rgba(0, 204, 255, .08);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    animation: fadeInUp .6s .1s both;
}

h1 {
    margin: 14px 0 10px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--navy);
    animation: fadeInUp .6s .2s both;
}

.h1-gradient {
    background: linear-gradient(135deg, var(--navy) 40%, var(--brand) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 56ch;
    animation: fadeInUp .6s .3s both;
}

.heroActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    animation: fadeInUp .6s .4s both;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #FFFFFF;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s cubic-bezier(.16, 1, .3, 1);
    box-shadow: var(--shadow);
}

.btn:hover {
    background: #F5FBFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 204, 255, .3);
}

.btn.primary {
    border: none;
    background: var(--brand);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(242, 145, 0, .25);
}

.btn.primary:hover {
    background: #D98000;
    box-shadow: 0 10px 30px rgba(242, 145, 0, .35);
}

/* ─── Stats ─── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
    animation: fadeInUp .6s .5s both;
}

.stat {
    padding: 14px;
    border: 1px solid var(--line);
    background: #FFFFFF;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.stat:hover {
    transform: translateY(-3px);
    border-color: var(--brand2);
    box-shadow: var(--shadow-lg);
}

.stat b {
    display: block;
    font-size: 18px;
    color: var(--brand);
}

.stat span {
    color: var(--muted);
    font-size: 12.5px
}

/* ═══════════════════════════════════════════
   CARDS — White with soft shadows
   ═══════════════════════════════════════════ */
.card {
    border: 1px solid var(--line);
    background: #FFFFFF;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
}

.card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.heroCard {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp .7s .3s both;
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.badge {
    font-size: 12.5px;
    color: var(--navy);
    border: 1px solid rgba(0, 204, 255, .3);
    background: rgba(0, 204, 255, .08);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 500;
    transition: all .25s;
}

.badge:hover {
    background: rgba(0, 204, 255, .15);
    border-color: var(--brand2);
    transform: translateY(-1px);
}

.mapMock {
    flex: 1;
    border-radius: 14px;
    border: 1px solid var(--line);
    background:
        radial-gradient(600px 200px at 60% 30%, rgba(0, 204, 255, .1), transparent 65%),
        radial-gradient(400px 200px at 30% 70%, rgba(242, 145, 0, .06), transparent 60%),
        linear-gradient(180deg, #F5FBFF, #EDF7FF);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.route {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(0, 204, 255, .2), transparent 22%),
        radial-gradient(circle at 68% 28%, rgba(242, 145, 0, .15), transparent 20%),
        radial-gradient(circle at 78% 72%, rgba(0, 204, 255, .12), transparent 22%);
    opacity: .5;
    animation: pulse 4s ease-in-out infinite;
}

.mapMock .label {
    position: relative;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 12px;
}

.label .row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 13px
}

.label .row b {
    color: var(--navy)
}

.small {
    font-size: 12px;
    color: var(--muted)
}

/* ─── Status Dot — Cyan ─── */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand2);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 204, 255, .5);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
    padding: 28px 0
}

.section h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
}

.section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px
}

.feature {
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 204, 255, .06), transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}

.feature:hover::before {
    opacity: 1
}

.feature h3 {
    margin: 10px 0 6px;
    position: relative;
    color: var(--navy);
}

.feature p {
    position: relative
}

/* ─── Icons — Cyan light background ─── */
.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 204, 255, .1);
    border: 1px solid rgba(0, 204, 255, .2);
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    position: relative;
}

.feature:hover .icon {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 204, 255, .2);
    background: rgba(0, 204, 255, .16);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8
}

.list li {
    transition: color .2s
}

.list li:hover {
    color: var(--navy)
}

.callout {
    padding: 18px
}

.callout h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.callout .inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    border-top: 2px solid var(--brand2);
    background: var(--navy);
    padding: 24px 0 30px;
    color: rgba(255, 255, 255, .7);
}

.footer .brand {
    color: #FFFFFF
}

.footer .small {
    color: rgba(255, 255, 255, .6)
}

.footerGrid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer a {
    color: rgba(255, 255, 255, .7);
    transition: color .2s
}

.footer a:hover {
    color: #FFFFFF
}

.sep {
    opacity: .5
}

/* ─── Footer logo stays white-friendly ─── */
.footer .logo {
    filter: drop-shadow(0 2px 8px rgba(242, 145, 0, .3));
}

.footer-tagline {
    margin-top: 6px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: #fff;
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.input,
textarea,
select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #FFFFFF;
    color: var(--navy);
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: all .3s;
}

.input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand2);
    box-shadow: 0 0 0 3px rgba(0, 204, 255, .15), 0 4px 12px rgba(0, 45, 90, .08);
}

.input::placeholder,
textarea::placeholder {
    color: rgba(0, 45, 90, .35)
}

textarea {
    min-height: 120px;
    resize: vertical
}

.help {
    font-size: 12.5px;
    color: var(--muted)
}

.note {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 204, 255, .25);
    background: rgba(0, 204, 255, .06);
    color: var(--muted);
    transition: all .3s;
}

.note:hover {
    background: rgba(0, 204, 255, .1);
    border-color: var(--brand2);
}

.note b {
    color: var(--navy)
}

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #FFFFFF;
    color: var(--brand);
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(16px);
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    z-index: 50;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--brand);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 145, 0, .3);
}

/* ─── Section Divider ─── */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, .35), rgba(242, 145, 0, .25), transparent);
    border: none;
    margin: 10px 0;
}

/* ═══════════════════════════════════════════
   TRACKING WIDGET
   ═══════════════════════════════════════════ */
.tracking-widget {
    border: 1px solid var(--line);
    background: #F5FBFF;
    border-radius: var(--radius);
    padding: 16px;
}

.tracking-widget h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--navy);
}

.tracking-input-row {
    display: flex;
    gap: 8px;
}

.tracking-input-row .input {
    flex: 1
}

.tracking-input-row .btn {
    white-space: nowrap
}

.tracking-result {
    animation: fadeInUp .5s both
}

.tracking-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.tracking-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    padding-left: 4px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    position: relative;
    color: var(--muted);
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 34px;
    bottom: -10px;
    width: 2px;
    background: var(--line);
}

.timeline-step:last-child::before {
    display: none
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: #FFFFFF;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    z-index: 1;
}

.timeline-step.done .timeline-dot {
    background: var(--brand);
    border-color: var(--brand);
}

.timeline-step.done::before {
    background: var(--brand)
}

.timeline-step.done {
    color: var(--navy)
}

.timeline-step.active .timeline-dot {
    background: var(--brand2);
    border-color: var(--brand2);
    box-shadow: 0 0 10px rgba(0, 204, 255, .5);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-step.active {
    color: var(--navy)
}

.timeline-step.active::before {
    background: linear-gradient(to bottom, var(--brand), var(--line))
}

.timeline-step b {
    display: block;
    font-size: 14px
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-top: 14px;
}

.testimonials-track {
    display: flex;
    gap: 14px;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 22px;
    flex-shrink: 0;
}

@media(min-width: 881px) {
    .testimonial-card {
        min-width: calc(50% - 7px)
    }
}

.testimonial-stars {
    color: var(--brand);
    font-size: 16px;
    letter-spacing: 2px
}

.testimonial-quote {
    margin: 10px 0;
    font-style: italic;
    line-height: 1.7;
    color: var(--muted);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.testimonial-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #FFFFFF;
    color: var(--navy);
    cursor: pointer;
    font-size: 16px;
    transition: all .2s;
    display: grid;
    place-items: center;
    font-family: inherit;
    box-shadow: var(--shadow);
}

.testimonial-btn:hover {
    background: var(--brand);
    color: #FFFFFF;
    border-color: var(--brand);
}

.testimonials-dots {
    display: flex;
    gap: 6px
}

.testimonials-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: all .3s;
}

.testimonials-dots span.active {
    background: var(--brand);
    transform: scale(1.3)
}

/* ═══════════════════════════════════════════
   QUOTE CALCULATOR
   ═══════════════════════════════════════════ */
.quote-price-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(242, 145, 0, .25);
    background: rgba(242, 145, 0, .05);
}

.quote-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand);
    margin: 6px 0;
}

.row-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.row-detail b {
    color: var(--navy)
}

/* ═══════════════════════════════════════════
   CLIENT PORTAL TABLES
   ═══════════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    margin-top: 12px
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: var(--muted);
}

.data-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid var(--line);
    color: var(--navy);
    font-weight: 600;
    font-size: 13px;
}

.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
}

.data-table tr:hover td {
    background: rgba(0, 204, 255, .04);
}

/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
}

.blog-card-img {
    height: 140px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(0, 204, 255, .08), rgba(242, 145, 0, .06));
}

.blog-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.blog-card-body h3 {
    margin: 4px 0;
    font-size: 17px;
    color: var(--navy);
}

.blog-meta {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 8px;
}

/* ─── Article Layout ─── */
.article-content {
    max-width: 750px
}

.article-header {
    margin-bottom: 20px
}

.article-body {
    line-height: 1.8;
    color: var(--muted)
}

.article-body h2 {
    color: var(--navy);
    font-size: 20px;
    margin: 24px 0 10px;
}

.article-body p {
    margin: 0 0 14px
}

/* ═══════════════════════════════════════════
   RETAILER / PARTNER GRID
   ═══════════════════════════════════════════ */
.retailers-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 10px;
}

.search-box {
    max-width: 420px;
    margin: 14px auto 0;
    position: relative;
}

.search-box .input {
    padding-left: 40px
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 16px;
    pointer-events: none;
}

.category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}

.cat-btn {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #FFFFFF;
    color: var(--muted);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s;
}

.cat-btn:hover,
.cat-btn.active {
    background: rgba(0, 204, 255, .1);
    border-color: var(--brand2);
    color: var(--navy);
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.retailer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.retailer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-color, rgba(0, 204, 255, .06)), transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}

.retailer-card:hover::before {
    opacity: 1
}

.retailer-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    border: 1px solid var(--line);
    background: #FFFFFF;
}

.retailer-card:hover .retailer-logo {
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.retailer-name {
    font-weight: 600;
    font-size: 14px;
    position: relative;
    color: var(--navy);
}

.retailer-tag {
    font-size: 11px;
    color: var(--muted);
    position: relative;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 204, 255, .06);
    border: 1px solid rgba(0, 204, 255, .15);
}

.retailer-card .visit-link {
    display: none;
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    display: none;
}

.no-results.show {
    display: block
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 880px) {
    .heroGrid {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .grid3 {
        grid-template-columns: 1fr
    }

    .grid4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .split {
        grid-template-columns: 1fr
    }

    .menuBtn {
        display: inline-flex
    }

    .links {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 60px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, .97);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-lg);
    }

    .links.show {
        display: flex
    }

    .links a {
        padding: 12px
    }

    .cta {
        width: 100% !important;
        text-align: center
    }

    .card:hover {
        transform: translateY(-2px)
    }

    .back-to-top {
        bottom: 18px;
        right: 18px
    }
}

/* ─── Hero Contact Info ──────────────────────────────────────────────────── */
.hero-contact-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--brand);
}

.contact-info-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info-row svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-row div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-info-row b,
.contact-info-row strong {
    font-size: 0.92rem;
    color: var(--text);
}

.contact-info-row a {
    color: inherit;
    text-decoration: none;
}

.contact-info-row a:hover {
    color: var(--brand2);
}

/* ─── Delivery Notice (commander.html) ──────────────────────────────────── */
.delivery-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(0,45,90,.05) 0%, rgba(0,204,255,.07) 100%);
    border: 1.5px solid rgba(0, 204, 255, 0.3);
    border-radius: 14px;
    padding: 20px 22px;
    margin: 20px 0 0;
}

.delivery-notice-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 45, 90, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-notice h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 4px;
}

.delivery-notice > div > p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 12px;
    line-height: 1.5;
}

.delivery-notice-fields {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.delivery-notice-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 14px;
    min-width: 180px;
}

.delivery-notice-field .small {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.delivery-notice-field strong {
    font-size: 0.9rem;
    color: var(--brand);
    font-weight: 700;
}

@media (max-width: 880px) {
    .delivery-notice {
        flex-direction: column;
        gap: 12px;
    }
    .delivery-notice-fields {
        flex-direction: column;
        gap: 10px;
    }
}

/* ─── Contact Form Feedback ─────────────────────────────────────────────── */
.form-feedback {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-feedback.success {
    display: block;
    background: rgba(0, 180, 90, 0.1);
    border: 1px solid rgba(0, 180, 90, 0.35);
    color: #007a3a;
}

.form-feedback.error {
    display: block;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #b91c1c;
}

/* ─── Coming Soon Overlay ─────────────────────────────────────────────────── */
.coming-soon-overlay {
    position: fixed;
    inset: 0;
    z-index: 15;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 45, 90, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.coming-soon-box {
    text-align: center;
    color: #fff;
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.coming-soon-box .cs-icon {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(242, 145, 0, 0.25);
    border: 2px solid var(--brand2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.coming-soon-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.coming-soon-box p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}