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

:root {
    --navy: #0a1628;
    --navy-mid: #142038;
    --navy-light: #1e3050;
    --gold: #c49a3c;
    --gold-light: #d9b870;
    --gold-pale: #f5eed8;
    --cream: #faf8f3;
    --white: #ffffff;
    --gray-100: #f0ede6;
    --gray-200: #e0ddd6;
    --gray-300: #c8c3b8;
    --gray-500: #8a8478;
    --text-dark: #0a1628;
    --text-mid: #4a4640;
    --text-muted: #8a8478;
    --ff-serif: "Cormorant Garamond", Georgia, serif;
    --ff-sans: "DM Sans", system-ui, sans-serif;
    --radius: 3px;
    --transition: 0.22s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-sans);
    background: var(--cream);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ─────────────────────────────── */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.eyebrow span {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}
.eyebrow--center {
    justify-content: center;
}
.eyebrow--center::before {
    display: none;
}

h2.section-title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
p.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-weight: 300;
    max-width: 540px;
}

.btn {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    padding: 0.85rem 2rem;
    cursor: pointer;
    border: none;
    transition:
        background var(--transition),
        transform var(--transition),
        color var(--transition),
        border-color var(--transition);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    width: 100%;
    text-align: center;
}
.btn-navy:hover {
    background: var(--navy-mid);
}

/* ─── NAVIGATION ────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(196, 154, 60, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
}
.nav-logo {
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    text-decoration: none;
}
.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.79rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color var(--transition);
}
.nav-links a:hover {
    color: var(--gold-light);
}
.nav-links .nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 500;
}
.nav-links .nav-cta:hover {
    background: var(--gold-light);
    color: var(--navy);
}

/* hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1601158935942-52255782d322?w=1920&auto=format&fit=crop&q=55");
    background-size: cover;
    background-position: center 35%;
    opacity: 0.15;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 22, 40, 0.98) 42%,
        rgba(10, 22, 40, 0.65) 100%
    );
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(196, 154, 60, 0.035) 80px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(196, 154, 60, 0.035) 80px
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 4rem 9rem 5.5rem;
}
.hero-content .eyebrow {
    margin-bottom: 1.75rem;
}
.hero-content h1 {
    font-family: var(--ff-serif);
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 600;
    line-height: 1.07;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.hero-content h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    max-width: 420px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-panel {
    position: relative;
    z-index: 2;
    padding: 9rem 5rem 9rem 2rem;
    display: flex;
    align-items: center;
}
.stats-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(196, 154, 60, 0.22);
    border-radius: 6px;
    padding: 0;
    width: 100%;
    max-width: 360px;
    overflow: hidden;
}
.stat-item {
    padding: 1.6rem 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.stat-item:last-child {
    border-bottom: none;
}
.stat-num {
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    min-width: 72px;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-weight: 300;
}

/* ─── TRUST BAR ─────────────────────────────── */
.trust-bar {
    background: var(--gold);
    padding: 0.9rem 5.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    row-gap: 0.6rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--navy);
    text-transform: uppercase;
    flex-shrink: 0;
}
.trust-item svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--navy);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(10, 22, 40, 0.2);
    flex-shrink: 0;
}

/* ─── SERVICES ──────────────────────────────── */
#services {
    background: var(--white);
    padding: 7rem 5.5rem;
}
.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 4rem;
}
.services-intro-cta {
    flex-shrink: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1.5px solid var(--gray-200);
    gap: 0;
}
.svc-card {
    border-right: 1.5px solid var(--gray-200);
    border-bottom: 1.5px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow var(--transition);
    position: relative;
}
.svc-card:nth-child(3n) {
    border-right: none;
}
.svc-card:nth-last-child(-n + 3) {
    border-bottom: none;
}
.svc-card:hover {
    box-shadow: inset 0 0 0 2px rgba(196, 154, 60, 0.35);
}

.svc-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    filter: grayscale(25%) brightness(0.95);
    transition:
        filter 0.4s,
        transform 0.5s;
}
.svc-card:hover .svc-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

.svc-body {
    padding: 1.75rem 2rem 2.25rem;
}
.svc-num {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gray-100);
    line-height: 1;
    float: right;
    margin: -0.3rem 0 0 1rem;
    user-select: none;
}
.svc-icon {
    margin-bottom: 1.25rem;
}
.svc-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svc-body h3 {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    clear: right;
}
.svc-body p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.82;
}

/* ─── IMAGE BANNER ──────────────────────────── */
.img-banner {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 1fr;
    height: 380px;
    overflow: hidden;
}
.img-panel {
    position: relative;
    overflow: hidden;
}
.img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.img-panel:hover img {
    transform: scale(1.05);
}
.img-panel-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.img-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.7) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* ─── LOGISTICS ─────────────────────────────── */
#logistics {
    background: var(--navy);
    padding: 7rem 5.5rem;
}
#logistics .section-title {
    color: var(--white);
}
#logistics .section-sub {
    color: rgba(255, 255, 255, 0.52);
    max-width: 620px;
}
.logistics-header {
    margin-bottom: 3.75rem;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(196, 154, 60, 0.12);
    margin-bottom: 2.5rem;
}
.log-card {
    background: rgba(14, 28, 52, 0.85);
    padding: 2.25rem;
    transition: background var(--transition);
}
.log-card:hover {
    background: rgba(196, 154, 60, 0.08);
}
.log-card-icon {
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.log-card-icon svg {
    width: 32px;
    height: 32px;
}
.log-card h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.65rem;
}
.log-card p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.85;
}

.incoterms-bar {
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-radius: var(--radius);
    padding: 1.6rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.025);
}
.incoterms-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}
.incoterms-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.inco-tag {
    background: rgba(196, 154, 60, 0.1);
    border: 1px solid rgba(196, 154, 60, 0.28);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.inco-tag:hover {
    background: rgba(196, 154, 60, 0.22);
}

/* ─── GLOBAL STRIP ──────────────────────────── */
.global-strip {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: var(--navy-mid);
}
.global-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    display: block;
}
.global-strip-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.global-strip-inner h2 {
    font-family: var(--ff-serif);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.6rem;
}
.global-strip-inner h2 em {
    font-style: normal;
    color: var(--gold);
}
.global-strip-inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}
.location-dots {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.location-dot {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.location-dot::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ─── ABOUT ─────────────────────────────────── */
#about {
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 7rem 5.5rem;
}
#about .section-title {
    color: var(--white);
}
#about .section-sub {
    color: rgba(255, 255, 255, 0.52);
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.about-body {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.95;
    margin-bottom: 1rem;
}
.about-pillars {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.pillar {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.pillar-line {
    width: 1px;
    height: 2.75rem;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.3rem;
}
.pillar h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.pillar p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.7;
}

.metrics-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(196, 154, 60, 0.15);
    border: 1px solid rgba(196, 154, 60, 0.18);
    border-radius: 5px;
    overflow: hidden;
}
.metric {
    background: rgba(10, 22, 40, 0.75);
    padding: 2rem 2.25rem;
}
.metric-num {
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.metric-label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

/* ─── PARTNERS ──────────────────────────────── */
#partners {
    background: var(--cream);
    padding: 6rem 5.5rem;
    text-align: center;
}
#partners .section-title {
    margin-bottom: 0.75rem;
}
#partners .section-sub {
    margin: 0 auto 3.5rem;
    max-width: 700px;
}
.footer-contact-link {
    color: var(--gold);
    margin-top: 0.5rem;
    display: block;
    font-size: 0.83rem;
    text-decoration: none;
    transition: color var(--transition);
}
.footer-contact-link:hover {
    color: var(--gold-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1.5px solid var(--gray-200);
    gap: 0;
    margin-bottom: 1.75rem;
}
.partner {
    border-right: 1.5px solid var(--gray-200);
    border-bottom: 1.5px solid var(--gray-200);
    padding: 2rem 1.5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: background var(--transition);
}
.partner:nth-child(4n) {
    border-right: none;
}
.partner:nth-last-child(-n + 4) {
    border-bottom: none;
}
.partner:hover {
    background: var(--navy);
}

.partner-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--transition);
}
.partner:hover .partner-icon svg {
    stroke: var(--gold-light);
}

.partner-name {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition);
}
.partner:hover .partner-name {
    color: var(--white);
}

.partner-cat {
    font-size: 0.69rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}
.partner:hover .partner-cat {
    color: var(--gold);
}

.partners-foot {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.partners-disclaimer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: left;
}
.partners-disclaimer svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.partners-disclaimer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* ─── WHY US ─────────────────────────────────── */
#why {
    background: var(--white);
    padding: 6.5rem 5.5rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}
.why-card {
    padding: 0;
}
.why-num {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.why-card h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}
.why-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.82;
}

/* ─── CONTACT ────────────────────────────────── */
#contact {
    background: var(--cream);
    padding: 7rem 5.5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5.5rem;
    align-items: start;
}
.contact-left .section-title {
    margin-bottom: 0.85rem;
}
.contact-left .section-sub {
    margin-bottom: 0.5rem;
}
.contact-human {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 1.25rem 0 2rem;
    font-style: italic;
}

.contact-locations {
    margin-top: 2rem;
}
.contact-loc-title {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.contact-loc-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.contact-detail {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.detail-icon {
    width: 34px;
    height: 34px;
    background: var(--gold-pale);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.detail-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.detail-text strong {
    display: block;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}
.detail-text span {
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* FORM */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 5px;
    padding: 2.75rem;
}
.form-title {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.form-hint {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.7rem 0.95rem;
    font-family: var(--ff-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-response-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.9rem;
    font-style: italic;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(196, 154, 60, 0.14);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 5.5rem 3rem;
}
.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    max-width: 240px;
}
.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color var(--transition);
    font-weight: 300;
}
.footer-col a:hover {
    color: var(--gold-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 5.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.28);
}

/* ─── RESPONSIVE ─────────────────────────────── */

/* Tablet landscape: 1024px */
@media (max-width: 1024px) {
    nav {
        padding: 0 2.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 85vh;
    }
    .hero-panel {
        display: none;
    }
    .hero-content {
        padding: 8rem 2.5rem 5rem;
    }
    .hero-content h1 {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
    }

    .trust-bar {
        padding: 0.9rem 2.5rem;
        gap: 1.5rem;
    }

    #services {
        padding: 5rem 2.5rem;
    }
    .services-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .svc-card:nth-child(3n) {
        border-right: 1.5px solid var(--gray-200);
    }
    .svc-card:nth-child(2n) {
        border-right: none;
    }
    .svc-card:nth-last-child(-n + 3) {
        border-bottom: 1.5px solid var(--gray-200);
    }
    .svc-card:last-child {
        border-bottom: none;
    }

    .img-banner {
        height: 280px;
    }

    #logistics {
        padding: 5rem 2.5rem;
    }
    .logistics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .global-strip {
        height: 280px;
    }
    .global-strip-inner h2 {
        font-size: 1.8rem;
    }

    #about {
        grid-template-columns: 1fr;
        padding: 5rem 2.5rem;
        gap: 3rem;
    }
    #about .section-sub {
        max-width: 100%;
    }
    .metrics-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    #partners {
        padding: 5rem 2.5rem;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner:nth-child(4n) {
        border-right: 1.5px solid var(--gray-200);
    }
    .partner:nth-child(2n) {
        border-right: none;
    }
    .partner:nth-last-child(-n + 4) {
        border-bottom: 1.5px solid var(--gray-200);
    }
    .partner:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    #why {
        padding: 5rem 2.5rem;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    #contact {
        grid-template-columns: 1fr;
        padding: 5rem 2.5rem;
        gap: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 2.5rem 2rem;
        gap: 2rem;
    }
    .footer-bottom {
        padding: 1.25rem 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Tablet portrait: 768px */
@media (max-width: 768px) {
    .hero-content {
        padding: 7.5rem 2rem 4rem;
    }
    .hero-content h1 {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }
    .hero-content p {
        font-size: 0.92rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .trust-bar {
        padding: 0.85rem 2rem;
        gap: 1rem;
    }
    .trust-item {
        font-size: 0.72rem;
    }

    .logistics-grid {
        grid-template-columns: 1fr;
    }

    .metrics-panel {
        grid-template-columns: 1fr 1fr;
    }

    .incoterms-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .global-strip {
        height: auto;
        min-height: 260px;
    }
    .global-strip-inner {
        padding: 2.5rem 2rem;
    }
    .location-dots {
        gap: 1rem;
    }

    .partners-disclaimer {
        flex-direction: column;
    }

    .contact-form {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem 1.5rem;
    }
    .footer-bottom {
        padding: 1.25rem 2rem;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    nav {
        padding: 0 1.25rem;
        height: 60px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.99);
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(196, 154, 60, 0.18);
        z-index: 199;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-logo {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 100svh;
    }
    .hero-content {
        padding: 6rem 1.25rem 3.5rem;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }
    .hero-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .trust-bar {
        padding: 0.75rem 1.25rem;
        gap: 0.85rem;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    .trust-item svg {
        width: 13px;
        height: 13px;
    }

    #services {
        padding: 3.5rem 1.25rem;
    }
    .services-intro {
        gap: 1.25rem;
    }
    .services-intro-cta .btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .svc-card:nth-child(n) {
        border-right: none;
        border-bottom: 1.5px solid var(--gray-200);
    }
    .svc-card:last-child {
        border-bottom: none;
    }
    .svc-img {
        height: 160px;
    }

    .img-banner {
        display: flex;
        flex-direction: column;
    }
    .img-panel {
        height: 170px;
    }

    #logistics {
        padding: 3.5rem 1.25rem;
    }
    .log-card {
        padding: 1.75rem 1.5rem;
    }
    .incoterms-bar {
        padding: 1.25rem 1.5rem;
    }
    .incoterms-tags {
        gap: 0.5rem;
    }

    .global-strip {
        min-height: 320px;
    }
    .global-strip-inner h2 {
        font-size: 1.5rem;
    }
    .global-strip-inner p {
        font-size: 0.84rem;
    }
    .location-dots {
        gap: 0.75rem;
    }
    .location-dot {
        font-size: 0.68rem;
    }

    #about {
        padding: 3.5rem 1.25rem;
        gap: 2.5rem;
    }
    .about-body {
        font-size: 0.86rem;
    }
    .metrics-panel {
        grid-template-columns: 1fr 1fr;
    }
    .metric {
        padding: 1.5rem 1.25rem;
    }
    .metric-num {
        font-size: 2rem;
    }

    #partners {
        padding: 3.5rem 1.25rem;
    }
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    .partner {
        padding: 1.5rem 1rem;
    }
    .partner-name {
        font-size: 1rem;
    }

    #why {
        padding: 3.5rem 1.25rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-num {
        font-size: 2.75rem;
    }

    #contact {
        padding: 3.5rem 1.25rem;
        gap: 2.5rem;
    }
    .contact-form {
        padding: 1.75rem 1.25rem;
    }

    .footer-main {
        padding: 2.5rem 1.25rem 1.5rem;
        gap: 2rem;
    }
    .footer-bottom {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
    .footer-bottom span {
        font-size: 0.7rem;
    }

    h2.section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    p.section-sub {
        font-size: 0.88rem;
    }
}

/* Very small: 360px (small Android/older phones) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner:nth-child(n) {
        border-right: none;
        border-bottom: 1.5px solid var(--gray-200);
    }
    .partner:last-child {
        border-bottom: none;
    }
    .metrics-panel {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
