/* ═══════════════════════════════════════════════════════════
   BULLY ORELOPE TRANSPORT — Design System
   Palette extracted from logo: deep green + orange/amber
   UI/UX structure mirrors kingdomchampiongroup.com
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
    /* Primary — deep green from the logo */
    --green-900: #0b3d2e;
    --green-800: #0e4f3a;
    --green-700: #137a56;
    --green-600: #169b6b;
    --green-500: #1aab77;
    --green-100: #e6f5ef;
    --green-50:  #f0faf5;

    /* Accent — orange/amber from the logo */
    --orange-600: #d97a1e;
    --orange-500: #e8922e;
    --orange-400: #f0a94a;
    --orange-100: #fef3e2;
    --orange-50:  #fffbf5;

    /* Neutrals */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;
    --white:    #ffffff;

    /* Semantic */
    --primary:        var(--green-800);
    --primary-hover:  var(--green-900);
    --primary-light:  var(--green-100);
    --accent:         var(--orange-500);
    --accent-hover:   var(--orange-600);
    --accent-light:   var(--orange-100);
    --text:           var(--gray-800);
    --text-muted:     var(--gray-500);
    --text-heading:   var(--green-900);
    --bg:             var(--white);
    --bg-alt:         var(--gray-50);
    --bg-dark:        var(--green-900);
    --border:         var(--gray-200);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Inter', sans-serif;
    --fs-hero:   clamp(2.25rem, 5vw, 3.5rem);
    --fs-h2:     clamp(1.75rem, 3.5vw, 2.5rem);
    --fs-h3:     clamp(1.125rem, 2vw, 1.5rem);
    --fs-body:   1rem;
    --fs-small:  0.875rem;
    --fs-xs:     0.75rem;
    --lh-body:   1.7;
    --lh-heading: 1.2;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --gap:        clamp(1.5rem, 3vw, 2.5rem);

    /* Radii */
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:  0 4px 12px rgba(0,0,0,.08);
    --shadow-lg:  0 10px 30px rgba(0,0,0,.10);
    --shadow-xl:  0 20px 50px rgba(0,0,0,.12);

    /* Transitions — KCG-style smooth */
    --ease:       cubic-bezier(.25,.46,.45,.94);
    --duration:   .3s;
    --duration-slow: .5s;

    /* Nav */
    --nav-height: 72px;
}


/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }


/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.section {
    padding: var(--section-py) 0;
}
.section--alt {
    background: var(--bg-alt);
}
.section--dark {
    background: var(--bg-dark);
    color: var(--white);
}
.section--dark .section__eyebrow { color: var(--orange-400); }
.section--dark .section__heading { color: var(--white); }

.section__eyebrow {
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.section__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}
.section__heading {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--text-heading);
    line-height: var(--lh-heading);
    margin-bottom: 1.25rem;
}
.section__subheading {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
}
.section__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section__header .section__subheading { margin: 0 auto; }


/* ── BUTTONS (KCG-style hover) ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 600;
    padding: .75rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
/* Primary — filled green, lifts on hover */
.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(11,61,46,.15);
}
.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(11,61,46,.25);
    transform: translateY(-2px);
}
.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(11,61,46,.15);
}

/* Accent — filled orange */
.btn--accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(232,146,46,.15);
}
.btn--accent:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(232,146,46,.25);
    transform: translateY(-2px);
}
.btn--accent:active {
    transform: translateY(0);
}

/* Ghost — outlined, fills on hover */
.btn--ghost {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn--ghost:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11,61,46,.2);
}
.btn--ghost:active {
    transform: translateY(0);
}

/* Ghost light — for dark backgrounds */
.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,.15);
}

/* Link-style — arrow slides on hover */
.btn--link {
    padding: 0;
    color: var(--primary);
    font-weight: 600;
    gap: .35rem;
}
.btn--link::after {
    content: '→';
    transition: transform var(--duration) var(--ease);
}
.btn--link:hover {
    color: var(--green-700);
}
.btn--link:hover::after {
    transform: translateX(4px);
}

.btn--lg {
    padding: .9rem 2.25rem;
    font-size: var(--fs-body);
}


/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
    transition: box-shadow var(--duration) var(--ease);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar__brand {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.navbar__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.navbar__name {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.navbar__name strong {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--green-900);
}
.navbar__name small {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .1em;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.navbar__link {
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--gray-600);
    padding: .5rem .85rem;
    border-radius: var(--radius-sm);
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
    position: relative;
}
.navbar__link:hover {
    color: var(--primary);
    background: var(--green-50);
}
.navbar__link.active {
    color: var(--primary);
    font-weight: 600;
}
.navbar__link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: .85rem;
    right: .85rem;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.navbar__actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    z-index: 1001;
}
.navbar__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(520px, 75vh, 700px);
    display: flex;
    align-items: center;
    margin-top: var(--nav-height);
    overflow: hidden;
    background: var(--bg-dark);
}
.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,61,46,.88) 0%, rgba(11,61,46,.65) 50%, rgba(11,61,46,.45) 100%);
    z-index: 2;
}
.hero__content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 1.25rem;
    letter-spacing: .04em;
}
.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.hero__title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero__subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}


/* ── COUNTER STRIP ──────────────────────────────────────── */
.counter-strip {
    background: var(--white);
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-bottom: 1px solid var(--border);
}
.counter-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    text-align: center;
}
.counter-strip__item {
    padding: 1rem .5rem;
}
.counter-strip__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .35rem;
}
.counter-strip__number .counter-suffix {
    font-size: .65em;
    color: var(--accent);
}
.counter-strip__label {
    font-size: var(--fs-small);
    color: var(--text-muted);
    font-weight: 500;
}


/* ── WHO-WE-ARE (Text + Image) ──────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}
.split__image:hover img {
    transform: scale(1.03);
}
.split__text p {
    margin-bottom: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
}


/* ── DIVISION CARDS ─────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--gap);
}
.division-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.division-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.division-card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.division-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}
.division-card:hover .division-card__image img {
    transform: scale(1.06);
}
.division-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .3rem .75rem;
    border-radius: 100px;
    background: var(--green-700);
    color: var(--white);
}
.division-card__badge--coming {
    background: var(--orange-500);
}
.division-card__body {
    padding: 1.5rem;
}
.division-card__title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .5rem;
}
.division-card__desc {
    font-size: var(--fs-small);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}


/* ── SPOTLIGHT (full-width image + text) ────────────────── */
.spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.spotlight__image {
    overflow: hidden;
}
.spotlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spotlight__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--bg-dark);
    color: var(--white);
}
.spotlight__content .section__eyebrow {
    color: var(--orange-400);
}
.spotlight__content .section__heading {
    color: var(--white);
}
.spotlight__content p {
    color: rgba(255,255,255,.75);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}


/* ── VALUES / FEATURES GRID ─────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap);
}
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-500);
}
.value-card__icon {
    font-size: 2.25rem;
    margin-bottom: .75rem;
    display: block;
}
.value-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .4rem;
}
.value-card__desc {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: 1.6;
}


/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap);
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-card__quote {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent);
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-small);
    flex-shrink: 0;
}
.testimonial-card__name {
    font-weight: 600;
    color: var(--text-heading);
    font-size: var(--fs-small);
}
.testimonial-card__role {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}
.testimonials__disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: var(--fs-small);
    color: var(--text-muted);
    font-style: italic;
}


/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: .75rem;
    overflow: hidden;
    transition: border-color var(--duration) var(--ease);
}
.faq-item:hover {
    border-color: var(--green-500);
}
.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: var(--white);
    transition: background var(--duration) var(--ease);
}
.faq-item__question:hover {
    background: var(--green-50);
}
.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}
.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease);
}
.faq-item__answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: var(--fs-small);
    color: var(--gray-600);
    line-height: 1.8;
}


/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-dark);
    color: var(--white);
}
.cta-banner .section__heading {
    color: var(--white);
    margin-bottom: .75rem;
}
.cta-banner p {
    color: rgba(255,255,255,.7);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}


/* ── COMING SOON (placeholder pages) ────────────────────── */
.coming-soon {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: var(--nav-height);
}
.coming-soon__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.coming-soon__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: .75rem;
}
.coming-soon__text {
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 2rem;
}


/* ── HERO SHORT (inner pages) ────────────────────────────── */
.hero--short {
    min-height: clamp(420px, 55vh, 540px);
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 3rem;
}
.hero--short .hero__content {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}


/* ── VISION & MISSION CARDS ─────────────────────────────── */
.vision-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}
.vision-mission__card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.vision-mission__card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-400);
}
.vision-mission__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}
.vision-mission__card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--orange-400);
    margin-bottom: .75rem;
}
.vision-mission__card p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}


/* ── PILLAR CARDS ───────────────────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--gap);
}
.pillar-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.pillar-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green-500);
}
.pillar-card__number {
    position: absolute;
    top: -.25rem;
    right: .75rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--green-100);
    line-height: 1;
    pointer-events: none;
    transition: color var(--duration) var(--ease);
}
.pillar-card:hover .pillar-card__number {
    color: var(--orange-100);
}
.pillar-card__icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    display: block;
    position: relative;
    z-index: 1;
}
.pillar-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}
.pillar-card__desc {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}


/* ── TIMELINE ───────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-700), var(--orange-400));
    border-radius: 2px;
}
.timeline__item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}
.timeline__marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white), var(--shadow-sm);
}
.timeline__phase {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--white);
}
.timeline__content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.timeline__content:hover {
    border-color: var(--green-500);
    box-shadow: var(--shadow-md);
}
.timeline__content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .25rem;
}
.timeline__period {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--accent);
    background: var(--orange-100);
    padding: .15rem .6rem;
    border-radius: 100px;
    margin-bottom: .5rem;
}
.timeline__content p {
    font-size: var(--fs-small);
    color: var(--gray-600);
    line-height: 1.7;
}


/* ── CONTACT GRID ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.contact-form-wrap__intro {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* Form styles */
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: .4rem;
}
.form-input {
    width: 100%;
    padding: .75rem 1rem;
    font-size: var(--fs-body);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.form-input:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(26,171,119,.12);
}
.form-input::placeholder {
    color: var(--gray-400);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact info sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.contact-info__card:hover {
    border-color: var(--green-500);
    box-shadow: var(--shadow-sm);
}
.contact-info__icon {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    display: block;
}
.contact-info__card h3,
.contact-info__whatsapp h3 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .3rem;
}
.contact-info__card p,
.contact-info__whatsapp p {
    font-size: var(--fs-small);
    color: var(--gray-600);
    line-height: 1.6;
}
.contact-info__phones {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.contact-info__phones a {
    font-size: var(--fs-small);
    color: var(--primary);
    font-weight: 500;
    transition: color var(--duration) var(--ease);
}
.contact-info__phones a:hover {
    color: var(--accent);
}

/* WhatsApp CTA card */
.contact-info__whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--green-900);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.contact-info__whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.contact-info__whatsapp h3 {
    color: var(--white);
}
.contact-info__whatsapp p {
    color: rgba(255,255,255,.7);
}
.contact-info__whatsapp .contact-info__icon {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}



/* ── PASSENGER INTRO ─────────────────────────────────────── */
.passenger-intro__text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ── STEPS GRID (How it works) ──────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.step-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    position: relative;
}
.step-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.step-card__number { font-size: 2.5rem; margin-bottom: .75rem; display: block; }
.step-card__title {
    font-family: var(--font-display); font-size: var(--fs-h3);
    font-weight: 700; color: var(--text-heading); margin-bottom: .5rem;
}
.step-card__desc { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.7; }

/* ── FEATURES GRID ──────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.feature-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.feature-card__icon { font-size: 2rem; display: block; margin-bottom: .6rem; }
.feature-card__title {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: .35rem;
}
.feature-card__desc { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.65; }

/* ── ROUTES TABLE ───────────────────────────────────────── */
.routes-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.routes-table__head {
    display: grid; grid-template-columns: 1fr 100px 100px; padding: 1rem 1.5rem;
    background: var(--green-900); color: var(--white);
    font-family: var(--font-display); font-size: var(--fs-small);
    font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.routes-table__row {
    display: grid; grid-template-columns: 1fr 100px 100px;
    padding: .9rem 1.5rem; border-bottom: 1px solid var(--border); align-items: center;
    transition: background var(--duration) var(--ease);
}
.routes-table__row:last-child { border-bottom: none; }
.routes-table__row:hover { background: var(--green-50); }
.routes-table__route { font-weight: 500; color: var(--text-heading); }
.routes-table__route small { font-weight: 400; color: var(--text-muted); font-size: var(--fs-xs); }
.routes-table__tier, .routes-table__status {
    font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 700;
    text-align: center; padding: .2rem .5rem; border-radius: 100px; display: inline-block; width: fit-content;
}
.routes-table__tier--1 { background: var(--green-100); color: var(--green-800); }
.routes-table__tier--2 { background: var(--orange-100); color: var(--orange-600); }
.routes-table__tier--3 { background: var(--gray-100); color: var(--gray-600); }
.routes-table__status--active { background: var(--green-700); color: var(--white); }
.routes-table__status--soon { background: var(--orange-500); color: var(--white); }
.routes-table__status--planned { background: var(--gray-300); color: var(--gray-700); }
.routes-table__status--monitor { background: var(--gray-200); color: var(--gray-600); }
.routes-table__note { text-align: center; margin-top: 1rem; font-size: var(--fs-small); color: var(--text-muted); font-style: italic; }

/* ── PRICING CARDS ──────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: start; }
.pricing-card {
    background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; position: relative;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.pricing-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-lg); }
.pricing-card--popular { border-color: var(--green-700); box-shadow: var(--shadow-md); transform: scale(1.03); }
.pricing-card--popular:hover { transform: scale(1.05); }
.pricing-card__badge {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--green-700); color: var(--white); text-align: center;
    font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; padding: .4rem;
}
.pricing-card__header { padding: 2rem 1.5rem 1rem; text-align: center; }
.pricing-card--popular .pricing-card__header { padding-top: 2.75rem; }
.pricing-card__name { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 800; color: var(--text-heading); margin-bottom: .25rem; }
.pricing-card__tagline { font-size: var(--fs-small); color: var(--text-muted); }
.pricing-card__body { padding: 0 1.5rem 2rem; }
.pricing-card__features { margin-bottom: 1.5rem; }
.pricing-card__features li { font-size: var(--fs-small); color: var(--gray-600); padding: .45rem 0; border-bottom: 1px solid var(--gray-100); line-height: 1.5; }
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__body .btn { width: 100%; }
.pricing-note { text-align: center; margin-top: 1.5rem; font-size: var(--fs-small); color: var(--text-muted); font-style: italic; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── FLEET SPECS ────────────────────────────────────────── */
.fleet-specs { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.fleet-spec { display: flex; flex-direction: column; }
.fleet-spec__value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.fleet-spec__label { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 500; }

/* ── TERMINAL CARDS ─────────────────────────────────────── */
.terminals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.terminal-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 1.5rem; position: relative;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.terminal-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.terminal-card__status {
    display: inline-block; font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 700;
    text-transform: uppercase; padding: .2rem .6rem; border-radius: 100px; margin-bottom: .75rem;
}
.terminal-card__status--active { background: var(--green-700); color: var(--white); }
.terminal-card__status--planned { background: var(--orange-100); color: var(--orange-600); }
.terminal-card__name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .3rem; }
.terminal-card__address { font-size: var(--fs-small); color: var(--gray-600); line-height: 1.6; margin-bottom: .5rem; }
.terminal-card__timeline { font-size: var(--fs-xs); color: var(--text-muted); font-style: italic; }


/* ── SERVICE CARDS (7-grid) ─────────────────────────────── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap);
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.service-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.service-card__icon { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.service-card__title {
    font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: .4rem;
}
.service-card__desc { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.65; }

/* ── AUDIENCE GRID ──────────────────────────────────────── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.audience-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.audience-card__icon { font-size: 1.75rem; flex-shrink: 0; margin-top: .15rem; }
.audience-card h3 {
    font-family: var(--font-display); font-size: .95rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: .25rem;
}
.audience-card p { font-size: var(--fs-small); color: var(--gray-600); line-height: 1.6; }

/* ── TRACKING FEATURES (inside spotlight) ───────────────── */
.tracking-features {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}
.tracking-feature {
    font-size: var(--fs-small);
    font-weight: 500;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: .4rem .9rem;
    border-radius: 100px;
    color: rgba(255,255,255,.85);
    transition: background var(--duration) var(--ease);
}
.tracking-feature:hover { background: rgba(255,255,255,.18); }

/* ── PRICING MODEL CARDS ────────────────────────────────── */
.pricing-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap);
}
.pricing-model-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.pricing-model-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.pricing-model-card__icon { font-size: 2rem; display: block; margin-bottom: .6rem; }
.pricing-model-card h3 {
    font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: .4rem;
}
.pricing-model-card p { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.65; }

/* ── QUOTE SECTION (split layout) ───────────────────────── */
.quote-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.quote-section__info p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.quote-section__contact {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.quote-section__phone,
.quote-section__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--primary);
    transition: color var(--duration) var(--ease);
}
.quote-section__phone:hover,
.quote-section__whatsapp:hover { color: var(--accent); }


/* ── SAFETY CARDS (driver excellence) ───────────────────── */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap);
}
.safety-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.safety-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.safety-card__icon-wrap {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: .75rem;
}
.safety-card__icon-wrap--green { background: var(--green-100); }
.safety-card__icon-wrap--orange { background: var(--orange-100); }
.safety-card__title {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: .35rem;
}
.safety-card__desc { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.65; }

/* ── TECH CARDS (fleet technology) ──────────────────────── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.tech-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.tech-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.tech-card__visual {
    font-size: 2rem; flex-shrink: 0; margin-top: .1rem;
    width: 52px; height: 52px; border-radius: var(--radius-md);
    background: var(--green-50); display: flex; align-items: center; justify-content: center;
}
.tech-card__body h3 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: .3rem;
}
.tech-card__body p { font-size: var(--fs-small); color: var(--gray-600); line-height: 1.65; }

/* ── COMPLIANCE LIST (in spotlight) ─────────────────────── */
.compliance-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.compliance-item {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: var(--fs-small); color: rgba(255,255,255,.8); line-height: 1.5;
}
.compliance-item__check {
    color: var(--orange-400); font-weight: 700; flex-shrink: 0; margin-top: .1rem;
}

/* ── PROTOCOL LIST (security) ───────────────────────────── */
.protocol-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.protocol-item {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: 1rem; background: var(--green-50); border-radius: var(--radius-md);
    border: 1px solid var(--green-100);
    transition: border-color var(--duration) var(--ease);
}
.protocol-item:hover { border-color: var(--green-500); }
.protocol-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.protocol-item strong {
    font-family: var(--font-display); font-size: var(--fs-small); font-weight: 700;
    color: var(--text-heading); display: block; margin-bottom: .15rem;
}
.protocol-item p { font-size: var(--fs-xs); color: var(--gray-600); line-height: 1.5; margin: 0; }

/* ── RISK CARDS (dark section) ──────────────────────────── */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.risk-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.risk-card:hover { border-color: var(--orange-400); transform: translateY(-3px); }
.risk-card__risk {
    font-family: var(--font-display); font-size: .95rem; font-weight: 700;
    color: var(--orange-400); margin-bottom: .35rem;
}
.risk-card__mitigation { font-size: var(--fs-small); color: rgba(255,255,255,.7); line-height: 1.6; }

/* ── TRAINING CALENDAR ──────────────────────────────────── */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.training-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.training-card:hover { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.training-card__freq {
    display: inline-block;
    font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 700;
    color: var(--accent); background: var(--orange-100);
    padding: .15rem .6rem; border-radius: 100px; margin-bottom: .5rem;
}
.training-card h3 {
    font-family: var(--font-display); font-size: .95rem; font-weight: 700;
    color: var(--text-heading);
}

/* ── RESPONSIVE (Phase 5) ───────────────────────────────── */
@media (max-width: 768px) {
    .tech-grid { grid-template-columns: 1fr 1fr; }
    .risk-grid { grid-template-columns: 1fr 1fr; }
    .training-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .tech-grid { grid-template-columns: 1fr; }
    .risk-grid { grid-template-columns: 1fr; }
    .training-grid { grid-template-columns: 1fr; }
}


/* ── RESPONSIVE (Phase 4) ───────────────────────────────── */
@media (max-width: 768px) {
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .quote-section { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .audience-grid { grid-template-columns: 1fr; }
    .tracking-features { flex-direction: column; }
}


/* ── RESPONSIVE (Phase 3) ───────────────────────────────── */
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card--popular { transform: none; }
    .terminals-grid { grid-template-columns: 1fr 1fr; }
    .routes-table__head, .routes-table__row { grid-template-columns: 1fr 80px 80px; font-size: var(--fs-xs); }
    .fleet-specs { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .terminals-grid { grid-template-columns: 1fr; }
}


/* ── RESPONSIVE (Phase 2 additions) ─────────────────────── */
@media (max-width: 768px) {
    .vision-mission__grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .pillars-grid { grid-template-columns: 1fr; }
}


/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,.7);
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr) 1.4fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand-col img {
    width: 48px;
    margin-bottom: .75rem;
}
.footer h4 {
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer__brand-col p {
    font-size: var(--fs-small);
    line-height: 1.6;
    margin-top: .5rem;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer__col a {
    font-size: var(--fs-small);
    color: rgba(255,255,255,.6);
    transition: color var(--duration) var(--ease), padding-left var(--duration) var(--ease);
}
.footer__col a:hover {
    color: var(--orange-400);
    padding-left: 4px;
}
.footer__office {
    margin-bottom: .75rem;
}
.footer__office strong {
    display: block;
    font-size: var(--fs-small);
    color: var(--white);
    margin-bottom: .15rem;
}
.footer__office span {
    font-size: var(--fs-xs);
    line-height: 1.5;
}
.footer__phones {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.footer__phones a {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.6);
    transition: color var(--duration) var(--ease);
}
.footer__phones a:hover {
    color: var(--orange-400);
}
.footer__bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.4);
}


/* ── BACK TO TOP (with scroll progress ring) ────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
    z-index: 900;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.back-to-top__ring {
    position: absolute;
    inset: 0;
    width: 46px;
    height: 46px;
    transform: rotate(-90deg);
}
.back-to-top__ring-bg {
    fill: none;
    stroke: rgba(255,255,255,.2);
    stroke-width: 2;
}
.back-to-top__ring-progress {
    fill: none;
    stroke: var(--orange-400);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 125.66;  /* 2 * PI * 20 */
    stroke-dashoffset: 125.66; /* starts empty */
    transition: stroke-dashoffset 0.1s linear;
}
.back-to-top__arrow {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1;
}


/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar__menu,
    .navbar__actions {
        display: none;
    }
    .navbar__toggle {
        display: flex;
    }
    /* Mobile drawer */
    .navbar__menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 2rem;
        gap: 0;
        z-index: 999;
        animation: slideDown .3s var(--ease);
    }
    .navbar__menu.open .navbar__link {
        padding: 1rem 0;
        font-size: 1.0625rem;
        border-bottom: 1px solid var(--border);
    }
    .navbar__actions.open {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 2rem;
        background: var(--white);
        border-top: 1px solid var(--border);
        z-index: 999;
        gap: .75rem;
    }
    .navbar__actions.open .btn {
        flex: 1;
        text-align: center;
    }

    .hero__content { max-width: 100%; }
    .split { grid-template-columns: 1fr; }
    .split--reverse { direction: ltr; }
    .spotlight { grid-template-columns: 1fr; }
    .counter-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .counter-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS — 2D & 3D
   ═══════════════════════════════════════════════════════════ */

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes spin3d {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}
@keyframes tiltIn {
    from { opacity: 0; transform: perspective(800px) rotateX(12deg) translateY(30px); }
    to   { opacity: 1; transform: perspective(800px) rotateX(0deg) translateY(0); }
}
@keyframes slideInScale {
    from { opacity: 0; transform: scale(.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes borderGlow {
    0%, 100% { border-color: var(--green-500); box-shadow: 0 0 0 rgba(26,171,119,0); }
    50%      { border-color: var(--orange-400); box-shadow: 0 0 20px rgba(232,146,46,.15); }
}
@keyframes countPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ── SCROLL REVEAL SYSTEM ───────────────────────────────── */
/* Content visible by default — JS adds .js-ready to enable */
.js-ready .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal variants — different directions */
.js-ready .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.js-ready .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.js-ready .reveal-scale {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* 3D tilt-in reveal */
.js-ready .reveal-3d {
    opacity: 0;
    transform: perspective(800px) rotateX(10deg) translateY(30px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js-ready .reveal-3d.visible {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0);
}

/* Stagger children */
.js-ready .stagger-children > *:nth-child(1) { transition-delay: 0s; }
.js-ready .stagger-children > *:nth-child(2) { transition-delay: .1s; }
.js-ready .stagger-children > *:nth-child(3) { transition-delay: .2s; }
.js-ready .stagger-children > *:nth-child(4) { transition-delay: .3s; }
.js-ready .stagger-children > *:nth-child(5) { transition-delay: .4s; }
.js-ready .stagger-children > *:nth-child(6) { transition-delay: .5s; }

/* ── HERO ANIMATIONS ────────────────────────────────────── */
.hero__badge {
    animation: fadeInUp .8s var(--ease) .3s both;
}
.hero__title {
    animation: fadeInUp .8s var(--ease) .5s both;
}
.hero__subtitle {
    animation: fadeInUp .8s var(--ease) .7s both;
}
.hero__actions {
    animation: fadeInUp .8s var(--ease) .9s both;
}

/* Hero slide Ken Burns zoom */
.hero__slide.active img {
    animation: kenBurns 8s ease-in-out forwards;
}
@keyframes kenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* ── 3D CARD TILT (mouse-tracked) ───────────────────────── */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tilt-card:hover {
    box-shadow: var(--shadow-xl);
}
/* Shine overlay on 3D cards */
.tilt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%, transparent 100%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
    z-index: 5;
}
.tilt-card:hover::after {
    opacity: 1;
}

/* ── BUTTON ENHANCEMENTS ────────────────────────────────── */
/* Ripple effect on buttons */
.btn {
    position: relative;
    overflow: hidden;
}
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    transform: scale(0);
    animation: ripple .6s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* Shimmer on primary buttons */
.btn--primary::before,
.btn--accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s var(--ease);
    pointer-events: none;
}
.btn--primary:hover::before,
.btn--accent:hover::before {
    left: 100%;
}

/* ── DIVISION CARD HOVER ENHANCEMENTS ───────────────────── */
.division-card {
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
}
.division-card:hover {
    transform: translateY(-8px) rotateX(2deg);
}
.division-card__badge {
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.division-card:hover .division-card__badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ── VALUE CARD ENHANCEMENTS ────────────────────────────── */
.value-card__icon {
    transition: transform .4s var(--ease);
}
.value-card:hover .value-card__icon {
    transform: scale(1.2) rotateY(180deg);
    animation: none;
}
/* Floating animation on icons */
.value-card__icon {
    animation: float 3s ease-in-out infinite;
}
.value-card:nth-child(2) .value-card__icon { animation-delay: .5s; }
.value-card:nth-child(3) .value-card__icon { animation-delay: 1s; }
.value-card:nth-child(4) .value-card__icon { animation-delay: 1.5s; }

/* ── TESTIMONIAL ENHANCEMENTS ───────────────────────────── */
.testimonial-card__avatar {
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial-card:hover .testimonial-card__avatar {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(14,79,58,.3);
}
.testimonial-card__quote {
    transition: border-color .4s var(--ease);
}
.testimonial-card:hover .testimonial-card__quote {
    border-color: var(--green-700);
}

/* ── COUNTER STRIP ANIMATION ────────────────────────────── */
.counter-strip__number[data-animated="true"] {
    animation: countPulse .4s var(--ease);
}

/* ── SPOTLIGHT HOVER ─────────────────────────────────────── */
.spotlight__image {
    overflow: hidden;
}
.spotlight__image img {
    transition: transform .8s var(--ease);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spotlight:hover .spotlight__image img {
    transform: scale(1.06);
}

/* ── SPLIT IMAGE 3D HOVER ───────────────────────────────── */
.split__image {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform .5s var(--ease);
}
.split__image:hover {
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
}

/* ── FAQ ENHANCED ANIMATION ─────────────────────────────── */
.faq-item {
    transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.faq-item:hover {
    transform: translateX(4px);
}
.faq-item.open {
    border-color: var(--green-500);
    animation: borderGlow 2s ease-in-out infinite;
}

/* ── FOOTER LINK ANIMATIONS ─────────────────────────────── */
.footer__col a {
    position: relative;
}
.footer__col a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange-400);
    transition: width .3s var(--ease);
}
.footer__col a:hover::before {
    width: 100%;
}

/* ── NAVBAR LINK UNDERLINE ANIMATION ────────────────────── */
.navbar__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s var(--ease), left .3s var(--ease);
    border-radius: 1px;
}
.navbar__link:hover::before {
    width: calc(100% - 1.7rem);
    left: .85rem;
}

/* ── SECTION EYEBROW DOT PULSE ──────────────────────────── */
.section__eyebrow::before {
    animation: pulse 2s ease-in-out infinite;
}

/* ── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .js-ready .reveal,
    .js-ready .reveal-left,
    .js-ready .reveal-right,
    .js-ready .reveal-scale,
    .js-ready .reveal-3d {
        opacity: 1;
        transform: none;
    }
}
