/* ============================================
   JAI AMBEY ROADLINES — Custom Stylesheet
   Bootstrap 5 + Custom CSS
   ============================================ */

/* ---- CSS Variables — Logo-matched color system ---- */
:root {
    /* Brand colors extracted from JAI logo */
    --jar-blue:         #1C3C8A;   /* "JAI" text — deep royal blue  */
    --jar-blue-mid:     #2D5BA3;   /* Mid blue for hover states     */
    --jar-crimson:      #C8202A;   /* Swoosh/wing — vivid crimson   */
    --jar-crimson-dark: #A01820;   /* Darker crimson                */

    /* Backward-compat aliases — all existing --jar-orange CSS works unchanged */
    --jar-orange:       var(--jar-crimson);
    --jar-orange-dark:  var(--jar-crimson-dark);

    --jar-navy:         #0A1628;
    --jar-navy-light:   #152038;
    --jar-gold:         #D4920E;
    --jar-gray:         #6B7280;
    --jar-light:        #F8F9FA;
    --jar-white:        #FFFFFF;

    /* Corporate typefaces */
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #2D3748;
    background: var(--jar-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--jar-navy);
}

a {
    transition: var(--transition);
}

img {
    max-width: 100%;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--jar-orange);
    border-radius: 3px;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--jar-navy);
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 2px solid var(--jar-orange);
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--jar-gold);
}

.topbar .sep {
    margin: 0 12px;
    opacity: 0.35;
}

/* ============================================
   NAVBAR — White, clean, logo-friendly
   ============================================ */
.navbar-main {
    background: var(--jar-white);
    box-shadow: var(--shadow-md);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition);
    border-bottom: 3px solid var(--jar-orange);
}

.navbar-main.scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,0.14);
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--jar-orange), var(--jar-orange-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 2px 10px rgba(232, 80, 10, 0.35);
    flex-shrink: 0;
}

.brand-text .brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--jar-navy);
    line-height: 1.1;
    display: block;
}

.brand-text .brand-tagline {
    font-size: 0.70rem;
    color: var(--jar-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.90rem;
    color: var(--jar-navy) !important;
    padding: 22px 16px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--jar-orange);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    left: 10px;
    right: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--jar-orange) !important;
}

.navbar-toggler {
    border: none;
    background: var(--jar-orange);
    color: white;
    border-radius: var(--radius);
    padding: 8px 12px;
    font-size: 1.1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   OFFCANVAS MOBILE MENU — Left-to-right slide
   ============================================ */
.offcanvas-nav {
    width: 86% !important;
    max-width: 320px !important;
    overflow: hidden !important;
}

.offcanvas-nav .offcanvas-body {
    overflow-x: hidden !important;
    overflow-y: auto;
}

/* Plain block nav — no flex-wrap so sub-items never spill into a second column */
.offcanvas-nav-menu {
    display: block;
    width: 100%;
    overflow-x: hidden;
}

.offcanvas-nav-menu .collapse {
    width: 100%;
    overflow-x: hidden;
}

.offcanvas-nav .offcanvas-header {
    background: var(--jar-navy);
    border-bottom: 3px solid var(--jar-orange);
    padding: 14px 18px;
    align-items: center;
}

.offcanvas-nav .btn-close {
    filter: invert(1);
    opacity: 0.8;
    flex-shrink: 0;
}

/* Main nav links */
.offcanvas-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--jar-navy) !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    transition: var(--transition);
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
    color: var(--jar-orange) !important;
    background: rgba(200,32,42,0.05);
    padding-left: 24px !important;
}

.offcanvas-nav .nav-link i {
    width: 18px;
    text-align: center;
    color: var(--jar-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.offcanvas-nav .nav-link-foundation {
    color: var(--jar-crimson) !important;
}

.offcanvas-nav .nav-link-foundation i {
    color: var(--jar-crimson);
}

/* Businesses accordion toggle */
.offcanvas-acc-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--jar-navy) !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #F3F4F6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
    min-height: 52px;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.offcanvas-acc-btn:hover {
    color: var(--jar-orange) !important;
    background: rgba(200,32,42,0.05);
}

.offcanvas-acc-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offcanvas-acc-btn span i {
    width: 18px;
    text-align: center;
    color: var(--jar-orange);
    font-size: 1rem;
}

.offcanvas-chevron {
    font-size: 0.70rem;
    color: var(--jar-gray);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.offcanvas-acc-btn[aria-expanded="true"] .offcanvas-chevron {
    transform: rotate(180deg);
    color: var(--jar-orange);
}

/* Sub-nav (businesses list) */
.offcanvas-subnav {
    background: #F8F9FA;
    border-bottom: 1px solid #F0F0F0;
    padding: 6px 0;
    width: 100%;
    overflow-x: hidden;
}

.offcanvas-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 20px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--jar-navy);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.offcanvas-sublink span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.offcanvas-sublink:last-child { border-bottom: none; }

.offcanvas-sublink:hover {
    color: var(--jar-orange);
    background: white;
    padding-left: 24px;
}

.offcanvas-sub-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.80rem;
    flex-shrink: 0;
}

.offcanvas-sub-icon.icon-orange { background: rgba(200,32,42,0.12); color: var(--jar-orange); }
.offcanvas-sub-icon.icon-blue   { background: rgba(59,130,246,0.12); color: #3B82F6; }
.offcanvas-sub-icon.icon-gold   { background: rgba(212,146,14,0.12); color: var(--jar-gold); }
.offcanvas-sub-icon.icon-red    { background: rgba(239,68,68,0.12);  color: #EF4444; }
.offcanvas-sub-icon.icon-green  { background: rgba(34,197,94,0.12);  color: #22C55E; }
.offcanvas-sub-icon.icon-purple { background: rgba(124,58,237,0.12); color: #7C3AED; }

/* Footer of offcanvas */
.offcanvas-footer {
    padding: 16px;
    border-top: 1px solid #F0F0F0;
    background: white;
}

.offcanvas-quick-contact {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.offcanvas-quick-contact a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--radius);
    font-size: 0.80rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.offcanvas-quick-contact a:first-child {
    background: rgba(10,22,40,0.07);
    color: var(--jar-navy);
    border: 1px solid rgba(10,22,40,0.12);
}

.offcanvas-quick-contact a:last-child {
    background: rgba(37,211,102,0.12);
    color: #16a34a;
    border: 1px solid rgba(37,211,102,0.25);
}

.offcanvas-quick-contact a:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.82) 0%, rgb(13 27 42 / 0%) 50%, rgb(30 58 95 / 0%) 100%), url(/assets/images/hero-bg.jpg) center center / cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

/* .hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L80,58.7C160,53,320,43,480,42.7C640,43,800,53,960,53.3C1120,53,1280,43,1360,37.3L1440,32L1440,80L1360,80C1280,80,1120,80,960,80C800,80,640,80,480,80C320,80,160,80,80,80L0,80Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
} */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 80, 10, 0.2);
    border: 1px solid rgba(232, 80, 10, 0.4);
    color: var(--jar-gold);
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--jar-orange);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--jar-orange);
    line-height: 1;
    display: block;
}

.hero-stat .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.hero-truck-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(12px);
    text-align: center;
    color: white;
    position: relative;
}

.truck-icon-big {
    font-size: 6rem;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 8px 20px rgba(232, 80, 10, 0.4));
}

@keyframes floatLeft {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-18px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes floatRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(18px);
    }

    100% {
        transform: translateX(0px);
    }
}

.hero-float-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 10px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-float-badge.badge-1 {
    top: 30px;
    right: 20px;
    color: var(--jar-navy);
    animation: floatRight 3s ease-in-out infinite;
}

.hero-float-badge.badge-2 {
    bottom: 30px;
    left: 20px;
    color: var(--jar-navy);
    animation: floatLeft 3.5s ease-in-out infinite;
}

.hero-float-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--jar-orange);
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-eyebrow::before {
    content: '— ';
}

.section-eyebrow::after {
    content: ' —';
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--jar-navy);
    margin-bottom: 14px;
}

.section-title .highlight {
    color: var(--jar-orange);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--jar-orange), var(--jar-gold));
    border-radius: 2px;
    margin: 0 auto 18px;
}

.section-subtitle {
    color: var(--jar-gray);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-jar-primary {
    background: linear-gradient(135deg, var(--jar-orange), var(--jar-orange-dark));
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 13px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232, 80, 10, 0.35);
}

.btn-jar-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 80, 10, 0.45);
    color: white;
    background: linear-gradient(135deg, var(--jar-orange-dark), var(--jar-orange));
}

.btn-jar-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius);
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-jar-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-jar-white {
    background: white;
    color: var(--jar-orange);
    border: 2px solid white;
    border-radius: var(--radius);
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-jar-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--jar-orange), var(--jar-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(232, 80, 10, 0.12), rgba(232, 80, 10, 0.05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--jar-orange);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--jar-orange);
    color: white;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--jar-navy);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--jar-gray);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ============================================
   FLEET CARDS
   ============================================ */
.fleet-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid #E8ECF0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.fleet-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--jar-orange);
}

.fleet-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-img img {
    transform: scale(1.07);
}

.fleet-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.80) 0%, rgba(10,22,40,0.04) 60%);
}

.fleet-card-count {
    position: absolute;
    bottom: 14px;
    left: 18px;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.fleet-card-body {
    padding: 14px 18px 18px;
}

.fleet-card-label {
    font-weight: 700;
    color: var(--jar-navy);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.fleet-card-capacity {
    color: var(--jar-gray);
    font-size: 0.82rem;
    font-weight: 500;
}

.fleet-card-capacity i {
    color: var(--jar-orange);
    margin-right: 3px;
}

@media (max-width: 576px) {
    .fleet-card-img { height: 140px; }
    .fleet-card-count { font-size: 1.8rem; bottom: 10px; left: 12px; }
    .fleet-card-body { padding: 10px 12px 14px; }
    .fleet-card-label { font-size: 0.85rem; }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    background: var(--jar-navy);
    color: white;
}

.why-section .section-title {
    color: white;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(232, 80, 10, 0.15);
    border-color: rgba(232, 80, 10, 0.4);
    transform: translateY(-4px);
}

.why-card-icon {
    font-size: 2rem;
    color: var(--jar-gold);
    margin-bottom: 16px;
    display: block;
}

.why-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.90rem;
    margin-bottom: 0;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industry-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    cursor: default;
}

.industry-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--jar-orange);
}

.industry-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block;
}

.industry-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jar-navy);
    margin-bottom: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--jar-orange) 0%, var(--jar-orange-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.form-jar .form-control,
.form-jar .form-select {
    border: 2px solid #E8ECF0;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.93rem;
    transition: var(--transition);
    background: white;
}

.form-jar .form-control:focus,
.form-jar .form-select:focus {
    border-color: var(--jar-orange);
    box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.12);
    outline: none;
}

.form-jar .form-label {
    font-weight: 600;
    color: var(--jar-navy);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.contact-info-card {
    background: var(--jar-navy);
    color: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
}

.contact-info-card h4 {
    color: white;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(232, 80, 10, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--jar-gold);
    flex-shrink: 0;
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--jar-gold);
}

.contact-info-text small {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--jar-navy) 0%, var(--jar-navy-light) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    color: white;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f8f9fa' fill-opacity='1' d='M0,32L80,26.7C160,21,320,11,480,10.7C640,11,800,21,960,21.3C1120,21,1280,11,1360,5.3L1440,0L1440,60L1360,60C1280,60,1120,60,960,60C800,60,640,60,480,60C320,60,160,60,80,60L0,60Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.page-hero.bg-light-wave::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,32L80,26.7C160,21,320,11,480,10.7C640,11,800,21,960,21.3C1120,21,1280,11,1360,5.3L1440,0L1440,60L1360,60C1280,60,1120,60,960,60C800,60,640,60,480,60C320,60,160,60,80,60L0,60Z'%3E%3C/path%3E%3C/svg%3E");
}

.page-hero h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero .breadcrumb-item {
    color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb-item.active {
    color: var(--jar-gold);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
    color: white;
}

/* ============================================
   CAREERS
   ============================================ */
.job-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--jar-orange);
    transform: translateX(4px);
}

.job-badge {
    display: inline-block;
    background: rgba(232, 80, 10, 0.1);
    color: var(--jar-orange);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.job-badge.type {
    background: rgba(13, 27, 42, 0.08);
    color: var(--jar-navy);
}

.job-badge.loc {
    background: rgba(34, 197, 94, 0.10);
    color: #16a34a;
}

/* ============================================
   ABOUT — HERO BANNER
   ============================================ */
.about-hero {
    background: var(--jar-navy);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg, transparent, transparent 40px,
        rgba(255,255,255,0.018) 40px, rgba(255,255,255,0.018) 41px
    );
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28,60,138,0.55) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-img-wrap {
    height: 370px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    position: relative;
}

.about-hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
}

.about-img-ph {
    width: 100%; height: 100%;
    min-height: 280px;
    border: 2px dashed rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(2px);
    color: rgba(255,255,255,0.35);
    font-size: 0.80rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.about-img-ph i {
    font-size: 3rem;
    color: rgba(255,255,255,0.18);
}

/* Stats strip */
.about-stats-strip {
    background: var(--jar-crimson);
    margin-top: 60px;
}

.about-stat-item {
    text-align: center;
    padding: 22px 12px;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.about-stat-item:last-child { border-right: none; }

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 900;
    color: white; line-height: 1;
}

.about-stat-lbl {
    font-size: 0.75rem; font-weight: 700;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase; letter-spacing: 0.6px;
    margin-top: 5px;
}

/* ============================================
   ABOUT — STORY SECTION
   ============================================ */
.about-mini-stat {
    display: flex; align-items: center; gap: 14px;
    background: white; border: 1px solid #E8ECF0;
    border-radius: var(--radius); padding: 16px;
    transition: var(--transition);
}

.about-mini-stat:hover {
    border-color: var(--jar-orange);
    box-shadow: var(--shadow-sm);
}

.about-mini-icon {
    width: 44px; height: 44px;
    background: rgba(200,32,42,0.09);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--jar-crimson); font-size: 1.2rem; flex-shrink: 0;
}

.about-mini-num {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 900;
    color: var(--jar-navy); line-height: 1;
}

.about-mini-lbl {
    font-size: 0.78rem; color: var(--jar-gray);
    font-weight: 600; margin-top: 3px;
}

.about-story-img-wrap {
    position: relative;
}

.about-story-ph {
    height: 420px;
    border-radius: var(--radius-lg);
    border: 2px dashed #CBD5E1;
    background: white;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: #94A3B8;
    font-size: 0.80rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.about-story-ph i { font-size: 3.5rem; color: #CBD5E1; }

.about-story-badge {
    position: absolute;
    bottom: -18px; left: -18px;
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-story-badge-num {
    font-size: 1.9rem; font-weight: 900;
    color: var(--jar-crimson);
    font-family: var(--font-heading); line-height: 1;
}

.about-story-badge-lbl {
    font-size: 0.80rem; color: var(--jar-navy);
    font-weight: 600; line-height: 1.4;
}

/* ============================================
   ABOUT — VISION / MISSION
   ============================================ */
.vm-card {
    border-radius: var(--radius-lg);
    padding: 42px 36px;
    height: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}

.vm-card::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.vm-card-navy    { background: linear-gradient(135deg, #0A1628 0%, #1C3C8A 100%); }
.vm-card-crimson { background: linear-gradient(135deg, #C8202A 0%, #8B1219 100%); }

.vm-icon {
    width: 58px; height: 58px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: white;
    margin-bottom: 22px;
}

.vm-card h3 {
    color: white; font-size: 1.5rem;
    margin-bottom: 14px; font-weight: 800;
}

.vm-card p {
    color: rgba(255,255,255,0.80);
    line-height: 1.9; margin: 0; font-size: 0.96rem;
}

/* ============================================
   ABOUT — CORE VALUES
   ============================================ */
.value-card-v2 {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 24px;
    background: white; border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    height: 100%; transition: var(--transition);
}

.value-card-v2:hover {
    border-color: var(--jar-orange);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.value-v2-icon {
    width: 50px; height: 50px;
    background: rgba(200,32,42,0.09);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: var(--jar-crimson); flex-shrink: 0;
}

.value-card-v2 h6 {
    font-weight: 800; color: var(--jar-navy);
    margin-bottom: 6px; font-size: 0.95rem;
}

.value-card-v2 p {
    font-size: 0.86rem; color: var(--jar-gray);
    margin: 0; line-height: 1.75;
}

/* old value-card kept for compat */
.value-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: var(--jar-light);
    border-radius: var(--radius); margin-bottom: 16px;
    transition: var(--transition);
}

.value-card:hover { background: rgba(232,80,10,0.06); }

.value-icon {
    width: 44px; height: 44px; background: var(--jar-orange);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white; flex-shrink: 0;
}

/* ============================================
   ABOUT — TEAM CARDS
   ============================================ */
.team-card-v2 {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #E8ECF0;
    transition: var(--transition);
    height: 100%;
}

.team-card-v2:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-photo-wrap {
    height: 280px; overflow: hidden;
    background: linear-gradient(145deg, #D4DCE8, #BEC8D8);
    position: relative;
}

.team-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
}

.team-photo-ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
}

.team-photo-ph i { font-size: 5rem; color: rgba(13,27,42,0.2); }

.team-photo-ph span {
    font-size: 0.75rem; color: rgba(13,27,42,0.38);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}

.team-card-body { padding: 24px; }

.team-card-body h5 {
    font-weight: 800; color: var(--jar-navy);
    margin-bottom: 7px; font-size: 1.05rem;
}

.team-role-badge {
    display: inline-block;
    background: rgba(200,32,42,0.08);
    color: var(--jar-crimson);
    font-size: 0.74rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    margin-bottom: 14px; letter-spacing: 0.3px;
}

.team-card-body p {
    font-size: 0.86rem; color: var(--jar-gray);
    line-height: 1.75; margin-bottom: 18px;
}

.team-social {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-top: 4px;
}

.team-social a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s ease;
    line-height: 1;
}

.team-social a:hover { color: var(--jar-crimson); }

/* ============================================
   ABOUT — GROUP COMPANY CARDS
   ============================================ */
.group-company-card {
    display: flex; align-items: center; gap: 14px;
    background: white; border: 1px solid #E8ECF0;
    border-radius: var(--radius); padding: 16px 18px;
    text-decoration: none; transition: var(--transition);
}

.group-company-card:hover {
    border-color: var(--jar-orange);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 36px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 40px;
    bottom: -36px;
    width: 2px;
    background: linear-gradient(to bottom, var(--jar-orange), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 6px;
    width: 26px;
    height: 26px;
    background: var(--jar-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

/* ============================================
   FLEET PAGE
   ============================================ */

/* Hero */
.fleet-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.fleet-hero-bg {
    position: absolute;
    inset: 0; z-index: 0;
}

.fleet-hero-img-ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0A1628 0%, #0f2540 40%, #1a1a2e 100%);
}

.fleet-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 60%;
}

.fleet-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right,
        rgba(10,22,40,0.92) 0%,
        rgba(10,22,40,0.65) 55%,
        rgba(10,22,40,0.25) 100%);
}

.fleet-hero-eyebrow {
    display: inline-block;
    background: rgba(200,32,42,0.18);
    border: 1px solid rgba(200,32,42,0.4);
    color: #FCA5A5;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.7px;
}

.btn-fleet-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    color: white; text-decoration: none;
    font-size: 0.90rem; font-weight: 700;
    transition: var(--transition);
}

.btn-fleet-outline:hover {
    border-color: var(--jar-gold);
    color: var(--jar-gold);
    background: rgba(244,168,32,0.08);
}

/* Stats strip */
.fleet-stats-strip {
    background: var(--jar-crimson);
    position: relative; z-index: 2;
}

.fleet-stat-item {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.fleet-stat-item:last-child { border-right: none; }

.fleet-stat-item > i {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.92);
    display: block; margin-bottom: 8px;
}

.fleet-stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 900;
    color: white; line-height: 1;
}

.fleet-stat-lbl {
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Vehicle showcase cards */
.fleet-vehicle-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.fleet-vehicle-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--jar-orange);
}

.fleet-vehicle-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.fleet-vehicle-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-vehicle-card:hover .fleet-vehicle-img img {
    transform: scale(1.06);
}

.fleet-vehicle-count {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--jar-crimson);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 900;
    padding: 6px 16px;
    border-radius: 50px;
    line-height: 1.2;
    z-index: 2;
}

.fleet-vehicle-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.75) 0%, transparent 50%);
    display: flex; align-items: flex-end;
    padding: 16px;
}

.fleet-capacity-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 0.82rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 6px;
}

.fleet-vehicle-body {
    padding: 22px 24px 24px;
}

.fleet-vehicle-body h4 {
    font-weight: 800; color: var(--jar-navy);
    font-size: 1.15rem; margin-bottom: 8px;
}

.fleet-vehicle-body p {
    font-size: 0.88rem; color: var(--jar-gray);
    line-height: 1.75; margin-bottom: 16px;
}

.fleet-spec-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
}

.fleet-spec-chip {
    background: rgba(28,60,138,0.07);
    color: var(--jar-blue);
    border: 1px solid rgba(28,60,138,0.15);
    font-size: 0.74rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.4px;
}

/* Capabilities cards */
.fleet-cap-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: var(--transition);
}

.fleet-cap-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--jar-gold);
    transform: translateY(-3px);
}

.fleet-cap-icon {
    width: 52px; height: 52px;
    background: rgba(200,32,42,0.18);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #FCA5A5;
    margin-bottom: 16px;
}

.fleet-cap-stat {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 10px;
}

.fleet-cap-num {
    font-family: var(--font-heading);
    font-size: 2.2rem; font-weight: 900;
    color: white; line-height: 1;
}

.fleet-cap-unit {
    font-size: 0.85rem; font-weight: 700;
    color: var(--jar-gold);
    text-transform: uppercase; letter-spacing: 0.5px;
}

.fleet-cap-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.75; margin: 0;
}

/* Safety cards */
.fleet-safety-card {
    display: flex; align-items: flex-start; gap: 18px;
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    transition: var(--transition);
}

.fleet-safety-card:hover {
    border-color: var(--jar-orange);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.fleet-safety-icon {
    width: 52px; height: 52px;
    background: rgba(200,32,42,0.09);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--jar-crimson);
    flex-shrink: 0;
}

.fleet-safety-card h6 {
    font-weight: 800; color: var(--jar-navy);
    font-size: 0.95rem; margin-bottom: 6px;
}

.fleet-safety-card p {
    font-size: 0.86rem; color: var(--jar-gray);
    line-height: 1.75; margin: 0;
}

@media (max-width: 768px) {
    .fleet-vehicle-img { height: 210px; }
    .fleet-hero { min-height: 480px; }
}

/* ============================================
   FOUNDATION PAGE
   ============================================ */

/* Hero */
.foundation-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 0;
    overflow: hidden;
}

.foundation-hero-bg {
    position: absolute;
    inset: 0; z-index: 0;
}

.foundation-hero-img-ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0A1628 0%, #1a2e50 50%, #0f2040 100%);
}

.foundation-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}

.foundation-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.20) 100%);
}

.foundation-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,32,42,0.18);
    border: 1px solid rgba(200,32,42,0.4);
    color: #FCA5A5;
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.80rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.6px;
}

/* Impact strip */
.foundation-impact-strip {
    background: var(--jar-crimson);
    margin-top: 60px;
    position: relative; z-index: 2;
}

.foundation-impact-item {
    text-align: center; padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.foundation-impact-item:last-child { border-right: none; }

.foundation-impact-item > i {
    font-size: 1.3rem; color: rgba(255,255,255,0.7);
    display: block; margin-bottom: 6px;
}

.foundation-impact-num {
    font-family: var(--font-heading);
    font-size: 1.7rem; font-weight: 900;
    color: white; line-height: 1;
}

.foundation-impact-lbl {
    font-size: 0.73rem; font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Image placeholders (light background) */
.foundation-img-ph {
    width: 100%;
    border: 2px dashed #CBD5E1;
    border-radius: var(--radius-lg);
    background: white;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; color: #94A3B8;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.4px;
}

.foundation-img-ph i { font-size: 3rem; color: #CBD5E1; }
.foundation-img-ph small { color: #B0BAC7; font-size: 0.68rem; text-transform: none; letter-spacing: 0; }

/* CSR mandate box */
.foundation-csr-box {
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(28,60,138,0.06);
    border: 1px solid rgba(28,60,138,0.15);
    border-left: 4px solid var(--jar-blue);
    border-radius: var(--radius); padding: 18px 20px;
}

.foundation-csr-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(28,60,138,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--jar-blue); font-size: 1.3rem;
}

.foundation-csr-label {
    font-size: 0.78rem; font-weight: 800;
    color: var(--jar-blue);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.foundation-csr-text {
    font-size: 0.86rem; color: var(--jar-gray);
    line-height: 1.75;
}

/* CSR Pillar cards */
.csr-pillar-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.csr-pillar-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.csr-pillar-body { padding: 24px; }

.csr-pillar-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.csr-pillar-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}

.csr-pillar-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.86rem; color: var(--jar-gray); line-height: 1.5;
}

.csr-pillar-list li i { flex-shrink: 0; margin-top: 2px; }

/* Featured project cards */
.foundation-project-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.foundation-project-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--jar-gold);
    transform: translateY(-4px);
}

.foundation-project-img { position: relative; }

.foundation-project-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--jar-crimson);
    color: white; font-size: 0.72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.foundation-project-body { padding: 22px; }

.foundation-project-body h5 {
    color: white; font-weight: 800;
    font-size: 1rem; margin-bottom: 10px;
}

.foundation-project-body p {
    color: rgba(255,255,255,0.62);
    font-size: 0.86rem; line-height: 1.75; margin-bottom: 16px;
}

.foundation-project-link {
    color: var(--jar-gold); text-decoration: none;
    font-size: 0.84rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s ease;
}

.foundation-project-link:hover { gap: 10px; color: var(--jar-gold); }

/* How we work steps */
.foundation-step-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.foundation-step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--jar-orange);
    transform: translateY(-4px);
}

.foundation-step-num {
    position: absolute; top: 18px; right: 18px;
    font-family: var(--font-heading);
    font-size: 2.2rem; font-weight: 900;
    color: rgba(200,32,42,0.08);
    line-height: 1;
}

.foundation-step-icon {
    width: 60px; height: 60px;
    background: rgba(200,32,42,0.09);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--jar-crimson);
    margin: 0 auto 18px;
}

.foundation-step-card h6 {
    font-weight: 800; color: var(--jar-navy);
    font-size: 0.96rem; margin-bottom: 10px;
}

.foundation-step-card p {
    font-size: 0.85rem; color: var(--jar-gray);
    line-height: 1.75; margin: 0;
}

/* CTA section */
.foundation-cta {
    background: linear-gradient(135deg, #0A1628 0%, #1C3C8A 100%);
    padding: 80px 0;
    position: relative; overflow: hidden;
}

.foundation-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(200,32,42,0.12);
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
    background: var(--jar-navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-main h5 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-main h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--jar-orange);
    border-radius: 2px;
}

.footer-main a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.90rem;
    transition: var(--transition);
}

.footer-main a:hover {
    color: var(--jar-gold);
    padding-left: 4px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 10px;
}

.footer-main ul li a::before {
    content: '›  ';
    color: var(--jar-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    margin-top: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: var(--transition);
    padding-left: 0 !important;
}

.footer-social a:hover {
    background: var(--jar-orange);
    color: white;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--jar-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   ALERTS & FLASH MESSAGES
   ============================================ */
.alert-jar-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 4px solid #22C55E;
    color: #15803d;
    border-radius: var(--radius);
    padding: 14px 18px;
}

.alert-jar-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #EF4444;
    color: #b91c1c;
    border-radius: var(--radius);
    padding: 14px 18px;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
body.admin-body {
    background: #F0F2F5;
    font-family: var(--font-body);
}

.admin-sidebar {
    width: 260px;
    background: var(--jar-navy);
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.admin-sidebar-header {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar-header .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.admin-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    line-height: 1.2;
}

.admin-logo-text small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    display: block;
    font-weight: 400;
}

.admin-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.admin-nav-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    padding: 16px 20px 6px;
    font-weight: 700;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.90rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.admin-nav a i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: white;
    background: rgba(232, 80, 10, 0.15);
}

.admin-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--jar-orange);
    border-radius: 0 2px 2px 0;
}

.admin-nav a .badge {
    margin-left: auto;
}

.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    background: white;
    border-bottom: 1px solid #E8ECF0;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.admin-topbar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--jar-navy);
    margin: 0;
}

.admin-main {
    padding: 28px;
    flex: 1;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E8ECF0;
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon.orange {
    background: rgba(232, 80, 10, 0.12);
    color: var(--jar-orange);
}

.stat-icon.blue {
    background: rgba(59, 130, 246, 0.12);
    color: #3B82F6;
}

.stat-icon.green {
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
}

.stat-icon.gold {
    background: rgba(244, 168, 32, 0.12);
    color: var(--jar-gold);
}

.stat-info .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--jar-navy);
    line-height: 1;
}

.stat-info .stat-label {
    color: var(--jar-gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

.admin-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E8ECF0;
    overflow: hidden;
}

.admin-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid #E8ECF0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.admin-card-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jar-navy);
    margin: 0;
}

.admin-card-body {
    padding: 24px;
}

.table-jar th {
    background: #F8F9FA;
    color: var(--jar-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 2px solid #E8ECF0;
}

.table-jar td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.90rem;
    color: #374151;
}

.table-jar tbody tr:hover {
    background: rgba(232, 80, 10, 0.03);
}

.admin-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030;
    width: 50px;
    height: 50px;
    background: var(--jar-orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1019;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 30px 0 150px;
    }

    .hero-video-bg {
        object-position: 30% center;
    }

    .hero-badge {
        font-size: 10px;
        letter-spacing: 0px;
        padding: 5px 16px;
    }

    .hero-visual {
        margin-top: 20px;
        min-height: 120px;
    }

    .hero-float-badge {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .hero-float-badge.badge-1 {
        top: 10px;
        right: 10px;
    }

    .hero-float-badge.badge-2 {
        bottom: 10px;
        left: 10px;
    }

    section {
        padding: 60px 0;
    }

    .topbar .d-none-mobile {
        display: none !important;
    }

    /* Admin responsive */
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.show {
        display: block;
    }

    .admin-content {
        margin-left: 0;
    }

    .admin-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-cta-group {
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-cta-group .btn-jar-primary,
    .hero-cta-group .btn-jar-outline {
        padding: 11px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .admin-main {
        padding: 16px;
    }

    .admin-topbar {
        padding: 12px 16px;
    }

    .cta-band {
        padding: 50px 0;
    }

    .footer-main {
        padding: 50px 0 0;
    }

    /* Stats strips — 2×2 grid on mobile: fix right-border separators */
    .fleet-stat-item,
    .about-stat-item,
    .foundation-impact-item,
    .inner-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    /* Remove bottom border from last row (items 3 & 4) */
    .fleet-stat-item:nth-child(n+3),
    .about-stat-item:nth-child(n+3),
    .foundation-impact-item:nth-child(n+3),
    .inner-stat-item:nth-child(n+3) {
        border-bottom: none;
    }

    /* Add right border to left-column items (odd) */
    .fleet-stat-item:nth-child(odd),
    .about-stat-item:nth-child(odd),
    .foundation-impact-item:nth-child(odd),
    .inner-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.22);
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        gap: 16px;
    }

    .hero-stat .number {
        font-size: 1.6rem;
    }

    .contact-info-card {
        padding: 24px 18px;
    }

    /* director-mini-stats — explicit 3-column grid, all items visible */
    .director-mini-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding-top: 16px;
        margin-top: 20px;
    }

    .director-mini-stat {
        text-align: center;
        padding: 10px 6px;
        border-right: 1px solid #E2E8F0;
    }

    .director-mini-stat:last-child {
        border-right: none;
    }

    .director-mini-stat .stat-n {
        font-size: 1.3rem;
    }

    .director-mini-stat .stat-l {
        font-size: 0.60rem;
        letter-spacing: 0;
        line-height: 1.4;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* whatsapp float button */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to top */
#backToTop {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 998;
    width: 42px;
    height: 42px;
    background: var(--jar-navy);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

#backToTop:hover {
    background: var(--jar-orange);
}

#backToTop.show {
    display: flex;
}

/* ============================================
   GROUP HERO OVERRIDE — Video Background
   ============================================ */
.group-hero {
    background: var(--jar-navy);
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(10 22 40 / 77%) 0%, rgb(10 22 40 / 49%) 40%, rgb(10 22 40 / 15%) 100%);
    z-index: 1;
}

/* .group-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L80,58.7C160,53,320,43,480,42.7C640,43,800,53,960,53.3C1120,53,1280,43,1360,37.3L1440,32L1440,80L1360,80C1280,80,1120,80,960,80C800,80,640,80,480,80C320,80,160,80,80,80L0,80Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    z-index: 1;
} */

/* ============================================
   SECTOR TICKER
   ============================================ */
.sector-ticker {
    background: var(--jar-navy);
    border-top: 3px solid var(--jar-orange);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 13px 0;
    overflow: hidden;
}

.ticker-inner {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    color: rgba(255,255,255,0.78);
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 36px;
}

.ticker-item i {
    color: var(--jar-orange);
    font-size: 0.50rem;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   BUSINESS CARDS
   ============================================ */
.business-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.business-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.business-card.flagship {
    border: 2px solid var(--jar-orange);
}

.business-card.flagship:hover {
    border-color: var(--jar-orange);
}

.business-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.icon-orange { background: rgba(232,80,10,0.12);  color: var(--jar-orange); }
.icon-blue   { background: rgba(59,130,246,0.12);  color: #3B82F6; }
.icon-gold   { background: rgba(244,168,32,0.12);  color: var(--jar-gold); }
.icon-red    { background: rgba(239,68,68,0.12);   color: #EF4444; }
.icon-dark   { background: rgba(13,27,42,0.10);    color: var(--jar-navy); }
.icon-green  { background: rgba(34,197,94,0.12);   color: #22C55E; }
.icon-purple { background: rgba(139,92,246,0.12);  color: #8B5CF6; }

.biz-sector-tag {
    display: inline-block;
    background: #F3F4F6;
    color: var(--jar-gray);
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.business-card.flagship .biz-sector-tag {
    background: rgba(232,80,10,0.10);
    color: var(--jar-orange);
}

.biz-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jar-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.biz-desc {
    color: var(--jar-gray);
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.biz-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
    margin-top: auto;
}

.biz-status-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #16a34a;
}

.biz-status-active i {
    font-size: 0.50rem;
    color: #22C55E;
}

.biz-flagship-badge {
    background: var(--jar-orange);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
}

/* ============================================
   ABOUT GROUP SECTION
   ============================================ */
.about-group-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.group-about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.group-stat-box {
    background: var(--jar-navy);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.group-stat-box:hover {
    background: var(--jar-navy-light);
    transform: translateY(-3px);
}

.group-stat-box i {
    font-size: 2rem;
    color: var(--jar-gold);
    display: block;
    margin-bottom: 12px;
}

.group-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.group-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin-top: 6px;
}

.group-stat-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

/* ============================================
   INDUSTRY ICON (Bootstrap Icons)
   ============================================ */
.industry-bi-icon {
    font-size: 2.6rem;
    color: var(--jar-orange);
    display: block;
    margin-bottom: 14px;
    transition: var(--transition);
}

/* ============================================
   RESPONSIVE — GROUP HERO
   ============================================ */
@media (max-width: 991.98px) {
    .group-hero {
        min-height: auto;
        padding: 80px 0 130px;
    }

    .group-about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .group-stat-box {
        padding: 20px 14px;
    }

    .group-stat-num {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .ticker-item {
        font-size: 0.72rem;
        padding: 0 20px;
        letter-spacing: 1px;
    }

    .business-card {
        padding: 22px 18px;
    }

    .group-about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   ADANI-STYLE BUSINESS IMAGE CARDS
   ============================================ */
.biz-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 320px;
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.biz-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.biz-img-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.biz-img-card:hover .biz-img-photo {
    transform: scale(1.08);
}

/* Subtle dark vignette on real photos */
.biz-img-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
}

/* Gradient fallbacks per sector — shows when no image file found */
.bg-roadlines   { background: linear-gradient(135deg, #0d1b2a 0%, #7c2d0a 50%, #E8500A 100%); }
.bg-forging     { background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 50%, #3B82F6 100%); }
.bg-resources   { background: linear-gradient(135deg, #0d1b2a 0%, #78350f 50%, #F4A820 100%); }
.bg-pragatee    { background: linear-gradient(135deg, #1c0a00 0%, #7c2d0a 50%, #ea580c 100%); }
.bg-exigency    { background: linear-gradient(135deg, #1c0505 0%, #7f1d1d 50%, #EF4444 100%); }
.bg-emergency-i { background: linear-gradient(135deg, #0d0514 0%, #6b21a8 30%, #dc2626 100%); }
.bg-madwarani   { background: linear-gradient(135deg, #050505 0%, #1f2937 50%, #374151 100%); }
.bg-jaes        { background: linear-gradient(135deg, #022c22 0%, #14532d 50%, #22C55E 100%); }
.bg-united      { background: linear-gradient(135deg, #140005 0%, #881337 50%, #e11d48 100%); }
.bg-aransh      { background: linear-gradient(135deg, #0d0521 0%, #4c1d95 50%, #7c3aed 100%); }

/* Sector badge (top-left) */
.biz-sector-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.28);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 13px;
    border-radius: 50px;
}

/* Flagship badge (top-right) */
.biz-flagship-badge-top {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    background: var(--jar-orange);
    color: white;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 11px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(232,80,10,0.5);
}

/* Bottom text overlay */
.biz-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 22px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
}

.biz-img-name {
    font-family: var(--font-heading);
    font-size: 0.97rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1.3;
}

.biz-img-desc {
    font-size: 0.79rem;
    color: rgba(255,255,255,0.70);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.biz-img-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biz-active-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: 0.3px;
}

.biz-active-pill i {
    font-size: 0.42rem;
    animation: biz-pulse 2.2s infinite;
}

@keyframes biz-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.biz-arr-btn {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.88rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.biz-img-card:hover .biz-arr-btn {
    background: var(--jar-orange);
    transform: translate(2px, -2px);
    box-shadow: 0 4px 12px rgba(232,80,10,0.5);
}

/* ============================================
   BUSINESSES SECTION LABEL
   ============================================ */
.biz-count-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    padding: 22px 30px;
    background: #F8F9FA;
    border-radius: var(--radius-lg);
    border: 1px solid #E8ECF0;
}

.biz-count-item {
    text-align: center;
}

.biz-count-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--jar-orange);
    line-height: 1;
    display: block;
}

.biz-count-label {
    font-size: 0.76rem;
    color: var(--jar-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE — IMAGE CARDS
   ============================================ */
@media (max-width: 767.98px) {
    .biz-img-card {
        height: 280px;
    }

    .biz-img-name {
        font-size: 0.90rem;
    }

    .biz-img-desc {
        display: none;
    }
}

/* ============================================
   MEGA MENU
   ============================================ */
.has-megamenu { position: static; }

.megamenu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border-top: 3px solid var(--jar-orange);
    padding: 28px 0 22px;
    z-index: 1029;
}

.megamenu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.megamenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F3F4F6;
}

.megamenu-header h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--jar-navy);
    margin: 0;
}

.megamenu-header a {
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--jar-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.megamenu-header a:hover { color: var(--jar-orange-dark); }

.megamenu-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.megamenu-item:hover {
    background: var(--jar-light);
    transform: translateX(3px);
}

.megamenu-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.megamenu-text .megamenu-name {
    font-family: var(--font-heading);
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--jar-navy);
    line-height: 1.3;
}

.megamenu-text .megamenu-sector {
    font-size: 0.71rem;
    color: var(--jar-gray);
    margin-top: 1px;
}

.megamenu-group-panel {
    background: linear-gradient(135deg, #EEF2FF 0%, #F8F9FA 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(28, 60, 138, 0.12);
    padding: 28px 24px;
}

.mega-chevron {
    transition: transform 0.25s ease;
    font-size: 0.60rem;
    vertical-align: middle;
}

.has-megamenu.mega-open .mega-chevron { transform: rotate(180deg); }

@media (max-width: 991.98px) { .megamenu { display: none !important; } }

/* ============================================
   DIRECTOR SECTION
   ============================================ */
.director-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #EFF3FF 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.director-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 60, 138, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.director-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 32, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.director-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.director-photo-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

.director-photo-badge {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--jar-orange);
    color: white;
    font-size: 0.70rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 7px 20px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(200, 32, 42, 0.35);
}

.director-content { padding-left: 16px; }

.director-quote-mark {
    font-size: 5rem;
    line-height: 0.5;
    color: var(--jar-blue);
    opacity: 0.14;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: -4px;
    user-select: none;
}

.director-quote {
    font-size: 1.08rem;
    font-style: italic;
    color: var(--jar-navy);
    line-height: 1.80;
    border-left: 4px solid var(--jar-orange);
    padding-left: 20px;
    margin-bottom: 24px;
    font-weight: 500;
}

.director-bio {
    color: var(--jar-gray);
    font-size: 0.93rem;
    line-height: 1.80;
    margin-bottom: 28px;
}

.director-divider {
    border: none;
    border-top: 1px solid #E2E8F0;
    margin: 24px 0 22px;
}

.director-name-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.director-avatar-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jar-blue), var(--jar-crimson));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.director-name-text .d-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--jar-navy);
    display: block;
    line-height: 1.3;
}

.director-name-text .d-title {
    font-size: 0.78rem;
    color: var(--jar-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

.director-mini-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.director-mini-stat .stat-n {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--jar-blue);
    line-height: 1;
    display: block;
}

.director-mini-stat .stat-l {
    font-size: 0.75rem;
    color: var(--jar-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 3px;
    display: block;
}

@media (max-width: 991.98px) {
    .director-content { margin-top: 48px; }
    .director-quote { font-size: 0.97rem; }
}

/* ============================================
   INNER PAGE HERO BANNER — Services / Industries / Careers
   ============================================ */

.inner-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    inset: 0; z-index: 0;
}

.inner-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
}

.inner-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right,
        rgba(10,22,40,0.92) 0%,
        rgba(10,22,40,0.65) 55%,
        rgba(10,22,40,0.28) 100%);
}

.inner-hero-eyebrow {
    display: inline-block;
    background: rgba(200,32,42,0.18);
    border: 1px solid rgba(200,32,42,0.4);
    color: #FCA5A5;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.7px;
    margin-bottom: 16px;
}

/* Shared inner page stats strip */
.inner-stats-strip {
    background: var(--jar-navy);
    border-top: 3px solid var(--jar-orange);
}

.inner-stat-item {
    text-align: center;
    padding: 22px 12px;
    border-right: 1px solid rgba(255,255,255,0.10);
}

.inner-stat-item:last-child { border-right: none; }

.inner-stat-num {
    font-family: var(--font-heading);
    font-size: 1.9rem; font-weight: 900;
    color: var(--jar-gold);
    line-height: 1;
}

.inner-stat-lbl {
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.68);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 6px;
}

/* ============================================
   SERVICES PAGE — Process Steps
   ============================================ */

.process-step-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.process-step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--jar-orange);
    transform: translateY(-5px);
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 4rem; font-weight: 900;
    color: rgba(200,32,42,0.08);
    line-height: 1;
    margin-bottom: -8px;
}

.process-step-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--jar-orange), var(--jar-orange-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 15px rgba(200,32,42,0.30);
    transition: var(--transition);
}

.process-step-icon i { font-size: 1.5rem; color: white; }

.process-step-card:hover .process-step-icon {
    transform: scale(1.08);
}

.process-step-card h5 {
    font-weight: 700; color: var(--jar-navy);
    margin-bottom: 10px; font-size: 1.02rem;
}

.process-step-card p {
    font-size: 0.87rem; color: var(--jar-gray); margin: 0; line-height: 1.65;
}

/* ============================================
   INDUSTRIES PAGE — Industry Cards
   ============================================ */

.industry-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--jar-orange), var(--jar-gold));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.industry-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.industry-card:hover::after { transform: scaleY(1); }

.industry-icon-box {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(200,32,42,0.12), rgba(200,32,42,0.04));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.industry-icon-box i {
    font-size: 1.6rem; color: var(--jar-orange);
    transition: var(--transition);
}

.industry-card:hover .industry-icon-box { background: var(--jar-orange); }
.industry-card:hover .industry-icon-box i { color: white; }

.industry-card h4 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--jar-navy); margin-bottom: 12px;
}

.industry-card > p {
    color: var(--jar-gray); font-size: 0.90rem;
    line-height: 1.8; margin-bottom: 18px;
}

.industry-clients-tag {
    background: #F8F9FA;
    border-radius: var(--radius);
    padding: 12px 14px;
}

.industry-clients-tag .tag-label {
    font-size: 0.70rem; font-weight: 700;
    color: var(--jar-orange); text-transform: uppercase;
    letter-spacing: 0.9px; display: block; margin-bottom: 4px;
}

.industry-clients-tag .tag-value {
    font-size: 0.83rem; color: var(--jar-gray); line-height: 1.5;
}

/* ============================================
   CAREERS PAGE — Benefit Cards
   ============================================ */

.career-benefit-card {
    background: white;
    border: 1px solid #E8ECF0;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.career-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--jar-orange), var(--jar-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.career-benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.career-benefit-card:hover::before { transform: scaleX(1); }

.career-benefit-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(200,32,42,0.10), rgba(200,32,42,0.04));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.career-benefit-icon i {
    font-size: 1.8rem; color: var(--jar-orange);
    transition: var(--transition);
}

.career-benefit-card:hover .career-benefit-icon { background: var(--jar-orange); }
.career-benefit-card:hover .career-benefit-icon i { color: white; }

.career-benefit-card h6 {
    font-size: 1rem; font-weight: 700;
    color: var(--jar-navy); margin-bottom: 8px;
}

.career-benefit-card p {
    font-size: 0.86rem; color: var(--jar-gray);
    margin: 0; line-height: 1.65;
}

.career-no-jobs {
    text-align: center;
    padding: 80px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px dashed #E8ECF0;
}

.career-no-jobs-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(200,32,42,0.08), rgba(200,32,42,0.03));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.career-no-jobs-icon i { font-size: 2.2rem; color: var(--jar-orange); }

/* Responsive */
@media (max-width: 768px) {
    .inner-hero { min-height: 360px; }
    .inner-stat-num { font-size: 1.5rem; }
    .inner-stat-item { padding: 16px 8px; }
    .industry-card { padding: 28px 22px; }
}

/* ============================================
   AOS — prevent layout shift before init
   ============================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   Primary audience: 99% mobile traffic
   Breakpoints: 991px (tablet), 767px (mobile), 575px (small)
   ============================================================ */

/* ---- Navbar toggler button (mobile hamburger) ---- */
.navbar-toggler {
    width: 44px;
    height: 44px;
    min-height: 44px;
    border: none !important;
    border-radius: 8px !important;
    background: var(--jar-orange) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
}

.navbar-toggler:focus { box-shadow: none !important; }

/* ---- Topbar hidden on mobile — handled in HTML already ---- */

@media (max-width: 991.98px) {

    /* === NAVBAR === */
    .navbar-main { padding: 10px 0; }
    .navbar-brand-logo img { height: 40px !important; }

    /* === GROUP HERO (Home) === */
    .group-hero {
        min-height: auto;
        padding: 70px 0 100px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    }

    .hero-subtitle { font-size: 0.90rem !important; }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px !important;
    }

    .hero-cta-group .btn-jar-primary,
    .hero-cta-group .btn-jar-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px !important;
        font-size: 0.92rem !important;
    }

    /* === HOME — BIZ COUNT STRIP === */
    .biz-count-strip {
        gap: 20px;
        padding: 18px 20px;
        margin-bottom: 36px;
    }

    .biz-count-num { font-size: 1.6rem; }

    /* === HOME — GROUP STATS === */
    .group-about-stats-grid { gap: 12px; }
    .group-stat-box { padding: 18px 12px; }
    .group-stat-num { font-size: 1.7rem; }

    /* === SECTION PADDING === */
    section { padding: 56px 0; }

    .director-section { padding: 60px 0; }
    .cta-band { padding: 50px 0; }

    /* === INNER HERO (Services/Industries/Careers/Fleet) === */
    .inner-hero { min-height: 400px; }

    .inner-hero .container .col-lg-7 { padding-top: 60px !important; padding-bottom: 40px !important; }

    .inner-hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    }

    .inner-hero p { font-size: 0.90rem !important; }

    .inner-hero .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 12px !important;
    }

    .inner-hero .btn-jar-primary,
    .inner-hero a[style*="border:2px"] {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 50px;
    }

    /* === INNER STATS STRIP — 2-col on tablets === */
    .inner-stats-strip .row.g-0 .col-6 { flex: 0 0 50%; max-width: 50%; }
    .inner-stat-num { font-size: 1.7rem; }
    .inner-stat-item { padding: 18px 10px; }

    /* === FLEET HERO === */
    .fleet-hero { min-height: 440px; }

    .fleet-stats-strip .col-6 { flex: 0 0 50%; max-width: 50%; }
    .fleet-stat-num { font-size: 1.5rem; }
    .fleet-stat-item { padding: 16px 10px; }
    .fleet-stat-item > i { font-size: 1.5rem; }

    /* === ABOUT HERO === */
    .about-hero { padding: 70px 0 0; }
    .about-hero-img-wrap { height: 260px; }

    /* About stats already use col-6 col-md-3 — 2-col on mobile auto */
    .about-stat-item { border-right: 1px solid rgba(255,255,255,0.22); }
    .about-stats-strip .col-6:nth-child(even) .about-stat-item { border-right: none; }
    .about-stats-strip .col-6:nth-child(1) .about-stat-item,
    .about-stats-strip .col-6:nth-child(2) .about-stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    /* === FOUNDATION HERO === */
    .foundation-hero { min-height: 440px; padding: 80px 0 0; }
    /* Foundation impact — col-6 col-md-3 pattern, 2-col on mobile */
    .foundation-impact-item { border-right: 1px solid rgba(255,255,255,0.22); }
    .foundation-impact-strip .col-6:nth-child(even) .foundation-impact-item { border-right: none; }
    .foundation-impact-strip .col-6:nth-child(1) .foundation-impact-item,
    .foundation-impact-strip .col-6:nth-child(2) .foundation-impact-item {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    /* === DIRECTOR SECTION === */
    .director-content { margin-top: 40px; }
    .director-quote { font-size: 0.95rem; }
    .director-mini-stats { gap: 20px; }

    /* === SERVICE CARDS ===  */
    .service-card { padding: 28px 20px; }

    /* === PROCESS STEPS === */
    .process-step-card { padding: 28px 20px 22px; }
    .process-step-num { font-size: 3rem; }

    /* === INDUSTRY CARDS === */
    .industry-card { padding: 28px 22px; }

    /* === CAREER BENEFIT CARDS === */
    .career-benefit-card { padding: 26px 20px; }

    /* === FOOTER === */
    .footer-main { padding: 50px 0 0; }

    /* Reduce contact info card padding */
    .contact-info-card { padding: 28px 22px; }

    /* === CTA BAND TEXT CENTERING === */
    .cta-band .text-lg-end { text-align: center !important; }
    .cta-band .btn-jar-white { margin: 0 auto; }

    /* === WHATSAPP FLOAT === */
    .wa-float { bottom: 20px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
    #backToTop { bottom: 78px; right: 16px; }
}

@media (max-width: 767.98px) {

    /* === NAVBAR === */
    .navbar-brand-logo img { height: 36px !important; }

    /* === HOME HERO === */
    .group-hero { padding: 60px 0 80px; }

    /* === HOME — BIZ COUNT STRIP === */
    .biz-count-strip { gap: 16px; padding: 14px 16px; justify-content: space-around; }
    .biz-count-num { font-size: 1.4rem; }
    .biz-count-label { font-size: 0.68rem; }

    /* === SECTION PADDING === */
    section { padding: 48px 0; }
    .director-section { padding: 48px 0; }

    /* === SECTION HEADER === */
    .section-title { font-size: 1.6rem !important; }
    .section-subtitle { font-size: 0.88rem; }

    /* === INNER HERO === */
    .inner-hero { min-height: 360px; }
    .inner-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important; }
    .inner-hero-eyebrow { font-size: 0.70rem; padding: 4px 14px; }
    .inner-hero p { font-size: 0.86rem !important; max-width: 100% !important; }

    /* === INNER STATS — 2 col on mobile === */
    .inner-stat-num { font-size: 1.5rem; }
    .inner-stat-lbl { font-size: 0.65rem; }
    .inner-stat-item { padding: 15px 8px; }

    /* === FLEET HERO === */
    .fleet-hero { min-height: 380px; }
    .fleet-stat-num { font-size: 1.35rem; }
    .fleet-stat-lbl { font-size: 0.62rem; }
    .fleet-vehicle-img { height: 220px; }

    /* === ABOUT === */
    .about-hero { padding: 60px 0 0; }
    .about-stats-strip { margin-top: 40px; }
    .about-stat-num { font-size: 1.6rem; }

    .about-story-img-wrap { margin-bottom: 30px; }
    .about-story-badge {
        bottom: -14px; left: 50%;
        transform: translateX(-50%);
    }

    .vm-card { padding: 30px 22px; }

    /* === DIRECTOR === */
    .director-quote-mark { font-size: 3.5rem; }
    .director-quote { font-size: 0.90rem; padding-left: 14px; }
    .director-mini-stats { gap: 16px; }
    .director-mini-stat .stat-n { font-size: 1.5rem; }

    /* === HOME BUSINESSES SECTION === */
    .biz-img-card { height: 260px; }
    .biz-img-desc { display: none; }
    .biz-img-name { font-size: 0.88rem; }

    /* === SERVICES === */
    .service-card { padding: 24px 18px; }
    .service-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .service-card h4 { font-size: 1rem; }

    /* === PROCESS STEPS — stack 2-col === */
    .process-step-card { padding: 24px 16px 20px; }

    /* === INDUSTRY CARDS — full width === */
    .industry-card { padding: 24px 18px; }
    .industry-card h4 { font-size: 1rem; }
    .industry-icon-box { width: 48px; height: 48px; }
    .industry-icon-box i { font-size: 1.35rem; }

    /* === CAREERS === */
    .career-benefit-card { padding: 22px 16px; }
    .career-benefit-icon { width: 58px; height: 58px; }
    .career-benefit-icon i { font-size: 1.5rem; }

    /* === JOB CARD — stack buttons === */
    .job-card { padding: 20px 16px; }
    .job-card .flex-md-row { flex-direction: column !important; }
    .job-card .flex-shrink-0 { flex-shrink: 1 !important; }
    .job-card .btn-jar-primary { width: 100%; justify-content: center; }

    /* === FOUNDATION === */
    .foundation-hero { min-height: 380px; padding: 70px 0 0; }
    .foundation-impact-num { font-size: 1.4rem; }
    .csr-pillar-body { padding: 18px; }
    .foundation-project-body { padding: 16px; }
    .foundation-step-card { padding: 22px 18px; }

    /* === ABOUT — GROUP CARDS === */
    .group-company-card { padding: 14px; gap: 10px; }

    /* === CONTACT FORM === */
    .contact-info-card { padding: 24px 16px; }

    /* === FOOTER === */
    .footer-main h5 { font-size: 0.95rem; margin-bottom: 14px; }
    .footer-main ul li { margin-bottom: 8px; }
    .footer-bottom { text-align: center; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 8px; }

    /* === CTA BAND === */
    .cta-band h2 { font-size: 1.5rem !important; text-align: center; }
    .cta-band p { text-align: center; }
    .cta-band .col-lg-4 { text-align: center !important; }
    .cta-band .btn-jar-white { display: inline-flex; }

    /* === INDUSTRIES — Why Choose Us dark section === */
    .col-lg-7 .col-md-6 > div[style*="background:rgba"] { padding: 18px !important; }

    /* === WHY CARDS === */
    .why-card { padding: 22px 18px; }

    /* === TIMELINE === */
    .timeline-item { padding-left: 44px; }
    .timeline-dot { left: 6px; width: 22px; height: 22px; font-size: 0.68rem; }
    .timeline-item::before { left: 16px; }
}

@media (max-width: 575.98px) {

    /* === EXTRA SMALL PHONES === */

    /* Navbar */
    .navbar-brand-logo img { height: 32px !important; }

    /* Hero */
    .group-hero { padding: 50px 0 40px; }
    .hero-title { font-size: 1.65rem !important; line-height: 1.2 !important; }
    .hero-badge { font-size: 0.65rem !important; padding: 4px 12px !important; }

    /* Sections */
    section { padding: 30px 0; }

    /* Section headers */
    .section-title { font-size: 1.4rem !important; }
    .section-header { margin-bottom: 36px; }

    /* Inner hero */
    .inner-hero { min-height: 320px; }
    .inner-hero h1 { font-size: 1.5rem !important; }
    .inner-hero .container .col-lg-7 { padding-top: 50px !important; padding-bottom: 30px !important; }

    /* Stats strips — very small */
    .inner-stat-num { font-size: 1.35rem; }
    .fleet-stat-num { font-size: 1.25rem; }
    .fleet-stat-item { padding: 12px 6px; }

    /* About stats */
    .about-stat-num { font-size: 1.4rem; }
    .about-stat-item { padding: 16px 8px; }

    /* Business cards — make images shorter */
    .biz-img-card { height: 230px; }

    /* Biz count strip — 2×2 grid on xs phones (all 4 items visible) */
    .biz-count-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        overflow-x: visible;
    }
    .biz-count-item {
        padding: 16px 10px;
        border-right: 1px solid #E8ECF0;
        border-bottom: 1px solid #E8ECF0;
        flex-shrink: unset;
    }
    .biz-count-item:nth-child(2n)       { border-right: none; }
    .biz-count-item:nth-last-child(-n+2) { border-bottom: none; }

    /* Career/industry full width at xs */
    .career-benefit-card { text-align: left; }
    .career-benefit-icon { margin: 0 0 14px; }

    /* Director section */
    .director-photo-badge { font-size: 0.62rem; padding: 6px 14px; }
    .director-avatar-ring { width: 44px; height: 44px; font-size: 1.1rem; }

    /* Job card modal — make full height */
    .modal-dialog { margin: 0; min-height: 100vh; }
    .modal-content { border-radius: 0 !important; min-height: 100vh; }
    .modal-header { padding: 16px 20px !important; }
    .modal-body { padding: 20px !important; }

    /* Footer */
    .footer-main { padding: 40px 0 0; }
    .footer-contact-item { font-size: 0.84rem; }
    .footer-social a { width: 34px; height: 34px; }

    /* WhatsApp */
    .wa-float { bottom: 16px; right: 14px; width: 46px; height: 46px; font-size: 1.2rem; }
    #backToTop { bottom: 72px; right: 14px; width: 38px; height: 38px; }

    /* CTA Band */
    .cta-band { padding: 40px 0; }

    /* About mini stats */
    .about-mini-stat { padding: 14px; gap: 12px; }
    .about-mini-num { font-size: 1.3rem; }
}
