/* =========================================================
   K7 FREIGHT FORWARDING
   RESPONSIVE + LAUNCH STYLESHEET
========================================================= */

:root {
    --blue: #009dff;
    --bright-blue: #00c8ff;
    --neon-blue: #00e5ff;
    --dark-blue: #0066cc;

    --black: #05080d;
    --navy: #071525;
    --dark-navy: #04101c;

    --white: #ffffff;
    --grey: #f5f7fa;
    --light-grey: #e5ebf0;
    --text-grey: #626d77;

    --blue-gradient:
        linear-gradient(
            135deg,
            #0066cc,
            #009dff,
            #00c8ff
        );
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    min-width: 280px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--black);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}


img,
video {
    display: block;

    max-width: 100%;
}


a {
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button,
a,
select {
    touch-action: manipulation;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid
        rgba(5, 8, 13, 0.08);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.navbar {
    max-width: 1380px;

    min-height: 90px;

    margin: auto;

    padding: 0 40px;

    display: flex;

    align-items: center;

    gap: 30px;
}


/* LOGO */

.brand {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.navbar-logo {
    display: block;

    width: auto;

    max-width: 190px;

    height: 58px;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}


.navbar-logo:hover {
    transform: scale(1.04);
}


/* NAVIGATION */

.nav-links {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 34px;

    list-style: none;
}


.nav-links a {
    position: relative;

    color: var(--black);

    font-size: 14px;

    font-weight: 700;

    transition:
        color 0.3s ease;
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--blue-gradient);

    transition:
        width 0.3s ease;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}


.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* NAV QUOTE */

.nav-quote-btn {
    margin-left: 10px;

    padding: 14px 22px;

    border-radius: 5px;

    color: var(--white);

    background: var(--blue-gradient);

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 8px 22px
        rgba(0, 157, 255, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.nav-quote-btn:hover {
    background: var(--navy);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(7, 21, 37, 0.25);
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    width: 44px;

    height: 44px;

    margin-left: auto;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}


.menu-toggle span {
    width: 25px;

    height: 2px;

    background: var(--black);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   CINEMATIC VIDEO HERO
========================================================= */

.cinematic-hero {
    position: relative;

    width: 100%;

    min-height:
        calc(100vh - 90px);

    min-height:
        calc(100svh - 90px);

    display: flex;

    align-items: center;

    overflow: hidden;

    isolation: isolate;
}


.page-video {
    position: absolute;

    inset: 0;

    width: 100%;

    max-width: none;

    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: -3;

    pointer-events: none;
}


.video-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(2, 8, 15, 0.90) 0%,
            rgba(2, 8, 15, 0.76) 40%,
            rgba(2, 8, 15, 0.52) 72%,
            rgba(2, 8, 15, 0.60) 100%
        ),

        linear-gradient(
            0deg,
            rgba(2, 8, 15, 0.65) 0%,
            transparent 50%,
            rgba(2, 8, 15, 0.25) 100%
        );

    pointer-events: none;
}


.cinematic-content {
    width:
        min(1300px, calc(100% - 80px));

    margin: auto;

    padding:
        70px 0 120px;

    color: var(--white);

    position: relative;

    z-index: 2;
}


.centered-content {
    max-width: 1000px;

    text-align: center;
}


.cinematic-eyebrow {
    margin-bottom: 20px;

    color: var(--bright-blue);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;
}


.cinematic-content h1 {
    max-width: 950px;

    font-size:
        clamp(54px, 7vw, 90px);

    line-height: 0.98;

    letter-spacing: -4px;

    text-shadow:
        0 8px 35px
        rgba(0, 0, 0, 0.35);

    overflow-wrap: break-word;
}


.centered-content h1 {
    margin: 0 auto;
}


.cinematic-content h1 span {
    display: block;

    margin-top: 8px;

    background: var(--blue-gradient);

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.cinematic-description {
    max-width: 700px;

    margin-top: 30px;

    color: #d5dfe7;

    font-size: 18px;

    line-height: 1.85;
}


.centered-content
.cinematic-description {
    margin:
        30px auto 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


.primary-btn {
    display: inline-block;

    min-height: 48px;

    padding:
        16px 28px;

    border-radius: 5px;

    background: var(--blue-gradient);

    color: var(--white);

    font-weight: 800;

    text-align: center;

    box-shadow:
        0 10px 28px
        rgba(0, 157, 255, 0.22);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.primary-btn:hover {
    background: var(--navy);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, 0.25);
}


.glass-btn {
    display: inline-block;

    min-height: 48px;

    padding:
        14px 27px;

    border:
        2px solid
        rgba(255, 255, 255, 0.65);

    border-radius: 5px;

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.07);

    font-weight: 800;

    text-align: center;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.glass-btn:hover {
    background: var(--navy);

    border-color: var(--bright-blue);

    transform: translateY(-3px);
}


/* MINI PROCESS */

.hero-mini-process {
    max-width: 780px;

    margin-top: 55px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.hero-mini-process div {
    padding: 18px;

    border-top:
        2px solid var(--bright-blue);

    background:
        rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.hero-mini-process div:hover {
    background:
        rgba(7, 21, 37, 0.92);

    transform:
        translateY(-5px);
}


.hero-mini-process span {
    display: block;

    color: var(--bright-blue);

    font-size: 11px;

    font-weight: 900;
}


.hero-mini-process strong {
    display: block;

    margin-top: 5px;

    font-size: 13px;
}


/* SCROLL INDICATOR */

.scroll-indicator {
    position: absolute;

    left: 50%;

    bottom: 25px;

    transform:
        translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: var(--white);

    text-align: center;

    animation:
        scrollFloat
        2s ease-in-out infinite;
}


.scroll-indicator span {
    color: #dce5eb;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.scroll-indicator strong {
    color: var(--bright-blue);

    font-size: 24px;
}


@keyframes scrollFloat {

    0%,
    100% {
        transform:
            translate(-50%, 0);
    }

    50% {
        transform:
            translate(-50%, 7px);
    }

}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(55px);

    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding:
        110px 40px;
}


.section-grey {
    background: var(--grey);
}


.eyebrow {
    margin-bottom: 14px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;
}


.section-heading {
    max-width: 1200px;

    margin:
        0 auto 55px;
}


.centered-heading {
    text-align: center;
}


.section-heading h2,
.split-section h2,
.about-layout h2,
.contact-info h2 {
    font-size:
        clamp(38px, 5vw, 55px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    overflow-wrap: break-word;
}


.section-heading h2 span,
.split-section h2 span,
.about-layout h2 span,
.contact-info h2 span {
    color: var(--blue);
}


.section-heading > p:last-child {
    max-width: 730px;

    margin-top: 20px;

    color: var(--text-grey);

    font-size: 17px;

    line-height: 1.85;
}


.centered-heading > p:last-child {
    margin-left: auto;

    margin-right: auto;
}


.large-copy {
    margin:
        25px 0 30px;

    color: var(--text-grey);

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================================
   CARDS
========================================================= */

.three-column-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.interactive-card {
    min-width: 0;

    padding: 38px;

    background: var(--white);

    color: var(--black);

    border:
        1px solid var(--light-grey);

    border-top:
        3px solid var(--blue);

    border-radius: 8px;

    box-shadow:
        0 12px 35px
        rgba(5, 8, 13, 0.05);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.interactive-card:hover {
    background: var(--navy);

    color: var(--white);

    transform:
        translateY(-8px);

    box-shadow:
        0 22px 45px
        rgba(7, 21, 37, 0.18);
}


.card-number {
    color: var(--blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


.interactive-card:hover
.card-number {
    color: var(--neon-blue);
}


.interactive-card h3 {
    margin:
        18px 0 13px;

    font-size: 22px;
}


.interactive-card > p {
    color: var(--text-grey);

    line-height: 1.8;

    transition:
        color 0.3s ease;
}


.interactive-card:hover > p {
    color: #c7d1da;
}


.check-list {
    margin-top: 25px;

    list-style: none;
}


.check-list li {
    padding:
        8px 0;

    color: var(--text-grey);

    border-bottom:
        1px solid var(--light-grey);

    font-size: 14px;
}


.check-list li::before {
    content: "✓";

    margin-right: 9px;

    color: var(--blue);

    font-weight: 900;
}


.interactive-card:hover
.check-list li {
    color: #c7d1da;

    border-bottom-color:
        rgba(255, 255, 255, 0.12);
}


.card-highlight {
    margin-top: 28px;

    padding: 18px;

    border-left:
        3px solid var(--blue);

    background:
        rgba(0, 157, 255, 0.07);
}


.card-highlight strong,
.card-highlight span {
    display: block;
}


.card-highlight span {
    margin-top: 6px;

    color: var(--text-grey);

    font-size: 13px;
}


.interactive-card:hover
.card-highlight span {
    color: #c7d1da;
}


/* =========================================================
   SPLIT
========================================================= */

.split-section {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;

    align-items: center;
}


.four-card-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.small-card {
    min-width: 0;

    padding: 28px;

    background: var(--grey);

    border-top:
        3px solid var(--blue);

    border-radius: 7px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.small-card:hover {
    background: var(--navy);

    color: var(--white);

    transform:
        translateY(-6px);
}


.small-card span {
    color: var(--blue);

    font-size: 11px;

    font-weight: 900;
}


.small-card h3 {
    margin:
        12px 0 8px;
}


.small-card p {
    color: var(--text-grey);

    font-size: 14px;
}


.small-card:hover p {
    color: #c7d1da;
}


/* =========================================================
   ABOUT
========================================================= */

.about-layout {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 90px;
}


.about-copy p {
    margin-bottom: 20px;

    color: var(--text-grey);

    font-size: 17px;

    line-height: 1.9;
}


.role-flow {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    gap: 18px;

    align-items: center;
}


.role-card {
    min-height: 230px;
}


.role-arrow {
    color: var(--blue);

    font-size: 30px;

    font-weight: 900;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    max-width: 1250px;

    margin: auto;

    padding:
        120px 40px;

    display: grid;

    grid-template-columns:
        180px minmax(0, 1fr);

    gap: 50px;
}


.process-alt {
    max-width: none;

    padding-left:
        max(
            40px,
            calc((100% - 1170px) / 2)
        );

    padding-right:
        max(
            40px,
            calc((100% - 1170px) / 2)
        );

    background: var(--grey);
}


.process-number {
    color:
        rgba(0, 157, 255, 0.16);

    font-size: 110px;

    line-height: 1;

    font-weight: 900;
}


.process-content {
    max-width: 850px;

    min-width: 0;
}


.process-content h2 {
    margin-bottom: 25px;

    font-size:
        clamp(38px, 5vw, 54px);

    line-height: 1.12;

    overflow-wrap: break-word;
}


.process-content h2 span {
    color: var(--blue);
}


.process-content > p:not(.eyebrow) {
    margin-bottom: 18px;

    color: var(--text-grey);

    font-size: 17px;

    line-height: 1.85;
}


.requirement-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-top: 35px;
}


.requirement-grid div {
    min-width: 0;

    padding: 20px;

    border-left:
        3px solid var(--blue);

    border-radius:
        0 5px 5px 0;

    background: var(--grey);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.process-alt
.requirement-grid div {
    background: var(--white);
}


.requirement-grid div:hover {
    background: var(--navy);

    color: var(--white);

    transform:
        translateX(5px);
}


.requirement-grid strong,
.requirement-grid span {
    display: block;
}


.requirement-grid span {
    margin-top: 4px;

    color: var(--text-grey);

    font-size: 13px;
}


.requirement-grid div:hover span {
    color: #c7d1da;
}


.process-highlight {
    margin-top: 35px;

    padding: 25px;

    border-left:
        4px solid var(--blue);

    background: var(--white);

    box-shadow:
        0 10px 30px
        rgba(5, 8, 13, 0.05);
}


.process-highlight span {
    display: block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}


.process-highlight strong {
    display: block;

    margin-top: 6px;

    font-size: 20px;
}


.update-flow {
    margin-top: 40px;

    display: flex;

    align-items: center;
}


.update-flow >
div:not(.flow-line) {
    padding: 18px;

    text-align: center;

    border-radius: 6px;
}


.update-flow span {
    display: block;

    color: var(--blue);

    font-size: 11px;

    font-weight: 900;
}


.update-flow strong {
    display: block;

    margin-top: 4px;
}


.flow-line {
    flex: 1;

    height: 2px;

    margin:
        0 20px;

    background: var(--light-grey);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-layout {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;
}


.contact-detail {
    padding:
        20px 10px;

    border-bottom:
        1px solid var(--light-grey);
}


.contact-detail span {
    display: block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}


.contact-detail strong {
    display: block;

    margin-top: 4px;

    overflow-wrap: anywhere;
}


.contact-quote-button {
    margin-top: 30px;
}


/* =========================================================
   FORMS
========================================================= */

.form-section {
    padding:
        100px 30px;

    background:
        linear-gradient(
            180deg,
            #f4f7fa,
            #ffffff
        );
}


.freight-form,
.contact-form {
    min-width: 0;

    background: var(--white);

    border-top:
        4px solid var(--blue);

    border-radius: 8px;

    box-shadow:
        0 18px 55px
        rgba(5, 8, 13, 0.08);
}


.freight-form {
    max-width: 950px;

    margin: auto;

    padding: 50px;
}


.contact-form {
    padding: 42px;
}


.form-intro {
    margin-bottom: 35px;
}


.form-intro > p {
    color: var(--blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.form-intro h2,
.form-intro h3 {
    margin:
        7px 0;

    font-size: 31px;
}


.form-intro span {
    color: var(--text-grey);

    font-size: 14px;
}


.form-heading {
    margin:
        45px 0 25px;

    padding-bottom: 12px;

    border-bottom:
        1px solid var(--light-grey);

    font-size: 21px;
}


.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        5px 20px;
}


.full-width {
    grid-column:
        1 / -1;
}


.form-group {
    min-width: 0;

    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 800;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    max-width: 100%;

    min-height: 48px;

    padding: 15px;

    border:
        1px solid #d4dce3;

    border-radius: 5px;

    outline: none;

    background: var(--white);

    color: var(--black);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.form-group textarea {
    min-height: 120px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(0, 157, 255, 0.10);
}


textarea {
    resize: vertical;
}


.submit-btn {
    min-height: 50px;

    padding:
        17px 30px;

    border: 0;

    border-radius: 5px;

    background: var(--blue-gradient);

    color: var(--white);

    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.submit-btn:hover {
    background: var(--navy);

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(7, 21, 37, 0.22);
}


.form-note {
    max-width: 700px;

    margin-top: 16px;

    color: var(--text-grey);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding:
        75px 10%;

    background: var(--blue-gradient);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.cta p {
    margin-bottom: 7px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.cta h2 {
    font-size:
        clamp(28px, 4vw, 40px);
}


.cta-btn {
    display: inline-block;

    min-height: 48px;

    padding:
        16px 27px;

    border-radius: 5px;

    background: var(--white);

    color: var(--black);

    font-weight: 800;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.cta-btn:hover {
    background: var(--navy);

    color: var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--black);

    color: var(--white);

    border-top:
        3px solid var(--blue);
}


.footer-main {
    max-width: 1250px;

    margin: auto;

    padding:
        70px 40px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 55px;
}


.footer-brand {
    margin-bottom: 20px;
}


.footer-brand strong {
    display: block;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;
}


.footer-brand strong span {
    color: var(--bright-blue);
}


.footer-brand small {
    display: block;

    margin-top: 7px;

    color: var(--bright-blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.footer-about > p {
    max-width: 340px;

    color: #aebbc6;

    font-size: 14px;

    line-height: 1.8;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.footer-column h3 {
    margin-bottom: 8px;

    color: var(--bright-blue);

    font-size: 12px;
}


.footer-column a,
.footer-column p {
    color: #c4ced6;

    font-size: 13px;
}


.footer-column a:hover {
    color: var(--bright-blue);
}


.footer-bottom {
    padding: 24px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    color: #78858f;

    text-align: center;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        padding:
            0 22px;
    }


    .menu-toggle {
        display: flex;
    }


    .nav-links {
        display: none;

        position: absolute;

        top: 90px;

        left: 0;

        width: 100%;

        margin: 0;

        padding:
            15px 25px 25px;

        background: var(--white);

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-bottom:
            1px solid var(--light-grey);

        box-shadow:
            0 15px 30px
            rgba(5, 8, 13, 0.10);
    }


    .nav-links.open {
        display: flex;
    }


    .nav-links a {
        display: block;

        min-height: 48px;

        padding:
            14px 0;
    }


    .nav-links a::after {
        display: none;
    }


    .three-column-grid,
    .split-section,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }


    .split-section,
    .about-layout,
    .contact-layout {
        gap: 50px;
    }


    .role-flow {
        grid-template-columns: 1fr;
    }


    .role-arrow {
        text-align: center;

        transform:
            rotate(90deg);
    }


    .footer-main {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .navbar {
        min-height: 78px;

        padding:
            0 14px;

        gap: 8px;
    }


    .navbar-logo {
        width: auto;

        max-width: 130px;

        height: 44px;
    }


    .nav-links {
        top: 78px;
    }


    .nav-quote-btn {
        margin-left: 0;

        padding:
            10px 10px;

        font-size: 10px;
    }


    .cinematic-hero {
        min-height:
            calc(100vh - 78px);

        min-height:
            calc(100svh - 78px);
    }


    .cinematic-content {
        width:
            calc(100% - 40px);

        padding:
            55px 0 110px;
    }


    .cinematic-content h1 {
        font-size:
            clamp(40px, 12vw, 60px);

        letter-spacing: -2px;
    }


    .cinematic-description {
        font-size: 15px;

        line-height: 1.75;
    }


    .home-cinematic
    .cinematic-content {
        text-align: left;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .primary-btn,
    .glass-btn {
        width: 100%;

        text-align: center;
    }


    .centered-content
    .primary-btn {
        width: auto;
    }


    .hero-mini-process {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }


    .hero-mini-process div {
        padding:
            11px 14px;
    }


    .scroll-indicator {
        bottom: 15px;
    }


    .section {
        padding:
            80px 20px;
    }


    .three-column-grid {
        grid-template-columns: 1fr;
    }


    .four-card-grid {
        grid-template-columns: 1fr;
    }


    .interactive-card {
        padding: 30px;
    }


    .process-section,
    .process-alt {
        padding:
            80px 20px;

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .process-number {
        font-size: 65px;
    }


    .requirement-grid {
        grid-template-columns: 1fr;
    }


    .update-flow {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    .flow-line {
        width: 2px;

        height: 25px;

        flex: none;

        margin:
            0 0 0 15px;
    }


    .form-section {
        padding:
            70px 15px;
    }


    .freight-form,
    .contact-form {
        padding:
            30px 20px;
    }


    .form-grid {
        grid-template-columns: 1fr;
    }


    .full-width {
        grid-column: auto;
    }


    .submit-btn {
        width: 100%;
    }


    .cta {
        padding:
            60px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .cta-btn {
        white-space: normal;

        text-align: center;
    }


    .footer-main {
        grid-template-columns: 1fr;

        padding:
            55px 25px;

        gap: 40px;
    }

}


/* VERY SMALL PHONES */

@media (max-width: 380px) {

    .navbar-logo {
        max-width: 105px;

        height: 38px;
    }


    .nav-quote-btn {
        padding:
            9px 7px;

        font-size: 9px;
    }


    .menu-toggle {
        width: 38px;
    }


    .cinematic-content {
        width:
            calc(100% - 30px);
    }


    .cinematic-content h1 {
        font-size: 38px;
    }


    .section-heading h2,
    .split-section h2,
    .about-layout h2,
    .contact-info h2,
    .process-content h2 {
        font-size: 34px;
    }


    .interactive-card {
        padding: 25px 20px;
    }

}


/* =========================================================
   REDUCED MOTION / ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }


    .reveal {
        opacity: 1;

        transform: none;
    }


    .scroll-indicator {
        animation: none;
    }

}


/* ACCESSIBILITY FOCUS */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline:
        3px solid
        rgba(0, 157, 255, 0.55);

    outline-offset: 3px;
}