/* ===== MWA TRANS LOGISTICS — Design System ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Brand Design Tokens ---------- */
:root {
    /* ✅ Exact MWA Logo Colors */
    --blue: #2196D9;
    /* MWA sky-blue (letters) */
    --blue-dark: #1565A6;
    /* Deeper blue */
    --blue-light: #5BB8E8;
    /* lighter tint */
    --navy: #0D2B5E;
    /* Dark swoosh ring */
    --navy-dark: #081a3d;
    --red: #E31837;
    /* Swoosh arc */
    --red-dark: #b81230;
    --red-light: #ff4d68;
    --white: #ffffff;
    --off-white: #f4f7fc;
    --gray-50: #f8fafd;
    --gray-100: #eef2f8;
    --gray-200: #dde5f0;
    --gray-400: #9aabbf;
    --gray-500: #607080;
    --gray-700: #2c3e50;
    --gray-900: #0f1a26;

    /* Typography */
    --font-h: 'Poppins', sans-serif;
    --font-b: 'Inter', sans-serif;

    /* Layout */
    --max-w: 1260px;
    --pad-x: 0 24px;
    --sec-pad: 100px 0;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(13, 43, 94, 0.06);
    --shadow-md: 0 8px 24px rgba(13, 43, 94, 0.09);
    --shadow-lg: 0 16px 40px rgba(13, 43, 94, 0.13);
    --shadow-xl: 0 24px 60px rgba(13, 43, 94, 0.18);

    /* Ease */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-b);
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s var(--ease);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-h);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
}

h2 em {
    font-style: normal;
    color: var(--red);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--pad-x);
}

.section-pad {
    padding: var(--sec-pad);
}

.bg-light {
    background: var(--off-white);
}

.bg-navy {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.text-center {
    text-align: center;
}

.mt-btn {
    margin-top: 28px;
}

/* Custom cursor removed — using default system cursor */

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .6s var(--ease);
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preloader-truck {
    font-size: 3.5rem;
    color: var(--blue);
    animation: truck-drive 2s infinite linear;
}

@keyframes truck-drive {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateX(60px);
        opacity: 0;
    }
}

.preloader-logo {
    width: 200px;
    height: auto;
}

.preloader-progress {
    width: 200px;
    height: 4px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transition: width .05s linear;
    border-radius: 4px;
}

.preloader-tag {
    font-family: var(--font-h);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: all .4s var(--ease);
    background: rgba(13, 43, 94, 0.15);
    backdrop-filter: blur(4px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    box-shadow: 0 2px 30px rgba(13, 43, 94, 0.08);
    padding: 8px 0;
    border-bottom: 2px solid var(--blue);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand / Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    z-index: 1001;
}

.brand-logo {
    height: 58px;
    width: auto;
    background: var(--white);
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0 2px 16px rgba(33, 150, 217, .3);
    transition: .3s var(--ease);
}

.navbar.scrolled .brand-logo {
    box-shadow: 0 2px 12px rgba(13, 43, 94, .15);
    height: 50px;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.02em;
    transition: .3s;
}

.brand-sub {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: .6rem;
    color: rgba(255, 255, 255, .75);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: .3s;
}

.navbar.scrolled .brand-main {
    color: var(--navy);
}

.navbar.scrolled .brand-sub {
    color: var(--gray-500);
}

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: width .3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--navy);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-drop-icon {
    font-size: .75rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 12px 0;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    z-index: 1005;
    list-style: none;
    border-top: 3px solid var(--red);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 10px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--gray-700);
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(225,29,72,.05);
    color: var(--red);
}

/* Nav CTA Button */
.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(227, 24, 55, .35);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 217, .4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: .3s;
}

.navbar.scrolled .hamburger span {
    background: var(--navy);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    text-decoration: none;
    transition: all .3s var(--ease);
}

.btn i {
    transition: transform .3s;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(227, 24, 55, .3);
}

.btn-red:hover {
    background: var(--navy);
    box-shadow: 0 8px 28px rgba(13, 43, 94, .3);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(13, 43, 94, .25);
}

.btn-navy:hover {
    background: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(33, 150, 217, .35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .5);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-3px);
}

.full-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 17px;
}

/* ========== TAG PILLS ========== */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-family: var(--font-h);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(33, 150, 217, .1);
    color: var(--blue);
    border: 1px solid rgba(33, 150, 217, .2);
}

.tag-pill i {
    color: var(--red);
}

.red-pill {
    background: rgba(227, 24, 55, .08);
    color: var(--red);
    border-color: rgba(227, 24, 55, .2);
}

.light-pill {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .2);
}

/* ========== SECTION HEADS ========== */
.section-head {
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto;
}

/* ========== HERO — ANIMATED VIDEO BG ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--navy-dark);
}

/* The real video background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hvb-video {
    position: absolute;
    top: -5%;
    left: -2%;
    width: 104%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

/* Final dark overlay for text legibility */
.hvb-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(to right, rgba(13, 43, 94, .65) 0%, rgba(13, 43, 94, .2) 55%, transparent 100%);
}

/* Hero content layout */
.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 80px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeUp .8s var(--ease) forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.03em;
    animation: fadeUp .8s .15s var(--ease) both;
}

.hero-highlight {
    position: relative;
    display: inline-block;
    color: var(--blue);
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    right: 0;
    height: 30%;
    background: var(--red);
    z-index: -1;
    border-radius: 4px;
    opacity: .5;
    transform: rotate(-1.5deg);
}

.hero-desc {
    font-size: 1.18rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
    max-width: 580px;
    animation: fadeUp .8s .3s var(--ease) both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp .8s .45s var(--ease) both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    animation: fadeUp .8s .6s var(--ease) both;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.trust-item span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
}

/* Track card */
.hero-track-card {
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    animation: fadeUp .8s .5s var(--ease) both;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.htc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.htc-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.htc-header h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.htc-header p {
    color: var(--gray-500);
    font-size: .85rem;
}

.htc-form {
    display: flex;
    gap: 8px;
}

.htc-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .92);
    border: none;
    border-radius: 10px;
    font-family: var(--font-b);
    font-size: 1rem;
    outline: none;
}

.htc-input:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(33, 150, 217, .3);
}

.htc-btn {
    padding: 12px 22px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.htc-btn:hover {
    background: var(--red);
}

.htc-example {
    color: var(--gray-400);
    font-size: .8rem;
    margin-top: 8px;
    text-align: right;
}

.htc-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 18px 0;
}

.htc-links {
    display: flex;
    gap: 20px;
}

.htc-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: .9rem;
    font-weight: 600;
    transition: .3s;
}

.htc-links a:hover {
    color: var(--blue);
}

.htc-links a i {
    color: var(--blue);
    font-size: 1.1rem;
}

/* Scroll arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    color: rgba(255, 255, 255, .5);
    font-size: 1.4rem;
    animation: bounce-y 1.8s ease-in-out infinite;
}

@keyframes bounce-y {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(10px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ========== MARQUEE BAR ========== */
.marquee-bar {
    background: var(--blue);
    border-bottom: 3px solid var(--red);
    overflow: hidden;
    padding: 12px 0;
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-right: 60px;
}

.marquee-content span i {
    color: rgba(255, 255, 255, .7);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ========== ABOUT ========== */
.about {
    background: var(--white);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--blue);
    color: var(--white);
    padding: 18px 26px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.ab-number {
    display: block;
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.ab-text {
    font-size: .8rem;
    font-weight: 600;
    opacity: .85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-float-card {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    animation: float-y 4s ease-in-out infinite;
}

.about-float-card i {
    font-size: 2rem;
    color: #f59e0b;
}

.about-float-card strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
}

.about-float-card span {
    font-size: .82rem;
    color: var(--gray-500);
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.col-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}

.lead {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 20px;
}

p {
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.about-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.about-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: .92rem;
    color: var(--navy);
    transition: .3s var(--ease);
}

.about-pill i {
    color: var(--blue);
    font-size: 1.1rem;
}

.about-pill:hover {
    background: var(--white);
    border-color: var(--blue);
    transform: translateX(6px);
}

/* ========== SERVICES ========== */
.services {
    position: relative;
}

.services-angled-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 340px;
    background: linear-gradient(135deg, var(--navy), var(--blue-dark));
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: 0;
}

.services .section-head {
    position: relative;
    z-index: 1;
}

.services .section-head h2,
.services .section-head .tag-pill {
    color: var(--white);
}

.services .section-head .tag-pill {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
}

.services .section-sub {
    color: rgba(255, 255, 255, .7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.svc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 66px;
    height: 66px;
    background: rgba(33, 150, 217, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--blue);
    margin-bottom: 22px;
    transition: .3s var(--bounce);
}

.svc-card:hover .svc-icon {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.12) rotate(-5deg);
}

.svc-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.svc-card p {
    color: var(--gray-500);
    font-size: .95rem;
    margin-bottom: 18px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: .92rem;
}

.svc-link i {
    transition: transform .3s;
}

.svc-card:hover .svc-link i {
    transform: translateX(5px);
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--blue-dark));
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.stat-box i {
    font-size: 2.2rem;
    color: var(--blue-light);
    margin-bottom: 12px;
}

.stat-num {
    font-family: var(--font-h);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========== WHY US ========== */
.why-us {
    background: var(--white);
}

.why-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.why-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 500;
}

.why-list li i {
    color: var(--red);
    font-size: .9rem;
    flex-shrink: 0;
}

.why-progress {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}


.wp-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--navy);
}

.wp-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 50px;
    overflow: hidden;
}

.wp-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    width: 0;
    transition: width 1.5s cubic-bezier(.4, 0, .2, 1);
}

/* ========== HOW IT WORKS ========== */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 16px;
    position: relative;
}

.ps-num {
    font-family: var(--font-h);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(33, 150, 217, .1);
    line-height: 1;
    margin-bottom: -20px;
}

.ps-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--blue);
    box-shadow: var(--shadow-md);
    margin: 0 auto 20px;
    border: 3px solid var(--gray-100);
    transition: .4s var(--ease);
}

.process-step:hover .ps-icon {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: .9rem;
    color: var(--gray-500);
}

.process-connector {
    align-self: center;
    color: var(--gray-200);
    font-size: 1.8rem;
    padding-bottom: 40px;
    flex-shrink: 0;
}

/* ========== INDUSTRIES ========== */
.industries {
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ind-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 24px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    transition: .3s var(--ease);
}

.ind-card:hover {
    background: var(--white);
    border-color: var(--blue);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.ind-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fmcg {
    background: rgba(76, 175, 80, .1);
    color: #4caf50;
}

.pharma {
    background: rgba(33, 150, 243, .1);
    color: #2196f3;
}

.auto {
    background: rgba(255, 152, 0, .1);
    color: #ff9800;
}

.ecom {
    background: rgba(156, 39, 176, .1);
    color: #9c27b0;
}

.mfg {
    background: rgba(121, 85, 72, .1);
    color: #795548;
}

.retail {
    background: rgba(0, 150, 136, .1);
    color: #009688;
}

.ind-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.ind-card p {
    font-size: .85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials .section-head h2 {
    color: var(--white);
}

.testi-slider {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.testi-card {
    min-width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
}

.testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testi-card>p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testi-author strong {
    color: var(--white);
    display: block;
    font-size: 1rem;
}

.testi-author span {
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.testi-dot.active {
    background: var(--red);
    width: 30px;
    border-radius: 5px;
}

/* ========== FAQ ========== */
.faq {
    background: var(--white);
}

.faq-grid {
    align-items: start;
}

.faq-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 28px;
    box-shadow: var(--shadow-md);
}

.faq-contact-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-item {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
}

.acc-item.open {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(33, 150, 217, .1);
}

.acc-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: .3s;
}

.acc-head:hover {
    color: var(--blue);
}

.acc-head i {
    color: var(--blue);
    transition: transform .35s var(--ease);
    flex-shrink: 0;
}

.acc-item.open .acc-head i {
    transform: rotate(180deg);
    color: var(--red);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}

.acc-body p {
    padding: 0 22px 20px;
    color: var(--gray-500);
    font-size: .97rem;
    line-height: 1.75;
}

.acc-item.open .acc-body {
    max-height: 400px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 70px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 10px;
}

.cta-inner p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.cf-field label {
    font-family: var(--font-h);
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-700);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    padding: 13px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-b);
    font-size: .97rem;
    color: var(--gray-700);
    background: var(--gray-50);
    outline: none;
    transition: .3s;
    resize: none;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(33, 150, 217, .1);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.csb-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: .3s;
}

.csb-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.csb-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(33, 150, 217, .1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.wa-green {
    background: rgba(37, 211, 102, .1);
    color: #25D366;
}

.csb-card h4 {
    font-size: .95rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.csb-card p {
    font-size: .88rem;
    color: var(--gray-500);
    margin: 0;
}

.csb-card a {
    color: var(--blue);
    font-weight: 600;
}

.csb-map {
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--gray-200);
}

.csb-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, .6);
}

.footer-main {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 50px;
}

.footer-logo {
    width: 160px;
    height: auto;
    background: white;
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: .92rem;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: .3s;
}

.footer-socials a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: .9rem;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--blue);
    padding-left: 5px;
}

.footer-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .88rem;
    align-items: flex-start;
}

.footer-info i {
    color: var(--blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-info a {
    color: rgba(255, 255, 255, .6);
}

.footer-info a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);
}

.footer-bottom a:hover {
    color: var(--blue);
}

/* ========== WA FAB & BTT BTN ========== */
.wa-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .5);
    animation: wa-pulse 2.5s ease-in-out infinite;
    transition: transform .3s;
}

.wa-fab:hover {
    transform: scale(1.12);
    color: var(--white);
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    60% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0)
    }
}

.wa-fab-tip {
    position: absolute;
    left: 72px;
    background: var(--white);
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    pointer-events: none;
    opacity: 0;
    transform: translateX(-6px);
    transition: .3s;
}

.wa-fab:hover .wa-fab-tip {
    opacity: 1;
    transform: translateX(0);
}

.btt-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btt-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btt-btn:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 100px;
    right: -420px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: right .45s cubic-bezier(.68, -.55, .27, 1.55);
    border-left: 4px solid var(--blue);
}

.toast.show {
    right: 30px;
}

.toast i {
    color: var(--blue);
    font-size: 1.2rem;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal {
    opacity: 0;
    transition: all .8s cubic-bezier(.25, .46, .45, .94);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal {
    transform: translateY(40px);
}

.active {
    opacity: 1;
    transform: translate(0);
}

.stagger .active:nth-child(1) {
    transition-delay: .05s;
}

.stagger .active:nth-child(2) {
    transition-delay: .15s;
}

.stagger .active:nth-child(3) {
    transition-delay: .25s;
}

.stagger .active:nth-child(4) {
    transition-delay: .35s;
}

.stagger .active:nth-child(5) {
    transition-delay: .45s;
}

.stagger .active:nth-child(6) {
    transition-delay: .55s;
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== MISSION & VISION ========== */
.mv-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.mv-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: .3s var(--ease);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mv-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-icon {
    background: rgba(225, 29, 72, .1);
    color: var(--red);
}

.vision-icon {
    background: rgba(33, 150, 217, .1);
    color: var(--blue);
}

.mv-card-header h3 {
    font-size: 1.4rem;
    color: var(--navy);
}

.mv-card-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 240px;
}

.mv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.mv-card:hover .mv-card-img img {
    transform: scale(1.05);
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mv-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mv-list li > i {
    color: var(--red);
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.mv-list li strong {
    display: block;
    font-family: var(--font-h);
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.mv-list li p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

.mv-vision-text {
    position: relative;
    padding: 24px 24px 24px 44px;
    background: linear-gradient(135deg, rgba(33,150,217,.04), rgba(33,150,217,.08));
    border-radius: 14px;
    border-left: 4px solid var(--blue);
}

.mv-quote-icon {
    position: absolute;
    top: 16px;
    left: 14px;
    color: var(--blue);
    font-size: 1.2rem;
    opacity: .5;
}

.mv-vision-text p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* ========== TEAM SECTION ========== */
.team-section {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-200);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 10px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .3s var(--ease);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.team-avatar {
    margin-bottom: 20px;
}

.team-avatar-placeholder {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(33,150,217,.1), rgba(33,150,217,.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--blue);
}

.team-avatar-placeholder.mgmt {
    background: linear-gradient(135deg, rgba(225,29,72,.1), rgba(225,29,72,.2));
    color: var(--red);
}

.team-photo {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
    outline: 2px solid rgba(33,150,217,.2);
}

.team-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-size: .88rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 500;
}

.team-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    color: var(--blue);
    background: rgba(33,150,217,.08);
    padding: 5px 14px;
    border-radius: 20px;
}

.team-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.team-contacts a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--blue);
    font-weight: 600;
    transition: .3s;
}

.team-contacts a:hover {
    color: var(--red);
}

.team-contacts a i {
    font-size: .78rem;
}

.team-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--gray-200);
}

.team-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--gray-500);
    transition: .3s;
}

.team-social-links a:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media(max-width:1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 80px 24px 60px;
    }

    .hero-track-card {
        max-width: 520px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reverse-mobile .col-img {
        order: 2;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .process-connector {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 340px;
        background: var(--white);
        flex-direction: column;
        padding: 100px 36px 40px;
        gap: 26px;
        z-index: 950;
        transition: right .4s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -6px 0 30px rgba(0, 0, 0, .12);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--gray-700) !important;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .about-float-card {
        display: none;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 14px;
    }

    .trust-sep {
        display: none;
    }

    .htc-form {
        flex-direction: column;
    }
}