/* ================================================================
   AOG Carrier LLC — Premium Stylesheet v2.0
   Modern, clean, BEM-inspired.  Flexbox + Grid.
   Enhanced with micro-animations, glassmorphism, and premium polish.
   ================================================================ */

/* ── 0. Custom Properties (Design Tokens) ────────── */
:root {
    /* Palette */
    --clr-navy: #0b1626;
    --clr-navy-light: #0f1b2d;
    --clr-charcoal: #1a2332;
    --clr-dark: #232f3e;
    --clr-slate: #3d4f5f;
    --clr-muted: #6b7c8d;
    --clr-body: #4a5568;
    --clr-light: #e2e8f0;
    --clr-off-white: #f7f8fa;
    --clr-white: #ffffff;

    /* Greens — richer, more vibrant */
    --clr-green: #1db954;
    --clr-green-dark: #17a34a;
    --clr-green-light: #e8faf0;
    --clr-green-glow: rgba(29, 185, 84, .2);
    --clr-green-glow-strong: rgba(29, 185, 84, .4);

    /* Accent */
    --clr-accent: #0ea5e9;
    --clr-accent-light: #e0f2fe;

    /* Surfaces */
    --bg-body: var(--clr-off-white);
    --bg-card: var(--clr-white);
    --bg-footer: var(--clr-navy);

    /* Typography */
    --ff-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --ff-display: 'Outfit', 'Inter', system-ui, sans-serif;
    --fs-base: 16px;
    --lh-base: 1.7;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Spacing scale (4 px base) */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --sp-24: 96px;

    /* Radius & Shadow */
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow: 0 4px 14px rgba(0, 0, 0, .07);
    --shadow-md: 0 8px 26px rgba(0, 0, 0, .09);
    --shadow-lg: 0 14px 40px rgba(0, 0, 0, .12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .16);
    --shadow-green: 0 8px 30px rgba(29, 185, 84, .22);

    /* Transition */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-spring: cubic-bezier(.175, .885, .32, 1.275);
    --dur: .3s;
    --dur-slow: .5s;

    /* Layout */
    --container: 1200px;
    --header-h: 72px;
}

/* ── 1. Reset & Base ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--fs-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    line-height: var(--lh-base);
    color: var(--clr-body);
    background: var(--bg-body);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--clr-green);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

a:hover {
    color: var(--clr-green-dark);
}

ul {
    list-style: none;
}

/* ── 2. Typography ───────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-display);
    color: var(--clr-navy);
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--clr-green);
    background: var(--clr-green-light);
    padding: var(--sp-2) var(--sp-5);
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-5);
    border: 1px solid rgba(29, 185, 84, .15);
}

.section__tag--dark {
    background: rgba(29, 185, 84, .12);
    border-color: rgba(29, 185, 84, .25);
}

.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: var(--sp-4);
    letter-spacing: -.5px;
}

.section__title--light {
    color: var(--clr-white);
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--clr-muted);
    max-width: 620px;
    margin: 0 auto var(--sp-12);
}

.section__subtitle--light {
    color: rgba(255, 255, 255, .6);
}

.section__header {
    text-align: center;
    margin-bottom: var(--sp-12);
}

/* ── 3. Layout ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.section {
    padding: var(--sp-24) 0;
}

.section--alt {
    background: var(--clr-white);
}

/* ── 4. Buttons ──────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    font-family: var(--ff-display);
    font-size: .95rem;
    font-weight: var(--fw-semibold);
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-green-dark) 100%);
    color: var(--clr-white);
    border-color: var(--clr-green);
    box-shadow: 0 4px 14px rgba(29, 185, 84, .3);
}

.btn--primary:hover {
    box-shadow: 0 8px 28px rgba(29, 185, 84, .45);
    transform: translateY(-3px);
    color: var(--clr-white);
}

.btn--glow {
    animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(29, 185, 84, .3);
    }

    50% {
        box-shadow: 0 6px 30px rgba(29, 185, 84, .5);
    }
}

.btn--glow:hover {
    animation: none;
    box-shadow: 0 8px 28px rgba(29, 185, 84, .45);
}

.btn--secondary {
    background: rgba(255, 255, 255, .08);
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .5);
    color: var(--clr-white);
    transform: translateY(-3px);
}

.btn--outline {
    background: transparent;
    color: var(--clr-green);
    border-color: var(--clr-green);
}

.btn--outline:hover {
    background: var(--clr-green);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.btn--full {
    width: 100%;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── 5. Header / Navbar ──────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 30px rgba(0, 0, 0, .06);
    border-bottom-color: rgba(0, 0, 0, .04);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
}

.logo__img {
    height: 52px;
    width: 52px;
    object-fit: contain;
    margin: -6px;
    mix-blend-mode: multiply;
}

.logo__text {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--clr-navy);
    letter-spacing: -.3px;
}

.logo__text span {
    color: var(--clr-green);
}

/* Desktop nav */
.nav {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.nav__link {
    font-size: .9rem;
    font-weight: var(--fw-medium);
    color: var(--clr-slate);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius-sm);
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
    text-decoration: none;
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: var(--clr-green);
    background: var(--clr-green-light);
}

.nav__cta {
    margin-left: var(--sp-3);
    padding: 10px 24px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-2);
    color: var(--clr-navy);
}

.mobile-toggle svg {
    width: 26px;
    height: 26px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    padding: var(--sp-8) var(--sp-6);
    flex-direction: column;
    gap: var(--sp-2);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.mobile-nav--open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-nav__link {
    font-size: 1.1rem;
    font-weight: var(--fw-medium);
    color: var(--clr-navy);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--radius-sm);
    transition: background var(--dur) var(--ease);
    text-decoration: none;
    display: block;
}

.mobile-nav__link:hover {
    background: var(--clr-green-light);
    color: var(--clr-green);
}

/* ── 6. Hero ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--clr-navy);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: center / cover no-repeat;
    filter: brightness(.7);
    transition: transform 20s linear;
}

/* subtle slow-zoom on the hero bg */
.hero:hover .hero__bg {
    transform: scale(1.03);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 22, 38, .92) 0%,
            rgba(11, 22, 38, .78) 35%,
            rgba(29, 185, 84, .12) 100%);
}

/* Decorative floating shapes */
.hero__shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--clr-green);
    top: -200px;
    right: -100px;
    animation: float-shape 18s ease-in-out infinite;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--clr-accent);
    bottom: -150px;
    left: -100px;
    animation: float-shape 22s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 250px;
    height: 250px;
    background: var(--clr-green);
    top: 50%;
    right: 25%;
    animation: float-shape 15s ease-in-out infinite 3s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(.95);
    }

    75% {
        transform: translate(15px, 15px) scale(1.02);
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-h) + var(--sp-20)) 0 var(--sp-20);
}

.hero__content {
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: .78rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--clr-green);
    background: rgba(29, 185, 84, .1);
    padding: var(--sp-2) var(--sp-5);
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-8);
    border: 1px solid rgba(29, 185, 84, .2);
    backdrop-filter: blur(10px);
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: var(--fw-extrabold);
    color: var(--clr-white);
    line-height: 1.08;
    margin-bottom: var(--sp-5);
    letter-spacing: -1px;
}

.hero__title span {
    background: linear-gradient(135deg, var(--clr-green) 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, .85);
    margin-bottom: var(--sp-4);
}

.hero__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: var(--sp-10);
    max-width: 540px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
    background: var(--clr-white);
    border-top: 3px solid var(--clr-green);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 5;
}

.trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-1);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-6) var(--sp-4);
    text-align: center;
    border-right: 1px solid var(--clr-light);
    transition: background var(--dur) var(--ease);
}

.trust-bar__item:hover {
    background: var(--clr-green-light);
}

.trust-bar__item:last-child {
    border-right: none;
}

.trust-bar__icon {
    width: 36px;
    height: 36px;
    color: var(--clr-green);
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease-spring);
}

.trust-bar__item:hover .trust-bar__icon {
    transform: scale(1.15) rotate(-5deg);
}

.trust-bar__label {
    font-family: var(--ff-display);
    font-size: .88rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-navy);
}

/* ── Stats Counter ───────────────────────────────── */
.stats {
    background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-charcoal) 100%);
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 185, 84, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8);
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat__value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    margin-bottom: var(--sp-2);
    min-height: 1.2em;
    /* Prevents vertical shifting */
}

.stat__number {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: var(--fw-extrabold);
    color: var(--clr-white);
    line-height: .9;
    min-width: 1ch;
    /* Helps prevent width collapse */
}

.stat__suffix {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--clr-green);
    line-height: .9;
}

.stat__label {
    margin-top: var(--sp-3);
    font-size: .9rem;
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── 7. About ────────────────────────────────────── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
    margin-bottom: var(--sp-20);
}

.about__text h3 {
    font-size: 1.6rem;
    margin-bottom: var(--sp-5);
    letter-spacing: -.3px;
}

.about__text p {
    margin-bottom: var(--sp-6);
    color: var(--clr-muted);
    line-height: 1.8;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.about__list-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-weight: var(--fw-medium);
    color: var(--clr-navy);
    transition: transform var(--dur) var(--ease);
}

.about__list-item:hover {
    transform: translateX(6px);
}

.about__list-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--clr-green), #4ade80);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--clr-green-glow);
}

.about__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.about__image:hover img {
    transform: scale(1.04);
}

.about__image-accent {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--clr-green), #4ade80);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: var(--sp-4) var(--sp-5);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    box-shadow: var(--shadow-md);
}

.about__image-badge-number {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: var(--fw-extrabold);
    color: var(--clr-green);
    line-height: 1;
}

.about__image-badge-text {
    font-size: .75rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-navy);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
    border: 1px solid rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-green), #4ade80);
    transform: scaleX(0);
    transition: transform var(--dur) var(--ease);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--sp-5);
    color: var(--clr-green);
    background: var(--clr-green-light);
    padding: var(--sp-3);
    border-radius: var(--radius);
    transition: transform var(--dur) var(--ease-spring), background var(--dur) var(--ease);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.12) rotate(-5deg);
    background: linear-gradient(135deg, var(--clr-green), #4ade80);
    color: var(--clr-white);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    margin-bottom: var(--sp-2);
}

.feature-card__text {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

/* ── 8. Services ─────────────────────────────────── */
/* Fleet showcase (top 3 image cards) */
.fleet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-12);
}

.fleet__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: default;
    box-shadow: var(--shadow-md);
}

.fleet__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.fleet__card:hover img {
    transform: scale(1.08);
}

.fleet__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 22, 38, .8) 0%, rgba(11, 22, 38, .1) 50%, transparent 100%);
    transition: background var(--dur) var(--ease);
}

.fleet__card:hover .fleet__card-overlay {
    background: linear-gradient(0deg, rgba(11, 22, 38, .85) 0%, rgba(29, 185, 84, .1) 50%, transparent 100%);
}

.fleet__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-6);
    color: var(--clr-white);
    transform: translateY(4px);
    transition: transform var(--dur) var(--ease);
}

.fleet__card:hover .fleet__card-content {
    transform: translateY(0);
}

.fleet__card-content h4 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--clr-white);
    margin-bottom: var(--sp-1);
}

.fleet__card-content p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
}

/* Service cards grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: var(--sp-6);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-green-light) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-green);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--sp-5);
    color: var(--clr-green);
    background: var(--clr-green-light);
    padding: var(--sp-3);
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    transition: transform var(--dur) var(--ease-spring);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    margin-bottom: var(--sp-2);
    position: relative;
    z-index: 1;
}

.service-card__text {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ── Why Choose Us (Dark Section) ────────────────── */
.why-us {
    background: linear-gradient(135deg, #0b1626 0%, #111d2e 50%, #0b1626 100%);
    padding: var(--sp-24) 0;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(29, 185, 84, .06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(14, 165, 233, .04) 0%, transparent 50%);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    position: relative;
    z-index: 1;
}

.why-us__card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    text-align: center;
    transition: transform var(--dur) var(--ease-spring), background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-green), transparent);
    opacity: 0;
    transition: opacity var(--dur) var(--ease), width var(--dur) var(--ease);
}

.why-us__card:hover::before {
    opacity: 1;
    width: 100%;
}

.why-us__card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(29, 185, 84, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3), 0 0 40px rgba(29, 185, 84, .05);
}

.why-us__card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--sp-5);
    color: var(--clr-green);
    background: rgba(29, 185, 84, .1);
    padding: var(--sp-3);
    border-radius: var(--radius);
    border: 1px solid rgba(29, 185, 84, .15);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}

.why-us__card:hover .why-us__card-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 0 20px rgba(29, 185, 84, .2);
}

.why-us__card-icon svg {
    width: 100%;
    height: 100%;
}

.why-us__card-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--clr-white);
    margin-bottom: var(--sp-3);
}

.why-us__card-text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials {
    background: linear-gradient(180deg, var(--clr-off-white) 0%, var(--clr-white) 100%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--ff-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--clr-green-light);
    font-weight: var(--fw-extrabold);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--sp-4);
    color: #f59e0b;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card__text {
    font-size: .95rem;
    color: var(--clr-body);
    line-height: 1.75;
    margin-bottom: var(--sp-6);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-green), #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-family: var(--ff-display);
    font-weight: var(--fw-bold);
    font-size: .85rem;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-family: var(--ff-display);
    font-weight: var(--fw-semibold);
    color: var(--clr-navy);
    font-size: .92rem;
}

.testimonial-card__role {
    font-size: .8rem;
    color: var(--clr-muted);
}

/* ── 9. Apply / Join Our Team ────────────────────── */
.apply {
    background: linear-gradient(135deg, var(--clr-off-white) 0%, var(--clr-green-light) 100%);
}

.apply__card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--sp-12) var(--sp-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, .04);
}

/* Form */
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
}

.form__group {
    margin-bottom: var(--sp-5);
}

.form__label {
    display: block;
    font-size: .88rem;
    font-weight: var(--fw-medium);
    color: var(--clr-navy);
    margin-bottom: var(--sp-2);
}

.form__label .req {
    color: var(--clr-green);
}

.form__input {
    width: 100%;
    font-family: var(--ff-primary);
    font-size: .95rem;
    color: var(--clr-navy);
    padding: 14px var(--sp-4);
    border: 1.5px solid var(--clr-light);
    border-radius: var(--radius-sm);
    background: var(--clr-off-white);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    outline: none;
}

.form__input::placeholder {
    color: var(--clr-muted);
}

.form__input:focus {
    border-color: var(--clr-green);
    box-shadow: 0 0 0 4px var(--clr-green-glow);
    background: var(--clr-white);
}

.form__divider {
    text-align: center;
    margin: var(--sp-5) 0;
    position: relative;
    color: var(--clr-muted);
    font-size: .85rem;
}

.form__divider::before,
.form__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: calc(50% - 24px);
    background: var(--clr-light);
}

.form__divider::before {
    left: 0;
}

.form__divider::after {
    right: 0;
}

/* Flash messages */
.flash {
    max-width: 560px;
    margin: 0 auto var(--sp-8);
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--radius);
    font-weight: var(--fw-medium);
    font-size: .92rem;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.flash--success {
    background: var(--clr-green-light);
    color: var(--clr-green-dark);
    border: 1px solid rgba(29, 185, 84, .25);
}

.flash--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, .2);
}

.flash--hide {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.flash__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── 10. Contact ─────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-12);
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 185, 84, .15);
}

.contact-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--sp-4);
    color: var(--clr-green);
    background: var(--clr-green-light);
    padding: var(--sp-3);
    border-radius: var(--radius);
    transition: transform var(--dur) var(--ease-spring);
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-family: var(--ff-display);
    font-size: 1rem;
    margin-bottom: var(--sp-2);
}

.contact-card p,
.contact-card a {
    font-size: .9rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--clr-green);
}

.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-charcoal) 60%, var(--clr-navy) 100%);
    padding: var(--sp-20) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(29, 185, 84, .1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(14, 165, 233, .06) 0%, transparent 50%);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--clr-white);
    margin-bottom: var(--sp-3);
    letter-spacing: -.5px;
}

.cta-banner__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .55);
    max-width: 480px;
}

.cta-banner__actions {
    display: flex;
    gap: var(--sp-4);
    flex-shrink: 0;
}

/* ── 11. Footer ──────────────────────────────────── */
.footer {
    background: var(--bg-footer);
    color: rgba(255, 255, 255, .65);
    padding: var(--sp-20) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}

.footer__brand .logo__text {
    color: var(--clr-white);
}

.footer__desc {
    margin-top: var(--sp-4);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer__socials {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .5);
    transition: all var(--dur) var(--ease-spring);
    border: 1px solid rgba(255, 255, 255, .06);
}

.footer__social-link:hover {
    background: var(--clr-green);
    color: var(--clr-white);
    border-color: var(--clr-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, .3);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__heading {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-white);
    margin-bottom: var(--sp-5);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__link {
    font-size: .9rem;
    color: rgba(255, 255, 255, .45);
    transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
    text-decoration: none;
    display: inline-block;
}

.footer__link:hover {
    color: var(--clr-green);
    transform: translateX(4px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    padding: var(--sp-6) 0;
    font-size: .82rem;
}

/* ── Back to Top ─────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-green), #4ade80);
    color: var(--clr-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--dur) var(--ease-spring);
    z-index: 900;
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(29, 185, 84, .4);
}

/* ── 12. Scroll Reveal ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.features .feature-card,
.services-grid .service-card,
.why-us__grid .why-us__card,
.testimonials__grid .testimonial-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.revealed .feature-card,
.revealed .service-card,
.revealed .why-us__card,
.revealed .testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

.revealed .feature-card:nth-child(1),
.revealed .service-card:nth-child(1),
.revealed .why-us__card:nth-child(1),
.revealed .testimonial-card:nth-child(1) {
    transition-delay: .05s;
}

.revealed .feature-card:nth-child(2),
.revealed .service-card:nth-child(2),
.revealed .why-us__card:nth-child(2),
.revealed .testimonial-card:nth-child(2) {
    transition-delay: .15s;
}

.revealed .feature-card:nth-child(3),
.revealed .service-card:nth-child(3),
.revealed .why-us__card:nth-child(3),
.revealed .testimonial-card:nth-child(3) {
    transition-delay: .25s;
}

.revealed .feature-card:nth-child(4),
.revealed .service-card:nth-child(4),
.revealed .why-us__card:nth-child(4) {
    transition-delay: .35s;
}

.revealed .service-card:nth-child(5) {
    transition-delay: .45s;
}

/* ── 13. Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }

    .fleet {
        grid-template-columns: 1fr 1fr;
    }

    .fleet__card:last-child {
        grid-column: span 2;
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
    }

    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__text {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .section {
        padding: var(--sp-16) 0;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero__title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }

    .trust-bar__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar__item:nth-child(2) {
        border-right: none;
    }

    .trust-bar__item {
        border-bottom: 1px solid var(--clr-light);
    }

    .trust-bar__item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-6);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .fleet {
        grid-template-columns: 1fr;
    }

    .fleet__card:last-child {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .apply__card {
        padding: var(--sp-8) var(--sp-6);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .why-us__grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        width: 100%;
    }

    .why-us {
        padding: var(--sp-16) 0;
    }

    .stats {
        padding: var(--sp-12) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp-4);
    }

    .trust-bar__inner {
        grid-template-columns: 1fr 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        padding: 0 var(--sp-2);
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .stats__inner {
        grid-template-columns: 1fr 1fr;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}