/* =============================================
   TritonHub – Main Stylesheet
   Vehicle Import & Export Platform
   ============================================= */

/* ── CSS Variables ─────────────────────────── */
:root {
  /* ── Logo palette: charcoal #3d4966 · blue #1b5ea6 ── */
  --primary:        #1e3a6e;   /* rich navy — lifted from near-black */
  --secondary:      #2a5298;   /* medium logo blue                   */
  --accent:         #1b5ea6;   /* logo blue (unchanged)              */
  --accent-hover:   #2472c8;
  --accent-dark:    #14498a;
  --white:          #ffffff;
  --light:          #eef4fb;   /* clean blue-white, lighter than before */
  --dark:           #0f1e35;   /* deep navy — no longer near-black   */
  --text-dark:      #1e2a3a;
  --text-medium:    #4a5568;
  --text-light:     #718096;
  --border:         rgba(27,94,166,.16);
  --shadow:         0 8px 32px rgba(0,0,0,.10);
  --shadow-accent:  0 8px 32px rgba(27,94,166,.22);
  --shadow-dark:    0 20px 60px rgba(15,30,53,.45);
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     all .35s ease;
  --font-heading:   'Poppins', sans-serif;
  --font-body:      'Inter', sans-serif;
}

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Section Labels ────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27,94,166,.08);
  border: 1px solid var(--border);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-title span { color: var(--accent); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
}

/* ── Buttons ───────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--accent);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--accent);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,94,166,.4);
}

/* ── Preloader ─────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 2rem;
}
.preloader-logo span { color: var(--accent); }

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  overflow: hidden;
}
.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 50px;
  animation: preload 1.8s ease forwards;
}

@keyframes preload {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ── Navbar ────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(30,52,88,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

/* Logo image in navbar */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-logo-img {
  display: block;
  height: 108px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.40))
          drop-shadow(0 0 14px rgba(255, 210, 80, 0.25));
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.65))
          drop-shadow(0 0 22px rgba(255, 210, 80, 0.40));
  transform: scale(1.03);
}

/* Footer logo */
.footer-logo-img {
  display: block;
  height: 165px;
  width: auto;
  object-fit: contain;
  margin-bottom: .25rem;
}

/* Text logo fallback */
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -.02em;
}
.nav-brand span { color: var(--accent); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 50px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  background: rgba(15,30,53,.97) !important;
  border: 1px solid rgba(27,94,166,.2) !important;
  border-radius: var(--radius) !important;
  padding: .75rem !important;
  backdrop-filter: blur(20px);
  min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4) !important;
}
.dropdown-item {
  color: rgba(255,255,255,.8) !important;
  border-radius: 8px !important;
  padding: .6rem 1rem !important;
  font-size: .88rem;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(27,94,166,.15) !important;
  color: var(--accent) !important;
}
.dropdown-item i {
  width: 20px;
  color: var(--accent);
  margin-right: .5rem;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.3) !important;
  padding: .4rem .6rem !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── Hero Section ──────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transition: transform 0.1s ease-out;
}

@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0px, 0px); }
  33%  { transform: scale(1.12) translate(-1%, 0.5%); }
  66%  { transform: scale(1.1)  translate(1%, -0.5%); }
  100% { transform: scale(1.15) translate(0px, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,20,40,.82) 0%, rgba(20,45,90,.70) 50%, rgba(10,20,40,.78) 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,94,166,.18) 0%, transparent 65%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,94,166,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,94,166,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(27,94,166,.15);
  border: 1px solid rgba(27,94,166,.4);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .7; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp .9s ease .2s both;
}
.hero-title .highlight {
  color: var(--white);
  position: relative;
}
.hero-title .hub-text {
  color: var(--accent);
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.hero-title .highlight.typed::after {
  transform: scaleX(1);
}


.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeInUp .9s ease .4s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .6s both;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .9s ease .8s both;
}
.hero-stat-item { text-align: left; flex: 1 1 120px; min-width: 0; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
  letter-spacing: .05em;
}
/* Text-based stat items (non-numeric) */
.hero-stat-text {
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease .3s both;
}

.hero-fc-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  width: max-content;
  margin: 0 0 .95rem auto;
}

/* ── Live Inventory Card ── */
.hero-card-main {
  background: rgba(10,18,42,.75);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.07);
}
/* Rainbow category bar */
.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #3b82f6, #22c55e, #8b5cf6, #f59e0b, #14b8a6);
}

/* Card header */
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .4rem;
}
.hch-left {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hch-pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.hch-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid #4ade80;
  border-radius: 50%;
  animation: pulseRing 1.6s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}
.hch-title {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hch-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.22);
  color: #4ade80;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 50px;
}
.hch-sub {
  font-size: .71rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.1rem;
  letter-spacing: .03em;
}

/* Category grid */
.hero-vehicles-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.1rem;
}
.hv-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 2px solid var(--hvc, var(--accent));
  border-radius: 9px;
  padding: .6rem .7rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: var(--transition);
  cursor: default;
}
.hv-item:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--hvc, var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.hv-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.hv-text .hv-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.hv-text .hv-brand {
  font-size: .66rem;
  color: rgba(255,255,255,.42);
  margin-top: .12rem;
  line-height: 1.3;
}

/* Card footer */
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.07);
  gap: .5rem;
  flex-wrap: wrap;
}
.hcf-countries {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  color: rgba(255,255,255,.5);
}
.hcf-countries i   { color: var(--accent); font-size: .82rem; }
.hcf-countries strong { color: #fff; }

@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.floating-cards {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.fc-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .6rem .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: floatCard 4s ease infinite;
}
.fc-item:nth-child(2) { animation-delay: .5s; }
.fc-item:nth-child(3) { animation-delay: 1s; }
.fc-item i { color: var(--accent); }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Stats Banner ──────────────────────────── */
#stats-bar {
  background: var(--primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,166,.05) 0%, transparent 50%);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-card:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-suffix { font-size: 2rem; }
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: .5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.stat-icon {
  font-size: 1.5rem;
  color: rgba(27,94,166,.4);
  margin-bottom: .5rem;
}

/* ── About Section ─────────────────────────── */
#about { background: var(--light); }

.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.about-image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, rgba(27,94,166,.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  gap: 1rem;
}
.about-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  opacity: .7;
}

.about-badge-floating {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  min-width: 200px;
}
.abf-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.abf-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.abf-label { font-size: .75rem; color: var(--text-medium); }

.about-features { margin-top: 2rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.af-icon {
  width: 44px; height: 44px;
  background: rgba(27,94,166,.1);
  border: 1px solid rgba(27,94,166,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.af-text h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .25rem;
}
.af-text p {
  font-size: .88rem;
  color: var(--text-medium);
  margin: 0;
}

/* ── Services Section ──────────────────────── */
#services { background: var(--white); }

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border-color: rgba(27,94,166,.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: var(--primary);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.service-link:hover { gap: .75rem; }

/* ── Vehicles Section ──────────────────────── */
#vehicles { background: var(--light); }

.vehicles-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.v-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(0,0,0,.1);
  background: var(--white);
  color: var(--text-medium);
  font-family: var(--font-heading);
}
.v-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.v-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent) !important;
  box-shadow: 0 4px 15px rgba(30,58,110,.3);
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.vehicle-card.hidden { display: none; }

.vehicle-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.7);
  position: relative;
  overflow: hidden;
}
.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.vehicle-img .v-icon { position: relative; z-index: 1; }

.vehicle-category-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  z-index: 2;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
}

.featured-badge {
  position: absolute;
  top: .75rem; right: .75rem;
  z-index: 2;
  background: var(--accent);
  color: var(--primary);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.vehicle-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vehicle-brand {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.vehicle-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.vehicle-desc {
  font-size: .85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.vehicle-price {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.vehicle-price span { color: var(--accent); }

.vehicle-actions { display: flex; gap: .5rem; }
.vehicle-actions .btn-gold { flex: 1; justify-content: center; font-size: .82rem; padding: .6rem 1rem; }
.btn-detail {
  width: 38px; height: 38px;
  background: var(--light);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.btn-detail:hover { background: var(--primary); color: var(--white); }

/* ── Brands Section ────────────────────────── */
#brands {
  background: #f8f9fc;
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.brands-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.brands-marquee {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
  width: max-content;
  padding: .5rem 0;
}
.brands-marquee.reverse { animation-direction: reverse; animation-duration: 34s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brands-marquee:hover { animation-play-state: paused; }

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  padding: 1rem 1.75rem;
  width: 170px;
  height: 80px;
  flex-shrink: 0;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.brand-logo-item img {
  max-width: 130px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s ease;
  display: block;
}
.brand-logo-item:hover {
  border-color: rgba(30,58,110,.2);
  box-shadow: 0 6px 24px rgba(30,58,110,.1);
  transform: translateY(-3px);
}
.brand-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ── Service Image Block ────────────────────── */
.svc-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-dark);
}
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.svc-img-wrap:hover .svc-img {
  transform: scale(1.04);
}
.svc-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .55rem 1.1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
}
.svc-img-badge i { color: var(--accent); font-size: .9rem; }

/* ── Agriculture Highlight ──────────────────── */
#agri-highlight { background: #f8f9fc; }

.agri-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.agri-brand-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  transition: var(--transition);
}
.agri-brand-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(30,58,110,.1);
  transform: translateY(-2px);
}
.agri-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: .2rem;
}
.agri-brand-desc {
  font-size: .8rem;
  color: var(--text-medium);
  margin-bottom: .4rem;
}
.agri-brand-spec {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
}
.agri-brand-spec i { margin-right: .25rem; }
@media (max-width: 480px) {
  .agri-brands-grid { grid-template-columns: 1fr; }
}

/* ── Global Export Solutions Section ────────── */
#global-solutions {
  background: linear-gradient(160deg, #0a1628 0%, #0f2347 45%, #1b3d6e 100%);
  position: relative;
  overflow: hidden;
}
#global-solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 90% 10%, rgba(27,94,166,.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%,  rgba(27,94,166,.18) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Intro block ── */
.gvs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 991px) { .gvs-intro-grid { grid-template-columns: 1fr; gap: 2rem; } }

.gvs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(27,94,166,.3);
  border: 1px solid rgba(255,255,255,.15);
  color: #93c5fd;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.gvs-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .85rem;
}
.gvs-title span { color: #60a5fa; }
.gvs-subtitle {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Category chips */
.gvs-cat-chips {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem;
}
.gvs-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: .4rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.gvs-chip:hover {
  background: rgba(27,94,166,.4);
  border-color: rgba(96,165,250,.4);
  color: #fff;
}
.gvs-chip i { font-size: .8rem; color: #60a5fa; }

/* Brand pills */
.gvs-brand-strip {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.gvs-brand-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: .25rem .7rem;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
}

/* Right side: why cards */
.gvs-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
@media (max-width: 575px) { .gvs-why-cards { grid-template-columns: 1fr; } }

.gvs-why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex; align-items: flex-start; gap: .75rem;
  transition: var(--transition);
}
.gvs-why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(96,165,250,.3);
  transform: translateY(-3px);
}
.gvs-why-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.gvs-why-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  color: #e2e8f0;
  margin-bottom: .2rem;
}
.gvs-why-body {
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Divider */
.gvs-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 0 0 3rem;
}

/* ── SUV section header ── */
.gvs-suv-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gvs-suv-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.gvs-suv-title span { color: #60a5fa; }
.gvs-suv-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}

/* ── SUV cards ── */
.gvs-suv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1199px) { .gvs-suv-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 767px)  { .gvs-suv-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .gvs-suv-grid { grid-template-columns: 1fr; } }

.gvs-suv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.gvs-suv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.gvs-suv-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(96,165,250,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.gvs-suv-card:hover::after { transform: scaleX(1); }
.gvs-suv-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(96,165,250,.15);
  line-height: 1;
  margin-bottom: .5rem;
}
.gvs-suv-icon {
  font-size: 1.3rem;
  color: #60a5fa;
  margin-bottom: .5rem;
}
.gvs-suv-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  margin-bottom: .3rem;
}
.gvs-suv-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}

/* ── Demand drivers strip ── */
.gvs-demand-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
@media (max-width: 991px) { .gvs-demand-strip { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .gvs-demand-strip { grid-template-columns: 1fr; } }

.gvs-demand-card {
  background: rgba(27,94,166,.2);
  border: 1px solid rgba(96,165,250,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.gvs-demand-card:hover {
  background: rgba(27,94,166,.35);
  transform: translateY(-3px);
}
.gvs-demand-ico {
  font-size: 1.5rem;
  color: #60a5fa;
  margin-bottom: .65rem;
}
.gvs-demand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  color: #e2e8f0;
  margin-bottom: .3rem;
}
.gvs-demand-text {
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* ── Agri Brand Full Cards ───────────────────── */
.agri-brand-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1199px) { .agri-brand-cards-row { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 767px)  { .agri-brand-cards-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .agri-brand-cards-row { grid-template-columns: 1fr; } }

.agri-brand-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.agri-brand-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-accent);
  border-color: transparent;
}
.abfc-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}
.abfc-header {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.abfc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.abfc-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: .25rem;
}
.abfc-tagline {
  font-size: .72rem;
  color: var(--text-light);
  line-height: 1.4;
}
.abfc-points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.abfc-points li {
  font-size: .76rem;
  color: var(--text-medium);
  display: flex; align-items: flex-start; gap: .4rem;
  line-height: 1.45;
}
.abfc-points li i {
  font-size: .65rem;
  margin-top: .22rem;
  flex-shrink: 0;
}

/* ── Agri Why Grid ───────────────────────────── */
.agri-why-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.agri-why-label i { color: var(--accent); }

.agri-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
@media (max-width: 575px) { .agri-why-grid { grid-template-columns: 1fr; } }

.agri-why-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex; align-items: flex-start; gap: .75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.agri-why-card:hover { box-shadow: var(--shadow); }
.agri-why-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.agri-why-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  color: var(--primary);
  margin-bottom: .2rem;
}
.agri-why-text {
  font-size: .75rem;
  color: var(--text-medium);
  line-height: 1.55;
}

/* ── Agri Outlook Card ───────────────────────── */
.agri-outlook-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: #fff;
  flex: 1;
}
.agri-outlook-icon {
  font-size: 1.6rem;
  color: var(--accent-hover);
  margin-bottom: .75rem;
}
.agri-outlook-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #fff;
}
.agri-outlook-text {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0;
}

/* ── JCB / Construction Equipment Section ────── */
#jcb-highlight {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#jcb-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(27,94,166,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,193,7,.08) 0%, transparent 60%);
  pointer-events: none;
}
#jcb-highlight .jcb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.3);
  color: #ffc107;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
#jcb-highlight .jcb-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: .75rem;
}
#jcb-highlight .jcb-title span { color: #ffc107; }
#jcb-highlight .jcb-desc {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Machine cards grid */
.jcb-machines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) { .jcb-machines-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .jcb-machines-grid { grid-template-columns: 1fr; } }

.jcb-machine-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.jcb-machine-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #ff8f00);
  opacity: 0;
  transition: opacity .3s;
}
.jcb-machine-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,193,7,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.jcb-machine-card:hover::before { opacity: 1; }

.jcb-machine-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,193,7,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
  font-size: 1.1rem;
  color: #ffc107;
}
.jcb-machine-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin-bottom: .35rem;
}
.jcb-machine-tag {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .75rem;
}
.jcb-machine-points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.jcb-machine-points li {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  display: flex; align-items: flex-start; gap: .45rem;
}
.jcb-machine-points li::before {
  content: '›';
  color: #ffc107;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* Why-global strip */
.jcb-why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 991px) { .jcb-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .jcb-why-grid { grid-template-columns: 1fr; } }

.jcb-why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  display: flex; align-items: flex-start; gap: .75rem;
}
.jcb-why-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(27,94,166,.25);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  font-size: .9rem;
}
.jcb-why-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  margin-bottom: .2rem;
}
.jcb-why-text {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Outlook banner */
.jcb-outlook {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(27,94,166,.2) 0%, rgba(255,193,7,.08) 100%);
  border: 1px solid rgba(255,193,7,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.jcb-outlook-icon {
  font-size: 2rem; color: #ffc107; flex-shrink: 0;
}
.jcb-outlook-title {
  font-family: var(--font-heading);
  font-weight: 700; font-size: .92rem; color: #fff;
  margin-bottom: .25rem;
}
.jcb-outlook-text {
  font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6;
}

/* ── Key Markets ────────────────────────────── */
#key-markets { background: var(--white); }

.market-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  background: var(--light);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  padding: 1.25rem .75rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.market-card:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(30,58,110,.1);
  transform: translateY(-3px);
}
.market-flag { font-size: 2rem; line-height: 1; }
.market-name { font-family: var(--font-heading); font-weight: 700; font-size: .85rem; color: var(--primary); }
.market-region { font-size: .72rem; color: var(--text-light); }

/* ── Why Choose Us ─────────────────────────── */
#why-us {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #3366b8 100%);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b5ea6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#why-us .section-title { color: var(--white); }
#why-us .section-desc { color: rgba(255,255,255,.7); }
#why-us .section-label { background: rgba(27,94,166,.2); border-color: rgba(27,94,166,.3); }

.why-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.why-card:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-6px);
}
.why-card:hover::before { opacity: 1; }

.why-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.15);
  line-height: 1;
  margin-bottom: .5rem;
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(27,94,166,.15);
  border: 1px solid rgba(27,94,166,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.why-card h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.why-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}

/* ── How It Works ──────────────────────────── */
#how-it-works { background: var(--light); }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 3rem; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 0;
}
@media(max-width:768px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(30,58,110,.15);
}
.process-step:hover .process-step-num {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.1);
}
.process-step-icon {
  width: 40px; height: 40px;
  background: rgba(27,94,166,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin: 0 auto .75rem;
}
.process-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .83rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ── Testimonials ──────────────────────────── */
#testimonials { background: var(--white); }

.testimonial-card {
  background: var(--light);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 2rem;
  font-size: 6rem;
  color: rgba(27,94,166,.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars { color: var(--accent); font-size: .9rem; margin-bottom: 1rem; }

.testimonial-text {
  font-size: .95rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
}
.author-role { font-size: .8rem; color: var(--text-light); }
.author-country { font-size: .78rem; color: var(--accent); font-weight: 600; }

/* ── Blog Section ──────────────────────────── */
#blog { background: var(--light); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.blog-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.5);
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img img,
.blog-card:hover .blog-img-placeholder { transform: scale(1.05); }

.blog-category-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.blog-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.blog-meta i { color: var(--accent); }
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: .75rem;
  flex: 1;
  transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt {
  font-size: .85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.blog-read-more {
  color: var(--accent);
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.blog-read-more:hover { gap: .8rem; }

/* ── CTA Banner ────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, #1e3a6e 0%, #1b5ea6 45%, #2472c8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.cta-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #ffffff;
  color: var(--accent) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: .95rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-cta-dark:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: .95rem 2.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-cta-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

/* ── Contact Section ───────────────────────── */
#contact { background: var(--primary); }
#contact .section-title { color: var(--white); }
#contact .section-desc { color: rgba(255,255,255,.65); }
#contact .section-label { background: rgba(27,94,166,.2); border-color: rgba(27,94,166,.3); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.ci-icon {
  width: 52px; height: 52px;
  background: rgba(27,94,166,.15);
  border: 1px solid rgba(27,94,166,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-text label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.ci-text p, .ci-text a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  margin: 0;
}
.ci-text a:hover { color: var(--accent); }

.social-links { display: flex; gap: .75rem; margin-top: 2rem; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  padding: .8rem 1.1rem !important;
  font-size: .9rem;
  transition: var(--transition);
}
.contact-form-wrap .form-control::placeholder { color: rgba(255,255,255,.4) !important; }
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: rgba(27,94,166,.5) !important;
  box-shadow: 0 0 0 3px rgba(27,94,166,.1) !important;
  background: rgba(255,255,255,.12) !important;
}
.contact-form-wrap label {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.contact-form-wrap .form-select option { background: var(--primary); color: var(--white); }

/* ── Footer ────────────────────────────────── */
#footer {
  background: linear-gradient(180deg, #1a3155 0%, #112240 100%);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand span { color: var(--accent); }

.footer-about {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}
.footer-links a i {
  font-size: .6rem;
  color: var(--accent);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: .5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: .2rem;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 60px;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.footer-bottom span { color: var(--accent); }

/* ── Floating Buttons ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: waFloat 3s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
  color: var(--white);
}
@keyframes waFloat {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 8px 35px rgba(37,211,102,.7); }
}

.back-to-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--primary);
  border: 1px solid rgba(27,94,166,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ── Alert messages ────────────────────────── */
.alert-success-custom {
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.3);
  color: #4ade80;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 500;
}
.alert-error-custom {
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.3);
  color: #f87171;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 500;
}

/* ── Scroll Animations ─────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Inner Page Banner ─────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 45%, var(--secondary) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,94,166,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,94,166,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: .75rem;
  position: relative;
}
.page-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  position: relative;
}
.breadcrumb-custom { display: flex; align-items: center; gap: .5rem; margin-top: .75rem; }
.breadcrumb-custom a { color: var(--accent); font-size: .85rem; }
.breadcrumb-custom span { color: rgba(255,255,255,.4); font-size: .85rem; }

/* ── About Page Image (height via CSS so media queries can override) */
.about-image-main img { display: block; height: 450px; object-fit: cover; width: 100%; }

/* ── Vehicle Detail Image Box ──────────────── */
.vd-img-box {
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}
.vd-img-box img { max-height: 300px; object-fit: contain; }

/* ── Post / Blog Article ───────────────────── */
.post-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — all breakpoints
   ══════════════════════════════════════════════ */

/* ── Tablet landscape / small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .hero-title { font-size: clamp(2.2rem, 5vw, 4rem); }
  .floating-cards { right: -10px; }
}

/* ── Tablet portrait (≤991px) */
@media (max-width: 991.98px) {
  .section { padding: 70px 0; }
  #navbar { padding: 1rem 0; }

  /* hero */
  #hero { padding-top: 96px; }
  .hero-visual { margin-top: 2.5rem; }
  .floating-cards { display: none; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .hero-desc { font-size: 1rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2rem; }
  .hero-stat-number { font-size: 1.7rem; }
  .hero-stat-text    { font-size: 1.3rem; }

  /* about */
  .about-image-main img { height: 360px; }
  .about-badge-floating { right: 0; }

  /* inner pages */
  .vd-img-box   { height: 320px; }
  .svc-img-wrap { height: 270px; }

  /* process */
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-timeline::before { display: none; }

  /* stats bar */
  .stat-number { font-size: 2.4rem; }

  /* cta */
  #cta-banner { padding: 60px 0; }
  .cta-content h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
}

/* ── Mobile landscape / large phone (≤767px) */
@media (max-width: 767.98px) {
  .section { padding: 55px 0; }
  .section-sm { padding: 40px 0; }

  /* navbar */
  #navbar { padding: .75rem 0; }
  .nav-logo-img { height: 58px; max-width: 190px; }
  .navbar-collapse {
    background: rgba(10,20,40,.97);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1rem 1.25rem 1.5rem;
    margin-top: .5rem;
    border-top: 1px solid rgba(27,94,166,.2);
  }
  .navbar-nav .nav-link { padding: .65rem .5rem !important; }
  .dropdown-menu { position: static !important; box-shadow: none !important; margin-top: .25rem !important; }

  /* hero */
  #hero { min-height: 100svh; padding-top: 82px; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); margin-bottom: 1.25rem; }
  .hero-desc { font-size: .95rem; margin-bottom: 1.75rem; max-width: 100%; }
  .hero-badge { font-size: .7rem; padding: .4rem .9rem; }
  .hero-btns { flex-direction: column; gap: .75rem; }
  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom { width: 100%; justify-content: center; }
  .hero-stats { display: flex; gap: .75rem; margin-top: 1.75rem; padding-top: 1.5rem; }
  .hero-stat-number { font-size: 1.35rem; }
  .hero-stat-text    { font-size: 1rem; }
  .hero-stat-label { font-size: .66rem; }
  .hero-visual { margin-top: 2rem; }
  .hero-card-main { padding: 1.1rem 1rem 1rem; }
  .hero-vehicles-preview { gap: .45rem; }
  .hv-item { padding: .5rem .55rem; gap: .5rem; }
  .hv-text .hv-name { font-size: .71rem; }
  .hv-text .hv-brand { font-size: .61rem; }
  .hch-title { font-size: .75rem; }
  .hch-sub   { font-size: .65rem; margin-bottom: .85rem; }

  /* stats bar */
  .stat-card { padding: 1.25rem .75rem; }
  .stat-number { font-size: 2rem; }
  .stat-card::after { display: none; }

  /* about */
  .about-image-main img { height: 240px; }
  .about-badge-floating { right: 0; bottom: -1rem; }

  /* inner pages */
  .vd-img-box   { height: 260px; }
  .svc-img-wrap { height: 210px; }
  .post-article { padding: 1.75rem 1.25rem; }

  /* services */
  .service-card { padding: 1.75rem 1.25rem; }

  /* vehicles tabs — horizontal scroll */
  .vehicles-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
  }
  .vehicles-tabs::-webkit-scrollbar { display: none; }
  .v-tab { white-space: nowrap; flex-shrink: 0; font-size: .78rem; padding: .45rem .9rem; }

  /* vehicle cards */
  .vehicle-body { padding: 1rem; }
  .vehicle-name { font-size: .95rem; }
  .vehicle-desc { font-size: .8rem; }

  /* process */
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-step-num { width: 52px; height: 52px; font-size: 1.1rem; }

  /* testimonials */
  .testimonial-card { padding: 1.75rem 1.25rem; }

  /* blog */
  .blog-body { padding: 1.25rem; }

  /* cta */
  #cta-banner { padding: 50px 0; }
  .cta-content h2 { font-size: 1.6rem; margin-bottom: .5rem; }
  .btn-cta-dark, .btn-cta-outline {
    padding: .75rem 1.5rem;
    font-size: .9rem;
    width: 100%;
    justify-content: center;
    margin-bottom: .5rem;
  }

  /* contact */
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .ci-icon { width: 42px; height: 42px; font-size: 1rem; }

  /* footer */
  #footer { padding: 50px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; margin-top: 40px; }

  /* floaters */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; font-size: 1.3rem; }
  .back-to-top { bottom: 1.25rem; left: 1.25rem; }

  /* page banner */
  .page-banner { padding: 110px 0 55px; }
}

/* ── Small phones (≤480px) */
@media (max-width: 480px) {
  .section { padding: 45px 0; }
  .nav-logo-img { height: 50px; max-width: 170px; }

  /* hero */
  .hero-title { font-size: clamp(1.65rem, 9vw, 2.2rem); }
  .hero-stats { gap: .5rem; margin-top: 1.25rem; padding-top: 1.25rem; }
  .hero-stat-number { font-size: 1.1rem; }
  .hero-stat-text    { font-size: .85rem; }
  .hero-stat-label   { font-size: .6rem; }

  /* process — single column on tiny screens */
  .process-timeline { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  /* stats bar — 2 col */
  #stats-bar .col-6 { flex: 0 0 50%; max-width: 50%; }
  .stat-number { font-size: 1.7rem; }

  /* vehicle cards full width */
  .vehicle-card-wrap { flex: 0 0 100%; max-width: 100%; }

  /* section title */
  .section-title { font-size: 1.5rem; }

  /* contact wrap */
  .contact-form-wrap { padding: 1.25rem 1rem; }

  /* footer */
  .footer-brand { font-size: 1.5rem; }

  /* inner pages */
  .vd-img-box   { height: 220px; }
  .svc-img-wrap { height: 175px; }
  .post-article { padding: 1.25rem 1rem; }
}

/* ── Extra small (≤360px) */
@media (max-width: 360px) {
  .nav-logo-img { height: 44px; max-width: 145px; }
  .hero-title { font-size: 1.5rem; }
  .hero-badge { font-size: .65rem; padding: .35rem .75rem; }
  .btn-primary-custom, .btn-outline-custom { font-size: .85rem; padding: .75rem 1.5rem; }
  .hero-vehicles-preview { grid-template-columns: 1fr; }

  /* inner pages */
  .vd-img-box   { height: 185px; }
  .post-article { padding: 1rem .85rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – New Sections
   (Global Solutions · Agri · JCB · Hero FC)
   ══════════════════════════════════════════════ */

/* ── Tablet landscape (≤1199px) ── */
@media (max-width: 1199.98px) {
  .gvs-title     { font-size: 1.85rem; }
  .jcb-title     { font-size: 1.75rem; }
}

/* ── Tablet portrait (≤991px) ── */
@media (max-width: 991.98px) {
  /* Hide absolute-positioned hero info badges on tablet/mobile */
  .hero-fc-items { display: none !important; }

  /* Section title scaling */
  .gvs-title     { font-size: 1.65rem; }
  .gvs-suv-title { font-size: 1.45rem; }
  .jcb-title     { font-size: 1.6rem; }

  /* JCB outlook: stack vertically, full-width button */
  .jcb-outlook   { flex-direction: column; align-items: flex-start; }
  .jcb-outlook .btn-primary-custom {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }

  /* Footer logo */
  .footer-logo-img { height: 110px; }

  /* Section spacing */
  .gvs-intro-grid { margin-bottom: 2.5rem; }
}

/* ── Mobile landscape / large phone (≤767px) ── */
@media (max-width: 767.98px) {
  /* Section title scaling */
  .gvs-title       { font-size: 1.45rem; }
  .gvs-suv-title   { font-size: 1.2rem; }
  .jcb-title       { font-size: 1.4rem; }
  .jcb-desc        { font-size: .88rem !important; }

  /* Spacing adjustments */
  .gvs-intro-grid  { margin-bottom: 1.75rem; }
  .gvs-divider     { margin-bottom: 1.75rem; }
  .gvs-suv-header  { margin-bottom: 1.5rem; }

  /* Footer logo */
  .footer-logo-img { height: 85px; }

  /* Card padding tightening */
  .agri-brand-full-card { padding: 1rem .85rem .85rem; }
  .jcb-machine-card     { padding: 1rem .9rem; }

  /* GVS SUV grid gap */
  .gvs-suv-grid    { gap: .75rem; }

  /* Buttons in CTA sections full-width on mobile */
  .jcb-outlook .btn-primary-custom,
  #cta-banner .btn-cta-dark,
  #cta-banner .btn-cta-outline { width: 100%; justify-content: center; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  /* Title scaling */
  .gvs-title       { font-size: 1.3rem; }
  .gvs-suv-title   { font-size: 1.05rem; }
  .jcb-title       { font-size: 1.2rem; }

  /* Chips — smaller padding */
  .gvs-chip        { font-size: .71rem; padding: .3rem .65rem; }
  .gvs-cat-chips   { gap: .35rem; }

  /* Grid gaps */
  .jcb-machines-grid    { gap: .75rem; }
  .agri-brand-cards-row { gap: .75rem; }
  .gvs-demand-strip     { gap: .75rem; }

  /* Footer logo */
  .footer-logo-img { height: 72px; }

  /* JCB/GVS section header — tighten spacing */
  .gvs-suv-header  { margin-bottom: 1.25rem; }
  .jcb-outlook     { padding: 1rem; }
  .jcb-outlook-icon { font-size: 1.6rem; }

  /* Agri brand cards — compact on tiny screens */
  .abfc-name       { font-size: .85rem; }
  .abfc-tagline    { font-size: .68rem; }
}

/* ── Extra small (≤360px) ── */
@media (max-width: 360px) {
  .gvs-title     { font-size: 1.15rem; }
  .jcb-title     { font-size: 1.1rem; }
  .gvs-suv-title { font-size: .95rem; }
  .gvs-chip      { font-size: .67rem; padding: .28rem .55rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Global Overflow & Layout Fixes
   ══════════════════════════════════════════════ */

/* Long email / URL text wrapping */
.footer-contact-item a,
.ci-text a,
.footer-contact-item span { word-break: break-word; overflow-wrap: anywhere; }

/* Ensure all sections respect viewport width */
.section, section { max-width: 100vw; overflow-x: hidden; }

/* ── Tablet (≤991px) ── */
@media (max-width: 991.98px) {
  /* Scale down nav logo on tablet */
  .nav-logo-img { height: 80px; max-width: 210px; }

  /* About image placeholder height */
  .about-image-placeholder { height: 280px; font-size: 3.5rem; }

  /* Footer logo */
  .footer-logo-img { height: 120px; }

  /* Ensure service page alternating rows stack image first on mobile */
  .row.flex-row-reverse > [class*="col-lg"] { order: 0 !important; }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767.98px) {
  /* Hero stats — 3 items in a row, wrap if needed */
  .hero-stats { gap: .6rem; }
  .hero-stat-item { flex: 1 1 80px; }

  /* About image placeholder */
  .about-image-placeholder { height: 220px; font-size: 2.8rem; }

  /* Footer logo */
  .footer-logo-img { height: 95px; }

  /* Inventory search — button full width below input */
  .inventory-search-form .btn-primary-custom { width: 100%; justify-content: center; }

  /* Ensure page-banner text doesn't overflow */
  .page-banner h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-banner p  { font-size: .9rem; }

  /* Service cards full-width list item text */
  .service-card h4 { font-size: 1rem; }

  /* Contact form full-width selects */
  .contact-form-wrap .form-control,
  .contact-form-wrap .form-select { font-size: .9rem; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  /* Hero stats — 2 per row */
  .hero-stat-item { flex: 1 1 calc(50% - .3rem); }

  /* Tighten section titles */
  .section-title { font-size: 1.35rem; line-height: 1.3; }

  /* About page stat boxes — full width on tiny screens */
  .about-story-stats .col-6 { flex: 0 0 100%; max-width: 100%; }

  /* Services page image minimum height */
  .svc-img-wrap { height: 200px !important; }

  /* Footer */
  .footer-logo-img { height: 80px; }

  /* Buttons — full width */
  .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }

  /* CTA buttons stack */
  .cta-buttons { flex-direction: column; gap: .5rem; }

  /* Breadcrumb overflow */
  .breadcrumb-custom { flex-wrap: wrap; }
}

/* ── Extra small (≤360px) ── */
@media (max-width: 360px) {
  /* Hero stat single column */
  .hero-stat-item { flex: 0 0 100%; }

  /* Page banner */
  .page-banner { padding: 95px 0 45px; }
  .page-banner h1 { font-size: 1.4rem; }

  /* Footer quick links */
  .footer-links a { font-size: .8rem; }

  /* Footer contact */
  .footer-contact-item { gap: .5rem; }
  .footer-contact-item i { font-size: .9rem; }

  /* Nav logo */
  .nav-logo-img { height: 40px; max-width: 130px; }
}
