:root {
    --bg-dark: #050505;
    --bg-dark-soft: #0f1110;
    --surface: #ffffff;
    --surface-soft: #f4f6f4;
    --surface-muted: #e9eeea;
    --text-main: #111614;
    --text-soft: #5d6762;
    --text-white: #fdfdfd;
    --line-dark: rgba(255, 255, 255, 0.12);
    --line-light: rgba(17, 22, 20, 0.08);
    --accent: #007637;
    --accent-strong: #005d2c;
    --accent-light: #10b55d;
    --accent-glow: rgba(16, 181, 93, 0.22);
    --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --header-height: 92px;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(16, 181, 93, 0.08), transparent 34%),
        linear-gradient(180deg, #f7f8f7 0%, #eef1ee 100%);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

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

a,
button,
input,
select,
textarea {
    font: inherit;
}

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

button {
    border: 0;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

main section[id],
footer[id] {
    scroll-margin-top: 110px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-heading--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--light {
    color: var(--text-white);
}

.section-kicker,
.eyebrow,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker {
    color: var(--accent);
    margin-bottom: 16px;
}

.section-heading--light .section-kicker,
.hero-copy .eyebrow,
.panel-label {
    color: #b6f7d1;
}

.section-heading h2,
.hero-copy h1,
.hero-panel h2,
.cta-card h2 {
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.section-heading h2 {
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    margin-bottom: 16px;
}

.section-heading p,
.hero-description,
.hero-panel p,
.proof-card p,
.service-card p,
.process-card p,
.about-copy p,
.gallery-caption p,
.testimonial-card p,
.faq-answer p,
.contact-form-card p,
.cta-card p,
.footer-brand p {
    color: var(--text-soft);
    line-height: 1.75;
}

.section-heading--light p,
.hero-panel p,
.proof-card p,
.gallery-caption p,
.cta-card p {
    color: rgba(255, 255, 255, 0.76);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.98rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.btn-primary {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(16, 181, 93, 0.32);
}

.btn-secondary {
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.btn-compact {
    padding: 12px 18px;
    font-size: 0.92rem;
}

.btn-block {
    width: 100%;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(5, 5, 5, 0.68);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.main-header.is-scrolled {
    background: rgba(5, 5, 5, 0.92);
    border-color: var(--line-dark);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.brand {
    position: relative;
    z-index: 1001;
}

.main-logo {
    width: 174px;
    height: 66px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.main-nav>a:hover,
.main-nav>a.is-active {
    color: var(--text-white);
}

.nav-cta {
    display: none;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.language-button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.language-button:hover {
    color: var(--text-white);
    transform: translateY(-1px);
}

.language-button.is-active {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 12px 24px rgba(16, 181, 93, 0.24);
}

.header-quick-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
}

.header-pill i {
    color: #b6f7d1;
}

.header-pill span,
.header-pill strong {
    display: block;
    line-height: 1.2;
}

.header-pill span {
    font-size: 0.76rem;
    opacity: 0.72;
}

.header-pill strong {
    font-size: 0.96rem;
}

.header-pill--whatsapp {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
    font-size: 1.4rem;
}

.menu-toggle {
    display: none;
}

.hero-section {
    position: relative;
    padding: calc(var(--header-height) + 48px) 0 42px;
    min-height: 100vh;
    color: var(--text-white);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 45%, rgba(5, 5, 5, 0.44) 100%),
        url("assets/hero-truck.jpg") center right / cover no-repeat;
    z-index: -3;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(16, 181, 93, 0.28), transparent 34%),
        linear-gradient(180deg, transparent 65%, rgba(5, 5, 5, 0.45) 100%);
    z-index: -2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(3.7rem, 7vw, 6.8rem);
    margin: 18px 0 20px;
    max-width: 12ch;
}

.hero-copy h1 span {
    display: block;
    color: #c9ffd8;
}

.hero-description {
    font-size: 1.08rem;
    max-width: 600px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
}

.hero-badge,
.hero-panel,
.proof-card,
.service-card,
.process-card,
.testimonial-card,
.faq-item,
.contact-form-card,
.contact-card,
.map-card,
.cta-card {
    border-radius: var(--radius-lg);
}

.hero-badge {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.hero-badge strong {
    display: block;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hero-badge span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.76);
}

.hero-panel {
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}

.hero-panel h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin: 14px 0 16px;
}

.dispatch-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.dispatch-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dispatch-list i {
    color: #b6f7d1;
    margin-top: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.stats-grid article {
    padding: 18px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
    display: block;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.45rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.stats-grid span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.proof-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.proof-card i {
    font-size: 1.3rem;
    color: #b6f7d1;
    margin-top: 4px;
}

.proof-card h3,
.quick-card h3,
.service-card h3,
.process-card h3,
.about-copy h2,
.language-copy h3,
.gallery-caption span,
.testimonial-card span,
.contact-form-card h3,
.contact-card h3,
.footer-column h3 {
    font-family: "Barlow Semi Condensed", sans-serif;
}

.proof-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.quick-strip,
.services-section,
.about-section,
.coverage-section,
.testimonials-section,
.faq-section,
.contact-section,
.cta-section {
    padding: 100px 0;
}

.quick-grid,
.services-grid,
.testimonials-grid {
    display: grid;
    gap: 22px;
}

.quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.quick-card,
.service-card,
.testimonial-card,
.contact-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 22, 20, 0.08);
    box-shadow: var(--shadow-md);
}

.quick-card,
.service-card {
    display: block;
    width: 100%;
    padding: 28px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.quick-card::before,
.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.quick-card:hover,
.service-card:hover,
.testimonial-card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}

.quick-card:hover::before,
.service-card:hover::before {
    opacity: 1;
}

.quick-card i,
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 118, 55, 0.14), rgba(16, 181, 93, 0.08));
    border: 1px solid rgba(0, 118, 55, 0.12);
}

.quick-card i,
.service-icon i {
    font-size: 1.6rem;
}

.quick-card h3,
.service-card h3,
.process-card h3,
.contact-form-card h3,
.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.quick-card p,
.service-card p,
.testimonial-card p,
.contact-card p {
    color: var(--text-soft);
    line-height: 1.75;
}

.service-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--accent);
    font-weight: 800;
    background: rgba(0, 118, 55, 0.08);
    transition: var(--transition);
}

.service-link:hover {
    background: rgba(0, 118, 55, 0.12);
    transform: translateY(-2px);
}

.process-section,
.gallery-section,
.main-footer {
    position: relative;
    color: var(--text-white);
    background: linear-gradient(180deg, #050505 0%, #101312 100%);
}

.process-section::before,
.gallery-section::before,
.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(16, 181, 93, 0.2), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
    opacity: 0.26;
    pointer-events: none;
}

.process-section .container,
.gallery-section .container,
.main-footer .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text-white);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-photo {
    min-height: 540px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38)),
        url("assets/original-truck.jpg") center / cover no-repeat;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    right: -18px;
    bottom: 28px;
    display: flex;
    gap: 14px;
    align-items: center;
    max-width: 320px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(5, 5, 5, 0.9);
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    font-size: 1.4rem;
    color: #b6f7d1;
}

.about-copy h2 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.98;
    margin-bottom: 18px;
}

.about-copy p + p {
    margin-top: 14px;
}

.about-points {
    display: grid;
    gap: 14px;
    margin: 30px 0 34px;
}

.about-point {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 22, 20, 0.08);
}

.about-point i {
    color: var(--accent);
    margin-top: 4px;
}

.language-panel {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 118, 55, 0.09), rgba(16, 181, 93, 0.05));
    border: 1px solid rgba(0, 118, 55, 0.12);
}

.flags-container {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.flags-container img {
    width: 56px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.language-copy h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.language-copy p {
    color: var(--text-soft);
    line-height: 1.7;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.coverage-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 22, 20, 0.08);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}

.coverage-card h3 {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.coverage-card p {
    color: var(--text-soft);
    line-height: 1.75;
}

.gallery-section {
    padding: 100px 0;
}

.gallery-slider {
    position: relative;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: min(72vh, 620px);
    object-fit: cover;
}

.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.gallery-caption {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 30px;
    z-index: 1;
    max-width: 560px;
}

.gallery-caption span {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 2rem;
    color: var(--text-white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 5, 0.6);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    z-index: 2;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(5, 5, 5, 0.78);
}

.slider-arrow--prev {
    left: 18px;
}

.slider-arrow--next {
    right: 18px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: transform var(--transition), background var(--transition);
}

.slider-dot.is-active {
    transform: scale(1.2);
    background: #b6f7d1;
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    padding: 28px;
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    color: #f3c85f;
}

.testimonial-card span {
    display: inline-block;
    margin-top: 18px;
    font-size: 1rem;
    color: var(--accent);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 22, 20, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.faq-question i {
    transition: transform var(--transition);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 26px 24px;
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 24px;
    align-items: start;
}

.contact-form-card,
.contact-card,
.map-card {
    padding: 30px;
}

.contact-form-card,
.contact-card,
.map-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 22, 20, 0.08);
    box-shadow: var(--shadow-md);
}

.contact-form-card p {
    margin-bottom: 26px;
}

.contact-sidebar {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-grid label span {
    font-weight: 700;
    color: var(--text-main);
}

.full-width {
    grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(17, 22, 20, 0.12);
    background: #f8faf8;
    color: var(--text-main);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: rgba(0, 118, 55, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 118, 55, 0.12);
}

.form-note,
.form-feedback {
    margin-top: 16px;
    font-size: 0.94rem;
}

.form-feedback {
    min-height: 24px;
    color: var(--accent-strong);
    font-weight: 700;
}

.contact-link {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 22, 20, 0.08);
    color: var(--text-main);
}

.contact-link:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-link i {
    color: var(--accent);
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-areas span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 118, 55, 0.08);
    color: var(--accent);
    font-weight: 700;
}

.contact-info-list p + p {
    margin-top: 10px;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 40px;
    color: var(--text-white);
    background:
        linear-gradient(130deg, rgba(5, 5, 5, 0.94), rgba(10, 18, 13, 0.94)),
        url("assets/hero-truck.jpg") center / cover no-repeat;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cta-card p {
    max-width: 580px;
}

.cta-card h2 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    margin-bottom: 14px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.main-footer {
    padding: 86px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
    gap: 28px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column span,
.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.footer-column a:hover {
    color: var(--text-white);
}

.footer-brand img {
    width: 180px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 16px;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.56);
    text-align: center;
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 980;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--text-white);
    background: linear-gradient(135deg, #0da94f, #18cf64);
    box-shadow: 0 22px 44px rgba(24, 207, 100, 0.26);
    animation: floatPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 1.35rem;
}

.mobile-cta-bar {
    display: none;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 22px 44px rgba(24, 207, 100, 0.26);
    }

    50% {
        transform: translateY(-6px);
        box-shadow: 0 26px 56px rgba(24, 207, 100, 0.34);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        gap: 18px;
    }

    .header-pill {
        padding: 10px 14px;
    }

    .header-pill strong {
        font-size: 0.88rem;
    }

    .language-button {
        width: 34px;
        height: 34px;
    }

    .hero-badges,
    .hero-proof,
    .quick-grid,
    .services-grid,
    .process-grid,
    .testimonials-grid,
    .coverage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        max-width: 11ch;
    }

    .about-photo {
        min-height: 460px;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 78px;
    }

    body {
        padding-bottom: 92px;
    }

    .container {
        width: min(100% - 24px, 1180px);
    }

    .main-logo {
        width: 146px;
        height: 56px;
    }

    .language-switcher {
        margin-left: auto;
        order: 2;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 0 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        position: relative;
        z-index: 1001;
        order: 3;
        margin-left: 10px;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--text-white);
        border-radius: 999px;
        transition: transform var(--transition), opacity var(--transition);
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 14px;
        right: 12px;
        left: 12px;
        padding: 88px 22px 24px;
        border-radius: 28px;
        background: rgba(5, 5, 5, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition);
        z-index: 1000;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .nav-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 10px;
        width: 100%;
    }

    .header-quick-actions {
        display: none;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 32px);
        min-height: auto;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-badges,
    .hero-proof,
    .quick-grid,
    .services-grid,
    .process-grid,
    .testimonials-grid,
    .coverage-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .quick-strip,
    .services-section,
    .about-section,
    .testimonials-section,
    .faq-section,
    .contact-section,
    .cta-section,
    .gallery-section,
    .process-section,
    .main-footer {
        padding: 78px 0;
    }

    .about-badge {
        position: static;
        margin-top: 16px;
        max-width: none;
    }

    .language-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-slide img {
        height: 420px;
    }

    .gallery-caption {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .gallery-caption span {
        font-size: 1.6rem;
    }

    .slider-arrow {
        width: 46px;
        height: 46px;
    }

    .slider-arrow--prev {
        left: 10px;
    }

    .slider-arrow--next {
        right: 10px;
    }

    .cta-card {
        padding: 30px 24px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 104px;
        padding: 12px 14px;
    }

    .floating-whatsapp span {
        display: none;
    }

    .mobile-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 970;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: rgba(5, 5, 5, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
        padding: 10px 12px 12px;
        gap: 10px;
    }

    .mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 16px;
        font-weight: 800;
        color: var(--text-white);
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-cta--whatsapp {
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
    }
}

@media (max-width: 580px) {
    .section-heading h2,
    .about-copy h2,
    .cta-card h2 {
        line-height: 1;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-panel,
    .quick-card,
    .service-card,
    .testimonial-card,
    .contact-form-card,
    .contact-card {
        padding: 24px;
    }

    .faq-question {
        padding: 20px 22px;
        font-size: 1.32rem;
    }

    .faq-answer p {
        padding: 0 22px 22px;
    }

    .map-card iframe {
        min-height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
