:root {
    --primary: #0b1f3a;
    --navy: #0b1f3a;
    --ink: #152033;
    --muted: #637083;
    --line: #dfe6ef;
    --soft: #f4f7fb;
    --white: #ffffff;
    --gold: #f0a33a;
    --gold-dark: #c67812;
    --teal: #1d9a9a;
    --shadow: 0 18px 45px rgba(11, 31, 58, .16);
    --radius: 8px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    letter-spacing: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--gold);
    color: #111;
    padding: 10px 14px;
    z-index: 50;
}

.skip-link:focus {
    left: 10px;
}

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

.topbar {
    background: #07182f;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
}

.topbar-inner,
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-inner {
    justify-content: space-between;
    min-height: 38px;
}

.topbar span,
.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar svg,
.footer svg,
.btn svg,
.icon-badge svg,
.contact-list svg,
.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lang-switch {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 2px;
    background: rgba(255, 255, 255, .08);
}

.lang-switch a {
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 800;
}

.lang-switch a.active {
    color: #111;
    background: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 230, 239, .75);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 28px rgba(11, 31, 58, .09);
}

.nav-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
}

.brand img,
.footer-logo {
    width: 210px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.nav-menu a {
    padding: 10px 9px;
    border-radius: 999px;
    color: #27364c;
    font-weight: 650;
    font-size: 14px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary);
    background: #edf3fa;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    color: var(--primary);
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.nav-language {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 750;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 31, 58, .16);
}

.btn-primary {
    background: var(--gold);
    color: #14120f;
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: var(--line);
}

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn.full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--navy);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: opacity .8s ease, transform 4s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 24, 47, .9), rgba(7, 24, 47, .58), rgba(7, 24, 47, .3));
}

.hero-inner {
    position: relative;
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
}

.hero-copy {
    width: min(660px, 100%);
    color: #fff;
    padding: 80px 0 130px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    max-width: 620px;
}

.hero-calculator-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-calculator {
    pointer-events: auto;
    width: min(430px, 100%);
    margin-left: auto;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 999px;
    transform: translateY(-50%);
    z-index: 3;
    font-size: 28px;
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.hero-dots button.active {
    width: 28px;
    border-radius: 999px;
    background: var(--gold);
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--soft);
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.section-head h2,
.split h2,
.cta-inner h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.18;
}

.section-head p:not(.eyebrow),
.split p,
.cta-inner p,
.feature-card p,
.destination-card p,
.news-card p,
.footer p {
    color: var(--muted);
}

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

.feature-card,
.destination-card,
.news-card,
.shipping-card,
.contact-form,
.contact-panel,
.tracking-card,
.tracking-result,
.stacked-cards article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(11, 31, 58, .07);
}

.feature-card,
.destination-card,
.stacked-cards article {
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover,
.destination-card:hover,
.news-card:hover,
.gallery-card:hover {
    transform: translateY(-4px) perspective(900px) rotateX(1deg);
    box-shadow: var(--shadow);
}

.icon-badge {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff4df;
    color: var(--gold-dark);
}

.feature-card h2,
.feature-card h3,
.destination-card h3,
.news-card h3,
.step-card h3 {
    margin: 16px 0 8px;
    line-height: 1.25;
}

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

.gallery-card {
    position: relative;
    min-height: 270px;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    background: #14213d;
    color: #fff;
    text-align: left;
    box-shadow: 0 12px 28px rgba(11, 31, 58, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(7, 24, 47, .86));
}

.gallery-card small {
    display: block;
    color: rgba(255, 255, 255, .78);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.filter-row button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary);
    padding: 9px 14px;
    border-radius: 999px;
}

.filter-row button.active {
    background: var(--primary);
    color: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.step-card {
    position: relative;
    padding: 20px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    min-height: 140px;
}

.step-card span {
    color: var(--gold-dark);
    font-weight: 850;
}

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

.destination-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eef7f7;
    color: var(--teal);
    font-weight: 850;
}

.destination-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 800;
}

.destination-card svg,
.text-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 46px;
    align-items: center;
}

.align-start {
    align-items: start;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metric-grid div {
    padding: 22px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
}

.metric-grid strong {
    display: block;
    color: var(--primary);
    font-size: 30px;
}

.metric-grid span {
    color: var(--muted);
}

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

.news-card {
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-card > div {
    padding: 20px;
}

.news-meta {
    margin: 0 0 8px;
    color: var(--gold-dark) !important;
    font-weight: 750;
    font-size: 13px;
}

.center-actions {
    text-align: center;
    margin-top: 30px;
}

.cta-band {
    background: var(--primary);
    color: #fff;
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner p {
    color: rgba(255, 255, 255, .78);
}

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

.shipping-card,
.contact-form,
.tracking-card,
.contact-panel,
.tracking-result {
    padding: 24px;
}

.shipping-card {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
}

.card-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.card-head > span {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff4df;
    color: var(--gold-dark);
}

.card-head svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.card-head h2 {
    margin: 0;
    font-size: 22px;
}

.card-head p {
    margin: 2px 0 0;
    color: var(--muted);
}

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

label {
    display: grid;
    gap: 7px;
    color: #2e3d54;
    font-size: 14px;
    font-weight: 550;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--ink);
    background: #fff;
    color-scheme: light;
    font-weight: 400;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(240, 163, 58, .16);
}

.calculator-result {
    margin-top: 14px;
}

.result-box {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #b9eadb;
    background: #effcf7;
    color: #155d46;
}

.result-box.error {
    border-color: #ffd0d0;
    background: #fff3f3;
    color: #8b1e1e;
}

.result-box strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
}

.page-hero {
    background: linear-gradient(135deg, #07182f, #12375c);
    color: #fff;
    padding: 96px 0 76px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 16px;
}

summary {
    font-weight: 800;
    cursor: pointer;
}

.stacked-cards {
    display: grid;
    gap: 14px;
}

.toolbar {
    padding-bottom: 0;
}

.toolbar input {
    max-width: 520px;
    margin: 0 auto;
}

.tracking-result {
    min-height: 220px;
}

.tracking-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.tracking-timeline li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
}

.tracking-timeline span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--line);
    flex: 0 0 auto;
}

.tracking-timeline li.done {
    color: var(--ink);
    font-weight: 750;
}

.tracking-timeline li.done span {
    background: var(--teal);
    border-color: var(--teal);
}

.article-wrap {
    max-width: 850px;
}

.article-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.article-content {
    font-size: 17px;
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form .btn {
    width: fit-content;
    min-width: 190px;
}

.contact-list,
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.contact-list li,
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.social-row a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #edf3fa;
    color: var(--primary);
}

.map-wrap {
    margin-top: 24px;
}

.map-wrap iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: var(--radius);
}

.map-placeholder {
    min-height: 260px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--soft);
}

.form-alert {
    display: none;
    padding: 12px 14px;
    border-radius: 8px;
    line-height: 1.55;
}

.form-alert.show {
    display: block;
}

.form-alert.success {
    background: #effcf7;
    color: #155d46;
}

.form-alert.error {
    background: #fff3f3;
    color: #8b1e1e;
}

.footer {
    background: #07182f;
    color: rgba(255, 255, 255, .82);
    padding: 62px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1fr;
    gap: 42px;
}

.footer h2 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 16px;
}

.footer a:hover {
    color: var(--gold);
}

.footer .social-row a {
    background: rgba(255, 255, 255, .09);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 42px;
    padding-top: 20px;
    font-size: 14px;
}

.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: #20b55f;
    box-shadow: 0 16px 32px rgba(32, 181, 95, .35);
    transition: transform .2s ease;
}

.floating-wa:hover {
    transform: translateY(-3px) scale(1.03);
}

.floating-wa svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(4, 12, 24, .86);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-height: 86vh;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 28px;
}

.reveal,
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible,
.fade-up.visible,
.hero-slide.active .fade-up {
    opacity: 1;
    transform: translateY(0);
}

.maintenance {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
}

.maintenance img {
    width: 220px;
    margin: 0 auto 20px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1080px) {
    .nav-inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-menu.open {
        display: grid;
        grid-column: 1 / -1;
        width: 100%;
        justify-content: stretch;
        background: #fff;
        padding: 12px 0 18px;
    }

    .nav-menu.open a {
        border-radius: 6px;
        padding: 12px;
    }

    .nav-menu.open .nav-language {
        display: flex;
        gap: 8px;
        padding-top: 8px;
    }

    .nav-menu.open .nav-language a {
        flex: 1;
        justify-content: center;
        text-align: center;
        border: 1px solid var(--line);
        border-radius: 8px;
    }

    .nav-menu.open .nav-language a.active {
        background: var(--gold);
        color: #14120f;
        border-color: var(--gold);
    }

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

    .hero-copy {
        max-width: 650px;
    }

    .hero-calculator-wrap {
        align-items: end;
        padding-bottom: 42px;
    }

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

@media (max-width: 820px) {
    .topbar-left {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        overflow: visible;
        background: var(--navy);
        padding-bottom: 34px;
    }

    .hero-slides {
        position: relative;
        min-height: 610px;
        overflow: hidden;
    }

    .hero-slide {
        min-height: 610px;
    }

    .hero-inner {
        min-height: 610px;
        align-items: start;
        display: flex;
    }

    .hero-copy {
        padding: 70px 0 140px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero-calculator-wrap {
        position: relative;
        inset: auto;
        align-items: stretch;
        display: block;
        margin-top: -92px;
        padding: 0;
        pointer-events: auto;
        z-index: 5;
    }

    .hero-calculator {
        width: 100%;
        margin: 0 auto;
        box-shadow: 0 18px 38px rgba(11, 31, 58, .18);
    }

    .feature-grid,
    .gallery-grid,
    .news-grid,
    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .section-head h2,
    .split h2,
    .cta-inner h2 {
        font-size: 28px;
    }

    .cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .shipping-card .form-grid {
        gap: 12px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 118px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .topbar {
        display: none;
    }

    .site-header {
        background: #fff;
    }

    .nav-inner {
        min-height: 82px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .brand {
        max-width: calc(100vw - 92px);
    }

    .brand img,
    .footer-logo {
        width: min(260px, calc(100vw - 112px));
        max-height: 62px;
    }

    .nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 8px;
        background: #fff;
        border-color: #cbd5e1;
        color: var(--primary);
    }

    .nav-toggle svg {
        width: 25px;
        height: 25px;
        stroke: currentColor;
    }

    .hero {
        padding-bottom: 28px;
    }

    .hero-slides,
    .hero-slide {
        min-height: 565px;
    }

    .hero-inner {
        min-height: 565px;
    }

    .hero-copy {
        padding: 56px 0 128px;
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 30px;
    }

    .hero-calculator-wrap {
        margin-top: -86px;
        width: min(100% - 22px, 1180px);
    }

    .shipping-card,
    .contact-form,
    .contact-panel,
    .tracking-card,
    .tracking-result {
        padding: 18px;
    }

    .shipping-card {
        border-radius: 8px;
        background: #fff;
        backdrop-filter: none;
    }

    .card-head {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .card-head > span {
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
    }

    .card-head h2 {
        font-size: 24px;
        line-height: 1.18;
    }

    .card-head p {
        font-size: 16px;
        line-height: 1.45;
    }

    label {
        gap: 8px;
        font-size: 15px;
    }

    input,
    select,
    textarea {
        min-height: 50px;
        font-size: 16px;
        border-radius: 8px;
        background: #fff !important;
        color: var(--ink) !important;
    }

    textarea {
        min-height: 150px;
    }

    .shipping-card .btn,
    .contact-form .btn,
    .tracking-card .btn {
        width: 100%;
        min-height: 54px;
        font-size: 16px;
    }

    .contact-grid {
        gap: 18px;
    }

    .contact-form {
        gap: 14px;
    }

    .form-alert.show {
        margin-bottom: 70px;
    }

    .section {
        padding: 54px 0;
    }

    .steps,
    .destination-grid,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .floating-wa {
        right: 16px;
        bottom: calc(78px + env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
        z-index: 39;
    }

    .floating-wa svg {
        width: 28px;
        height: 28px;
    }
}
