/*
 * ASA LOGISTICS — Panocean Theme
 * Poppins font, navy/blue palette, white body
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ══════════════════════════════════
   CSS VARIABLES
══════════════════════════════════ */
:root {
    --navy: #1a3a5c;
    --navy-deep: #0f2540;
    --blue: #1E6FAE;
    --blue-mid: #2589cc;
    --blue-light: #2DA3D8;
    --gold: #f5a623;
    --white: #ffffff;
    --bg: #f8fafc;
    --bg2: #eef4fb;
    --text: #0f172a;
    --text2: #334155;
    --text3: #64748b;
    --border: rgba(30, 111, 174, 0.14);
    --shadow-sm: 0 4px 16px rgba(15, 23, 42, .08);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, .12);
    --shadow-lg: 0 28px 70px rgba(15, 23, 42, .16);
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font: 'Poppins', sans-serif;
}

/* ══════════════════════════════════
   RESET & BASE
══════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 110px;
}

/* Utility: prevent background scroll when overlays/menus are open */
.no-scroll,
html.no-scroll,
body.no-scroll,
body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

/* ══════════════════════════════════
   CURSOR
══════════════════════════════════ */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(45, 163, 216, .9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform .08s ease-out;
    z-index: 9999;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(4px);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-follower::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #2DA3D8;
    border-radius: 50%;
}

@media (hover:none) {
    .cursor-follower {
        display: none;
    }
}

/* ══════════════════════════════════
   TOP INFO BAR
══════════════════════════════════ */
.top-info-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 60;
    background: var(--navy);
    height: 50px;
}

.top-info-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-info-item i {
    color: #e55;
    font-size: 11px;
}

.top-info-cta {
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.top-info-cta:hover {
    background: #b91c1c;
}

/* ══════════════════════════════════
   HEADER / NAV
══════════════════════════════════ */
.site-header {
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 111, 174, .1);
    transition: all .3s ease;
    box-shadow: 0 2px 16px rgba(15, 23, 42, .07);
}

.site-header.scrolled {
    box-shadow: 0 4px 28px rgba(15, 23, 42, .14);
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-brand-logo {
    height: 36px;
    width: auto;
}

.brand-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .1em;
    color: var(--text);
    text-transform: uppercase;
}

.brand-sub {
    font-weight: 300;
    color: var(--blue);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--text2);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    transition: all .2s;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--blue);
    background: rgba(30, 111, 174, .08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta {
    background: var(--blue);
    color: #fff;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(30, 111, 174, .25);
}

.header-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(30, 111, 174, .08);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.menu-toggle:hover {
    background: rgba(30, 111, 174, .14);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    width: 100%;
    max-width: 100%;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}

.mobile-menu a:hover {
    color: var(--blue);
}

.mobile-menu .mobile-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    margin-top: 8px;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: calc(100vh - 110px);
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(.4, 0, .2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .82), rgba(0, 0, 0, .35));
}

.hero-content-wrap {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.eyebrow-line {
    width: 40px;
    height: 3px;
    background: var(--blue-light);
    border-radius: 2px;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title-sub {
    color: var(--blue-light);
    display: block;
}

.type-cursor {
    display: inline-block;
    width: 3px;
    height: .9em;
    background: var(--blue-light);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.hero-copy {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-br {
    display: none;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 6px 20px rgba(30, 111, 174, .3);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(45, 163, 216, .35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 1px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .25s;
    backdrop-filter: blur(8px);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue);
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--blue);
    background: rgba(30, 111, 174, .06);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions a,
.hero-actions button {
    min-width: 150px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    width: auto;
}

/* Hero Inquiry Card */
.hero-inquiry-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
}

.hero-inquiry-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.form-group select {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--font);
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

.form-group select option {
    color: #000;
    background: #fff;
}

/* AEO Badge */
.hero-badge-card {
    position: absolute;
    bottom: 32px;
    left: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 111, 174, .12);
}

.badge-avatar {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .06em;
    flex-shrink: 0;
}

.badge-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.badge-sub {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 32px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-controls button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    backdrop-filter: blur(8px);
}

.carousel-controls button:hover {
    background: var(--blue);
    border-color: var(--blue);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.scroll-line {
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -44px;
    width: 44px;
    height: 1px;
    background: var(--blue-light);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        left: -44px
    }

    100% {
        left: 44px
    }
}

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker-section {
    background: var(--navy-deep);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 28s linear infinite;
    padding: 16px 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar {
    background: var(--navy);
    padding: 40px 24px;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-card {
    padding: 20px;
    position: relative;
    transition: transform .3s;
}

.stat-card+.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, .1);
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

/* ══════════════════════════════════
   SHARED LAYOUT
══════════════════════════════════ */
.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.eyebrow-line-sm {
    width: 28px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
}

.center-eyebrow {
    justify-content: center;
}

.section-headline {
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.section-sub {
    font-size: 14px;
    color: var(--text3);
    max-width: 280px;
    text-align: right;
    line-height: 1.7;
}

/* Scroll reveal */
.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s ease, transform .85s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-lead {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

.about-body {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text2);
    font-weight: 300;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .25s;
}

.about-feature-item:hover {
    border-color: rgba(30, 111, 174, .25);
    box-shadow: var(--shadow-sm);
}

.af-icon {
    width: 46px;
    height: 46px;
    background: var(--blue);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(30, 111, 174, .25);
}

.about-feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 12px;
    color: var(--text3);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.astat-block {
    background: rgba(30, 111, 174, .06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.astat-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.astat-block:hover::before {
    transform: scaleX(1);
}

.astat-block:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.astat-num {
    font-size: 44px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.astat-num span {
    color: var(--blue-light);
}

.astat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text3);
}

.about-quote-card {
    background: var(--navy);
    color: rgba(255, 255, 255, .75);
    border-radius: var(--radius);
    padding: 28px;
    font-size: 13.5px;
    line-height: 1.75;
    font-style: italic;
    border-left: 4px solid var(--blue-light);
}

/* ══════════════════════════════════
   SERVICES SECTION
══════════════════════════════════ */
.services-section {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, .9);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, .06);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s, border-color .35s;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
    border-radius: 3px 3px 0 0;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .13);
    border-color: rgba(30, 111, 174, .15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 111, 174, .1);
    border: 1px solid rgba(30, 111, 174, .15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 24px;
    transition: all .3s;
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: #fff;
    transform: scale(1.05);
}

.service-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text3);
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: gap .2s;
}

.service-link:hover {
    gap: 10px;
}

.service-bg-num {
    position: absolute;
    bottom: -8px;
    right: 14px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(30, 111, 174, .05);
    line-height: 1;
    pointer-events: none;
    transition: color .3s;
}

.service-card:hover .service-bg-num {
    color: rgba(30, 111, 174, .08);
}

/* ══════════════════════════════════
   CAPABILITIES SECTION
══════════════════════════════════ */
.capabilities-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg2) 0%, #fff 100%);
}

.center-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cap-card {
    background: #fff;
    border: 1px solid rgba(30, 111, 174, .08);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s;
    position: relative;
}

.cap-card:hover {
    transform: translateY(-14px);
    box-shadow: var(--shadow-lg);
}

.cap-thumb {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .1);
}

.cap-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.cap-card:hover .cap-thumb img {
    transform: scale(1.08);
}

.cap-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 111, 174, .1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 20px;
    transition: all .3s;
}

.cap-card:hover .cap-icon {
    background: var(--blue);
    color: #fff;
}

.cap-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 13.5px;
    color: var(--text3);
    line-height: 1.75;
    font-weight: 300;
}

/* ══════════════════════════════════
   ACCORDION
══════════════════════════════════ */
.accordion-section {
    padding: 100px 0;
    background: #fff;
}

.logistics-accordion {
    display: flex;
    gap: 14px;
    height: 500px;
    width: 100%;
}

.logistics-pane {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
    transition: flex .5s cubic-bezier(.25, 1, .5, 1);
    cursor: pointer;
    background: var(--bg2);
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.logistics-pane.active {
    flex: 4;
}

.logistics-pane::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 40, 0) 25%, rgba(10, 18, 40, .88) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity .45s;
}

.logistics-pane.active::before {
    opacity: 1;
}

.pane-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .45s;
}

.logistics-pane.active .pane-img {
    opacity: 1;
}

.pane-collapsed {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 32px;
    z-index: 2;
    transition: opacity .3s;
}

.logistics-pane.active .pane-collapsed {
    opacity: 0;
    pointer-events: none;
}

.pane-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(30, 111, 174, .12);
    border: 1px solid rgba(30, 111, 174, .2);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pane-title-v {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 14px;
    color: var(--text2);
    white-space: nowrap;
}

.pane-expanded {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(16px);
    transition: all .45s cubic-bezier(.25, 1, .5, 1);
    pointer-events: none;
}

.logistics-pane.active .pane-expanded {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pane-exp-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
}

.pane-expanded h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pane-expanded p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .75);
    max-width: 380px;
    font-weight: 300;
}

/* ══════════════════════════════════
   WHY ASA
══════════════════════════════════ */
.whyus-section {
    padding: 100px 0;
    background: var(--bg);
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.whyus-left {
    position: sticky;
    top: 120px;
}

.why-quote-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: rgba(255, 255, 255, .8);
    border-radius: var(--radius);
    padding: 28px;
    font-size: 13.5px;
    line-height: 1.75;
    font-style: italic;
    margin: 28px 0;
    border-left: 4px solid var(--gold);
}

.why-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-contact-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.wcm-icon {
    width: 44px;
    height: 44px;
    background: rgba(30, 111, 174, .1);
    color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-contact-mini strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.why-contact-mini span {
    font-size: 11px;
    color: var(--text3);
}

.feature-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all .25s;
}

.feature-item:first-child {
    border-top: 1px solid var(--border);
}

.feature-item:hover {
    border-color: rgba(30, 111, 174, .25);
}

.fi-num {
    font-size: 24px;
    font-weight: 900;
    color: rgba(30, 111, 174, .1);
    line-height: 1;
    min-width: 38px;
    transition: color .25s;
}

.feature-item:hover .fi-num {
    color: var(--blue);
}

.fi-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.fi-desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text3);
    font-weight: 300;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
    overflow-x: hidden;
}

.test-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}

.spinner-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
}

.spinner-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateSvg 22s linear infinite;
}

@keyframes rotateSvg {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.spinner-center-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--blue);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.test-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.test-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
}

.test-card {
    flex: 0 0 calc(100% - 16px);
    min-width: calc(100% - 16px);
    width: calc(100% - 16px);
    box-sizing: border-box;
    scroll-snap-align: center;
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.test-slider::-webkit-scrollbar {
    display: none;
}

.test-card p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    font-style: italic;
    margin-bottom: 28px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

.test-author strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.test-author span {
    font-size: 12px;
    color: var(--text3);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .25s;
    border: none;
}

.test-dot.active {
    background: var(--blue);
    transform: scale(1.3);
}

/* ══════════════════════════════════
   NETWORK SECTION
══════════════════════════════════ */
.network-section {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.network-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.network-section .section-eyebrow {
    position: relative;
    z-index: 1;
}

.network-headline {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
}

.network-sub {
    font-size: 15px;
    color: rgba(200, 220, 255, .65);
    max-width: 480px;
    margin: 0 auto 64px;
    line-height: 1.75;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.network-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nstat {
    flex: 1;
    min-width: 160px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nstat+.nstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, .1);
}

.nstat-num {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.gold {
    color: var(--gold);
}

.nstat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(180, 210, 255, .55);
}

/* ══════════════════════════════════
   CONTACT SECTION
══════════════════════════════════ */
.contact-section {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.ci-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.ci-icon {
    width: 46px;
    height: 46px;
    background: rgba(30, 111, 174, .1);
    color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-card strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.ci-card span {
    font-size: 13px;
    color: var(--text3);
}

.cta-btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-dark-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, .07);
}

.contact-dark-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.why-list li {
    display: flex;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.why-list li i {
    color: var(--blue-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.cdc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cdc-stat {
    background: rgba(255, 255, 255, .08);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cdc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue-light);
}

.cdc-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
    padding: 80px 0 32px;
    background: var(--navy-deep);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.75;
    max-width: 240px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all .25s;
}

.footer-social a:hover {
    background: var(--blue-light);
    color: #fff;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-weight: 300;
    transition: color .25s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .9);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .05em;
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(30, 111, 174, .35);
}

.scroll-top-btn:hover {
    background: var(--blue-light);
    transform: translateY(-4px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {

    .section-container {
        padding: 0 18px;
    }

    .about-grid,
    .contact-grid,
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .whyus-left {
        position: static;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hero-content-wrap {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 680px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }

    .top-info-bar {
        display: none;
    }

    body {
        padding-top: 60px;
    }

    .site-header {
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        padding: 0;
        border-radius: 0;
    }

    body.no-scroll .top-info-bar,
    body.no-scroll .site-header {
        top: 0;
    }

    .section-container {
        padding: 0 10px;
    }

    .nav-inner {
        width: 100%;
        padding: 0 12px;
        align-items: center;
        justify-content: space-between;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        flex: 0 0 auto;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        padding: 0;
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .hero-content-wrap {
        padding: 36px 12px 72px;
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-copy {
        max-width: 100%;
        font-size: 14px;
    }

    .hide-xs,
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 1024px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .top-info-bar {
        display: none;
    }

    .site-header {
        top: 0;
        left: 0;
        right: 0;
    }

    .nav-inner {
        padding: 0 16px;
        max-width: none;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content-wrap {
        padding: 34px 16px 70px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .test-slider {
        gap: 16px;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .test-card {
        flex: 0 0 calc(100% - 16px);
        min-width: calc(100% - 16px);
        width: calc(100% - 16px);
        padding: 24px;
    }

    .test-card p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .test-author img {
        width: 44px;
        height: 44px;
    }

    .test-author strong {
        font-size: 14px;
    }

    .test-author span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header-nav {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a,
    .hero-actions button {
        width: 100%;
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-badge-card {
        left: 16px;
        bottom: 20px;
    }

    .carousel-controls {
        right: 16px;
        bottom: 20px;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        height: 100vh;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 14px 24px;
        overflow-y: auto;
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    .mobile-menu a {
        width: 100%;
        padding: 16px 18px;
        border-radius: 14px;
        box-sizing: border-box;
        text-align: left;
        margin-bottom: 8px;
    }

    .mobile-menu .mobile-cta {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .mobile-menu-close {
        top: 18px;
        right: 18px;
    }

    .scroll-hint {
        display: none;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card+.stat-card::before {
        display: none;
    }

    .about-section,
    .services-section,
    .capabilities-section,
    .accordion-section,
    .whyus-section,
    .testimonials-section,
    .network-section,
    .contact-section {
        padding: 72px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .spinner-wrap {
        max-width: 200px;
        margin: 0 auto;
    }

    .logistics-accordion {
        flex-direction: column;
        height: auto;
    }

    .logistics-pane {
        min-height: 100px;
    }

    .logistics-pane.active {
        min-height: 300px;
        flex: none;
    }

    .pane-title-v {
        writing-mode: horizontal-tb;
        transform: none;
        margin-left: 12px;
    }

    .pane-collapsed {
        flex-direction: row;
        padding: 0 18px;
    }

    .pane-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .network-stats-row {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .nstat+.nstat::before {
        display: none;
    }

    .contact-dark-card {
        padding: 32px 24px;
    }

    .cdc-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-sub {
        text-align: left;
        max-width: 100%;
    }

    .cta-btn-row {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    /* hide elements on small screens when marked */
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {

    html,
    body {
        width: 100%;
        min-width: auto;
        overflow-x: hidden;
    }

    .top-info-bar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .section-container {
        padding: 0 8px;
    }

    .nav-inner {
        padding: 0 10px;
    }

    .header-logo {
        flex: 0 1 auto;
    }

    .header-actions {
        gap: 8px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .hero-content-wrap {
        padding: 32px 10px 64px;
    }

    .top-info-inner {
        padding: 0 10px;
    }

    .mobile-menu {
        padding: 90px 12px 16px;
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu a {
        font-size: 18px;
        padding: 14px 14px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions a,
    .hero-actions button,
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hide-sm {
        display: none;
    }
}

/* Strong overrides for mobile/tablet layout issues */
@media (max-width: 1024px) {
    .site-header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }

    .nav-inner {
        padding: 0 16px !important;
        max-width: none !important;
    }

    .header-nav {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .mobile-menu {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        inset: 0 !important;
    }

    .testimonials-section,
    .test-slider,
    .test-card {
        overflow-x: hidden !important;
    }

    .test-slider {
        gap: 16px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .test-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .site-header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }

    .nav-inner {
        padding: 0 10px !important;
    }

    .section-container {
        padding: 0 10px !important;
    }

    .mobile-menu {
        width: 100% !important;
        max-width: 100% !important;
        inset: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 90px 12px 16px !important;
    }

    .testimonials-section,
    .test-slider,
    .test-card {
        overflow-x: hidden !important;
    }

    .test-slider {
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .test-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
    }

    .test-card p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }

    .test-author img {
        width: 40px !important;
        height: 40px !important;
    }

    .test-author strong {
        font-size: 13px !important;
    }

    .test-author span {
        font-size: 10px !important;
    }

    .stars {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
}