* {
    box-sizing: border-box;
}

:root {
    --bg: #f6f6f6;
    --card: #ffffff;
    --primary: #111111;
    --accent: #c23a2a;
    --accent-dark: #8f251d;
    --muted: #626262;
    --shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
    --stroke: #e3e3e3;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050505;
    color: var(--primary);
    line-height: 1.5;
    min-height: 100vh;
}

.site-content {
    background: #f4f5f9;
}

body.scroll-animations .reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body.scroll-animations .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    body.scroll-animations .reveal-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 12px clamp(1.5rem, 5vw, 3rem);
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    margin-right: auto;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f8f8f8;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 4px;
    background: #111;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo-img {
    width: clamp(110px, 12vw, 150px);
}

.site-nav {
    display: flex;
    gap: 1.25rem;
    font-weight: 500;
    margin-right: 1.5rem;
}

.site-nav a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--accent);
}

.badge-btn {
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(255, 45, 45, 0.35);
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 75vh;
    padding: clamp(3rem, 8vw, 8rem);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 12, 12, 0.78), rgba(20, 20, 20, 0.55));
    z-index: -1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: saturate(0.9);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    background: rgba(255, 45, 45, 0.12);
    color: var(--accent);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}

.hero-content {
    max-width: 720px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-whatsapp-card {
    background: rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    max-width: 520px;
    width: min(100%, 520px);
    margin-left: auto;
}

.hero-whatsapp-card h3 {
    margin-bottom: 0.2rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-whatsapp-card .whatsapp-copy {
    margin-bottom: 0.7rem;
    color: #3a3a3a;
    font-size: 0.9rem;
}

.hero-whatsapp-card .btn.full {
    width: 100%;
    padding-block: 0.75rem;
    font-size: 0.95rem;
}

.hero-whatsapp-card form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.hero-whatsapp-card .field-group {
    font-size: 0.85rem;
}

.hero-whatsapp-card .field-group input,
.hero-whatsapp-card .field-group textarea {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
}

.hero-whatsapp-card .form-status {
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

.whatsapp-note {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    color: #ffdfdf;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.lead {
    font-size: 1.05rem;
    color: #fff7f7;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.9rem 1.8rem;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 40%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.45s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn.primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 20px 35px rgba(255, 45, 45, 0.35);
}

.btn.primary:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.btn.ghost {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 18px 32px rgba(255, 45, 45, 0.3);
}

.btn.ghost:hover {
    background: var(--accent-dark);
}

.btn.secondary {
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    box-shadow: 0 12px 25px rgba(255, 45, 45, 0.25);
}

.btn.full {
    width: 100%;
}

.testimonials {
    padding: clamp(2rem, 6vw, 4rem);
    margin-top: -80px;
    background: linear-gradient(180deg, #fefefe 0%, #f3f4f6 100%);
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonials-window {
    overflow: hidden;
    border-radius: 36px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: clamp(1rem, 4vw, 2.5rem);
    display: grid;
    gap: clamp(1rem, 2vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
    background: var(--card);
    border-radius: 32px;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 45, 45, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card.single {
    max-width: 580px;
    margin: 0 auto;
}

.testimonial-question {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: -0.2rem;
}

.testimonial-answer {
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.6;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    display: grid;
    place-items: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonial-author h3 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author p {
    margin: 0.15rem 0 0;
    color: var(--muted);
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 18px 40px rgba(255, 45, 45, 0.28);
}

.testimonial-btn:hover {
    transform: translateY(-4px);
    background: var(--accent-dark);
}

.testimonial-btn:focus-visible,
.testimonial-dot:focus-visible {
    outline: 3px solid rgba(255, 45, 45, 0.35);
    outline-offset: 3px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d4d4d4;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-dot.active {
    background: var(--accent);
    transform: scale(1.35);
    box-shadow: 0 0 0 5px rgba(255, 45, 45, 0.15);
}

.testimonial-notes {
    display: grid;
    gap: 0.5rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.testimonial-note {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.metrics {
    padding: clamp(3rem, 7vw, 5rem);
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.95), #150707);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.metrics::before {
    content: "";
    position: absolute;
    inset: 12% auto -85% 50%;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40%;
    transform: translateX(-50%);
    filter: blur(20px);
    pointer-events: none;
}

.metrics-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.metrics-copy {
    text-align: center;
}

.metrics-copy h2 {
    color: #fff;
}

.metrics-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 20px 50px rgba(8, 8, 13, 0.45);
    backdrop-filter: blur(6px);
}

.metric-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.metric-label {
    margin: 0.4rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metric-description {
    margin: 0.6rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.partner,
.specialists {
    padding: clamp(1.5rem, 4vw, 3rem);
    margin-top: 0.5rem;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.section-heading.narrow {
    max-width: 620px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--muted);
}

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

.partner-grid article,
.specialists-grid article {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--stroke);
}

.partner-grid img {
    width: 90px;
    margin-bottom: 1.2rem;
}

.partner-grid h3,
.specialists-grid h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.partner-grid p,
.specialists-grid p {
    color: var(--muted);
    font-size: 0.95rem;
}

.last-mile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 4rem);
}

.last-mile-content {
    background: var(--card);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 28px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

.last-mile-content h2 {
    margin: 0.5rem 0 0.8rem;
}

.last-mile-content .badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.12);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.last-mile-illustration {
    background: var(--card);
    border-radius: 28px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
}

.last-mile-gif {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.specialists-grid article {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--stroke);
}

.partner-grid img {
    width: 90px;
    margin-bottom: 1.2rem;
}

.partner-grid h3,
.specialists-grid h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.partner-grid p,
.specialists-grid p {
    color: var(--muted);
    font-size: 0.95rem;
}

.last-mile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 4rem);
}

.last-mile-content {
    background: var(--card);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 28px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

.last-mile-content h2 {
    margin: 0.5rem 0 0.8rem;
}

.last-mile-content .badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.12);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.last-mile-illustration {
    background: var(--card);
    border-radius: 28px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.road {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, #d4d4d4 0%, #a3a3a3 100%);
    border-radius: 18px;
    overflow: hidden;
}

.road::after {
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: repeating-linear-gradient(90deg, #ffffff 0 40px, transparent 40px 80px);
    transform: translateY(-50%);
    opacity: 0.7;
}

.van {
    position: absolute;
    bottom: 28px;
    width: 210px;
    height: 90px;
    transform-origin: center;
    animation: drive 6s linear infinite;
}

.van .trailer {
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 14px;
    width: 160px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    border-radius: 10px;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.3);
}

.van-cab {
    position: absolute;
    left: -15px;
    bottom: 14px;
    width: 70px;
    height: 72px;
    background: linear-gradient(135deg, #fefefe, #dfe3eb);
    border-radius: 18px 8px 8px 8px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.van-cab::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 14px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #c7d2fe, #93c5fd);
}

.van-cab::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 8px;
    right: 8px;
    height: 12px;
    background: #bdbdbd;
    border-radius: 4px;
}

.van span {
    display: none;
}

.van .wheel {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #0f0f0f;
    border-radius: 50%;
    border: 4px solid #fff;
}

.wheel.front-left {
    left: -5px;
    bottom: -16px;
}

.wheel.front-right {
    left: 25px;
    bottom: -16px;
}

.wheel.rear-left {
    right: 85px;
    bottom: -20px;
}

.wheel.rear-right {
    right: 40px;
    bottom: -20px;
}

.trailer-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer-logo img {
    width: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

@keyframes drive {
    0% {
        transform: translateX(-40%) scaleX(1);
    }
    45% {
        transform: translateX(100%) scaleX(1);
    }
    50% {
        transform: translateX(100%) scaleX(-1);
    }
    95% {
        transform: translateX(-40%) scaleX(-1);
    }
    100% {
        transform: translateX(-40%) scaleX(1);
    }
}

.last-mile-shop {
    position: absolute;
    top: 25px;
    right: 20px;
    width: 100px;
    height: 90px;
    border-radius: 16px 16px 4px 4px;
    background: linear-gradient(180deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

.last-mile-shop::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 18px;
    border-radius: 12px 12px 0 0;
    background: #f97316;
}

.sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #b3e5fc, #e0f7fa);
    border-radius: 28px 28px 0 0;
    z-index: -1;
}

.sun {
    position: absolute;
    top: 20px;
    right: 60px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #ffe066, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 224, 102, 0.6);
}

.cloud {
    position: absolute;
    width: 120px;
    height: 60px;
    background: #fff;
    border-radius: 50px;
    opacity: 0.7;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: #fff;
    width: 80px;
    height: 60px;
    border-radius: 50px;
}

.cloud::before {
    top: -20px;
    left: 10px;
}

.cloud::after {
    top: -10px;
    right: 10px;
}

.cloud-1 {
    top: 30px;
    left: 40px;
}

.cloud-2 {
    top: 60px;
    left: 150px;
}

.chalk-line {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 30px;
    height: 6px;
    background-image: repeating-linear-gradient(90deg, #ffffff 0 40px, transparent 40px 80px);
    opacity: 0.5;
}


@keyframes drive {
    0% {
        transform: translateX(-30%) rotate(0deg);
    }
    40% {
        transform: translateX(70%) rotate(0deg);
    }
    45% {
        transform: translateX(70%) rotateY(180deg);
    }
    95% {
        transform: translateX(-30%) rotateY(180deg);
    }
    100% {
        transform: translateX(-30%) rotate(0deg);
    }
}

.specialists-grid article {
    padding: 0;
    overflow: hidden;
}

.specialists-grid img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.specialists-grid article > h3,
.specialists-grid article > p {
    padding: 0 1.5rem;
}

.specialists-grid article > h3 {
    padding-top: 1.5rem;
}

.specialists-grid article > p {
    padding-bottom: 1.8rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 5, 5, 0.01), rgba(255, 45, 45, 0.35));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.18);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover img {
    transform: scale(1.08);
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    padding: clamp(1.8rem, 4.2vw, 3rem);
    align-items: stretch;
}

.contact-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.contact-media::after {
    content: "";
    position: absolute;
    inset: 10%;
    border: 2px solid rgba(255, 45, 45, 0.4);
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, filter 0.4s ease;
    background: transparent;
}

.contact-media:hover img {
    transform: scale(1.02);
    filter: saturate(1.1);
}

.contact-media:hover::after {
    opacity: 1;
}

.contact-form {
    background: var(--card);
    border-radius: 24px;
    padding: clamp(1.3rem, 3.2vw, 2rem);
    box-shadow: var(--shadow);
    border: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.contact-cta .btn {
    flex: 1;
    min-width: 160px;
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
    width: 100%;
}

.js-contact-form .btn {
    padding-block: 0.45rem;
    font-size: 0.85rem;
}

.hero-whatsapp-card form .btn {
    padding-block: 0.3rem;
    font-size: 0.90rem;
}

.hero-whatsapp-card form button[type="submit"] {
    width: 100%;
    justify-self: stretch;
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    border-radius: 12px;
}

.form-status {
    margin: 0.5rem 0 0;
    font-weight: 600;
    color: var(--accent);
    min-height: 1.2em;
}

.form-status.error {
    color: #b91c1c;
}

.field-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.field-group.full {
    flex-basis: 100%;
    grid-column: 1 / -1;
}

.field-group input,
.field-group textarea {
    border: 1px solid #d7d7d7;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    color: var(--primary);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #7c7c7c;
}

.field-group input:focus,
.field-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.18);
    background: #fff;
}

.captcha-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.warehouses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.warehouses-text {
    background: var(--card);
    border-radius: 18px;
    padding: clamp(1rem, 3vw, 1.8rem);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

.warehouses-text h2 {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
}

.warehouses-text p {
    color: var(--muted);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.warehouses-gallery {
    display: flex;
    align-items: stretch;
}

.warehouses-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}


.site-footer {
    padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
    color: #f5f5f5;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: auto -20% 0 50%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.35), transparent 60%);
    opacity: 0.5;
    transform: translateX(-50%);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    max-width: 340px;
}

.footer-brand .logo-img {
    width: 160px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.footer-description {
    margin: 0;
    color: #d6d6d6;
}

.footer-address,
.footer-contact {
    margin: 0;
    color: #b6b6b6;
    font-size: 0.95rem;
}

.footer-map {
    flex: 1 1 320px;
    min-width: 300px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.footer-note {
    flex-basis: 100%;
    text-align: center;
    margin-top: 2rem;
    color: #8f8f8f;
}

.whatsapp-float {
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    color: #050505;
    padding: 0.5rem 0.9rem 0.5rem 0.5rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    z-index: 2000;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .site-header {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: space-between;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: 100% 0 auto 0;
        background: #ffffff;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: none;
    }

    .site-nav.open {
        display: flex;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: 70vh;
    }

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

    .hero-whatsapp-card {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        padding: 1rem;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        margin: 0;
    }

    .hero {
        padding: 2.5rem 1rem;
        min-height: 55vh;
    }

    .hero-content,
    .section-heading,
    .last-mile-content,
    .warehouses-text {
        text-align: center;
        padding-inline: 0.5rem;
    }

    .contact-form {
        text-align: center;
        padding: 2.5rem 1.6rem 1.8rem;
    }

    .contact-form .section-tag {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        margin-top: 0.3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta,
    .cta-group {
        justify-content: center;
    }

    .testimonials {
        margin-top: -40px;
    }

    .partner-grid article,
    .service-card {
        text-align: center;
        padding-inline: 0.5rem;
    }

    .partner-grid article img,
    .service-card img {
        margin-left: auto;
        margin-right: auto;
    }

    .section-heading h2,
    .last-mile-content h2,
    .warehouses-text h2,
    .contact-form h2 {
        margin-top: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .lead,
    .section-heading p,
    .last-mile-content p,
    .warehouses-text p,
    .contact-form p,
    .testimonial-answer,
    .partner-grid article p,
    .service-card p {
        margin: 0.5rem 0 0.9rem;
    }

    .section-heading {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .last-mile,
    .warehouses,
    .contact {
        padding: 1.5rem 1rem;
        gap: 1.2rem;
    }

    .testimonials {
        padding: 2.2rem 1rem;
    }

    .testimonials-carousel {
        gap: 1.2rem;
    }

    .testimonials-window {
        border-radius: 24px;
    }

    .testimonial-slide {
        padding: 1rem;
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-nav {
        gap: 0.8rem;
    }

    .testimonial-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .metrics {
        padding: 2.5rem 1.2rem;
    }

    .last-mile-content,
    .contact-form,
    .last-mile-illustration {
        border-radius: 20px;
        padding: 1.2rem;
    }

    .cta-group .btn,
    .contact-cta .btn {
        flex: none;
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }
}
.van .wheel {
    position: absolute;
    bottom: -16px;
    width: 30px;
    height: 30px;
    background: #0f0f0f;
    border-radius: 50%;
    border: 4px solid #fff;
}
