/* =====================================================
   KuBariTrans — Main Stylesheet
   Palette: Deep Navy #0B1C2E | Slate Grey #4A5568 | White #FFFFFF
   Accent: Purple/Violet from logo #7B4FBF | Electric Blue #3B82F6
   ===================================================== */

:root {
  --navy:        #0B1C2E;
  --navy-mid:    #112236;
  --navy-light:  #1A3352;
  --slate:       #4A5568;
  --slate-light: #718096;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --purple:      #7B4FBF;
  --purple-light:#9B6FDF;
  --blue-accent: #3B82F6;
  --gold:        #F59E0B;
  --red:         #EF4444;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.35);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.12);
}

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ─── Utility ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  margin-top: 14px;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,79,191,0.4);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,28,46,0.35);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
  .reveal { transform: translateY(20px); transition-duration: 0.5s; }
  .reveal-delay-1, .reveal-delay-2,
  .reveal-delay-3, .reveal-delay-4 { transition-delay: 0s; }
}

/* ─── Navigation ───────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

#navbar.scrolled {
  background: rgba(11,28,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 12px 0;
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-tel {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.nav-tel span { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(123,79,191,0.18);
  border-color: rgba(123,79,191,0.45);
}

.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Middle bar shortens slightly at rest for visual interest */
.hamburger span:nth-child(2) { width: 14px; }

.hamburger:hover span { width: 18px; }

/* Hide hamburger when drawer is open — drawer has its own × button */
.hamburger.open { opacity: 0; pointer-events: none; }

/* ─── Hero ─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060e18 0%, #0B1C2E 45%, #1a1040 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(123,79,191,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(59,130,246,0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay-img {
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 58%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 80%, transparent 100%);
  opacity: 0.28;
}

#hero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,79,191,0.15);
  border: 1px solid rgba(123,79,191,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  display: block;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}

.hero-stat {}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--purple-light);
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.4);
  animation: bounce-down 1.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ─── Trust Bar ─────────────────────────────────────── */
#trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
}

.trust-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-item svg {
  width: 22px; height: 22px;
  color: var(--purple-light);
  flex-shrink: 0;
}

.trust-item-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

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

/* ─── About Section ─────────────────────────────────── */
#about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%;
  height: 52%;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(123,79,191,0.4);
  z-index: 2;
}

.about-badge-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content {}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--purple);
  transition: var(--transition);
}

.about-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.about-highlight-icon {
  width: 40px; height: 40px;
  background: rgba(123,79,191,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
}

.about-highlight-icon svg { width: 20px; height: 20px; }

.about-highlight-text {}

.about-highlight-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-highlight-desc {
  font-size: 0.78rem;
  color: var(--slate);
}

/* ─── Services ──────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  padding: 48px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(123,79,191,0.3);
}

.service-card-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  opacity: 0.6;
  margin-bottom: 20px;
}

.service-icon {
  width: 56px; height: 56px;
  background: rgba(123,79,191,0.15);
  border: 1px solid rgba(123,79,191,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--purple-light);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(123,79,191,0.25);
  border-color: rgba(123,79,191,0.5);
}

.service-icon svg { width: 26px; height: 26px; }

.service-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
}

.service-card:hover .service-tag {
  color: var(--purple-light);
  border-color: rgba(123,79,191,0.3);
  background: rgba(123,79,191,0.08);
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  border-color: var(--purple);
  color: var(--purple-light);
  background: rgba(123,79,191,0.15);
  transform: rotate(-45deg);
}

.service-arrow svg { width: 16px; height: 16px; }

/* ─── Industries ─────────────────────────────────────── */
#industries {
  padding: 100px 0;
  background: var(--off-white);
}

.industries-header { text-align: center; margin-bottom: 60px; }
.industries-header .section-subtitle { margin: 14px auto 0; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(123,79,191,0.2);
}

.industry-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(123,79,191,0.1), rgba(59,130,246,0.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--purple);
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, rgba(123,79,191,0.2), rgba(59,130,246,0.2));
}

.industry-icon svg { width: 36px; height: 36px; }

.industry-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.industry-desc {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ─── Fleet ──────────────────────────────────────────── */
#fleet {
  padding: 100px 0;
  background: var(--white);
}

.fleet-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.fleet-tech-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fleet-tech-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fleet-tech-badge svg { width: 16px; height: 16px; color: var(--purple-light); }

.fleet-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fleet-stat-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--purple);
}

.fleet-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.fleet-stat-num span { color: var(--purple); }

.fleet-stat-card--wide { grid-column: 1 / -1; }

.fleet-stat-label {
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fleet-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.fleet-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 260px;
}

.fleet-gallery-item:hover img { transform: scale(1.05); }


/* ─── Compliance ─────────────────────────────────────── */
#compliance {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a1040 100%);
  overflow: hidden;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.compliance-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: var(--transition);
}

.compliance-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(123,79,191,0.35);
}

.compliance-card-icon {
  width: 48px; height: 48px;
  background: rgba(123,79,191,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}

.compliance-card-icon svg { width: 24px; height: 24px; }

.compliance-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.compliance-card-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.compliance-visual {
  text-align: center;
}

.bbee-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #4a1a8a);
  box-shadow: 0 0 80px rgba(123,79,191,0.4);
  margin: 0 auto 32px;
  position: relative;
}

.bbee-badge::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), transparent, var(--blue-accent));
  z-index: -1;
  opacity: 0.5;
}

.bbee-level {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.bbee-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.bbee-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.compliance-certs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.compliance-cert {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
}

.compliance-cert-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.compliance-cert-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

/* ─── Testimonials / Why Us ─────────────────────────── */
#why-us {
  padding: 100px 0;
  background: var(--off-white);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::after { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.why-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(123,79,191,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.why-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-text {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── Contact ─────────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(123,79,191,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.contact-info-value a { color: var(--purple); }
.contact-info-value a:hover { text-decoration: underline; }

.contact-people {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 8px;
}

.contact-person-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--blue-accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.contact-person-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-person-role {
  font-size: 0.78rem;
  color: var(--slate);
}

.contact-person-wa a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
}
.contact-person-wa a:hover { text-decoration: underline; }
.wa-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #25D366;
}

/* Quote Form */
.quote-form-wrap {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}

.quote-form-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.quote-form-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group select option { background: var(--navy); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: rgba(123,79,191,0.08);
  box-shadow: 0 0 0 3px rgba(123,79,191,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group.full { grid-column: span 2; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.5;
}

.form-success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

.form-error a { color: #fca5a5; text-decoration: underline; }

/* Spinner for loading state */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin { animation: spin 0.8s linear infinite; }

/* ─── Footer ──────────────────────────────────────────── */
#footer {
  background: #060d18;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img { height: 44px; width: auto; }

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

.footer-social svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy strong { color: rgba(255,255,255,0.55); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--purple);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
  border: none;
  box-shadow: 0 4px 20px rgba(123,79,191,0.4);
}

#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--purple-light); transform: translateY(-3px); }
#back-to-top svg { width: 18px; height: 18px; }

/* ─── Mobile Nav Drawer ─────────────────────────────── */

/* Backdrop dimmer */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1001;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.mobile-nav-backdrop.open { opacity: 1; }

/* Drawer panel */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--navy);
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 1002;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1), visibility 0.36s ease;
  overflow-y: auto;
}

/* Purple accent line at top */
.mobile-nav::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue-accent));
  flex-shrink: 0;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

/* Drawer header — logo + close */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.mobile-nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.mobile-nav-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(123,79,191,0.2); border-color: rgba(123,79,191,0.4); color: var(--white); }
.mobile-nav-close svg { width: 16px; height: 16px; }

/* Nav links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--purple);
}

.mobile-nav-links a svg {
  width: 16px; height: 16px;
  color: var(--purple-light);
  flex-shrink: 0;
}

/* Divider */
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 24px;
}

/* CTA section */
.mobile-nav-cta {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
}

/* Contact info footer */
.mobile-nav-footer {
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-nav-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.mobile-nav-contact-item svg {
  width: 14px; height: 14px;
  color: var(--purple-light);
  flex-shrink: 0;
}

.mobile-nav-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.mobile-nav-contact-item a:hover { color: var(--white); }

/* ─── Responsive ─────────────────────────────────────── */

/* ── Tablet landscape / small desktop (≤1100px) ── */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

/* ── Tablet portrait (≤1024px) ── */
@media (max-width: 1024px) {
  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 380px; }
  .about-img-main { width: 72%; height: 82%; }
  .about-img-secondary { width: 52%; height: 48%; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Fleet */
  .fleet-header { grid-template-columns: 1fr; gap: 36px; }
  .fleet-gallery { grid-template-columns: repeat(3, 1fr); }

  /* Compliance */
  .compliance-grid { grid-template-columns: 1fr; gap: 56px; }
  .compliance-visual { order: -1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Tablet small / large phone (≤768px) ── */
@media (max-width: 768px) {
  /* Global section spacing */
  #about, #services, #industries, #fleet, #compliance, #why-us, #contact {
    padding: 64px 0;
  }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  #navbar { padding: 14px 0; }
  #navbar.scrolled { padding: 10px 0; }
  .nav-logo img { height: 42px; }
  .nav-logo-text span:first-child { font-size: 1.2rem; }

  /* Hero */
  .hero-overlay-img { width: 100%; opacity: 0.12; left: 0; right: 0;
    mask-image: none; -webkit-mask-image: none; }
  #hero .container { padding-top: 96px; padding-bottom: 60px; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; margin-bottom: 16px; letter-spacing: 0.06em; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 2rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* About */
  .about-img-stack { height: 300px; }
  .about-badge { padding: 14px 18px; }
  .about-badge-num { font-size: 2.2rem; }
  .about-highlights { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .service-card { padding: 36px 28px; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .industry-card { padding: 28px 20px; }

  /* Fleet */
  .fleet-gallery { grid-template-columns: repeat(2, 1fr); }
  .fleet-gallery-item img { min-height: 180px; }
  .fleet-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fleet-tech-badges { gap: 8px; }
  .fleet-tech-badge { font-size: 0.75rem; padding: 8px 14px; }

  /* Compliance */
  .compliance-card { padding: 20px; gap: 14px; }
  .bbee-badge { width: 180px; height: 180px; }
  .bbee-level { font-size: 3.2rem; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 30px 24px; }

  /* Contact */
  .quote-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group.full { grid-column: span 1; }
  .contact-people { flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Trust bar */
  .trust-item { padding: 14px 28px; }
}

/* ── Phone portrait (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero-title { font-size: 2.8rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-stats { gap: 16px 20px; flex-wrap: wrap; justify-content: space-between; }
  .hero-stat { min-width: 40%; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.72rem; }
  .hero-badge { font-size: 0.68rem; }

  /* About image stack — simplify to single image */
  .about-img-stack { height: 260px; }
  .about-img-secondary, .about-badge { display: none; }
  .about-img-main { position: absolute; inset: 0; width: 100%; height: 100%; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr; gap: 12px; }
  .industry-card { padding: 24px 18px; flex-direction: row;
    display: flex; align-items: center; gap: 16px; text-align: left; }
  .industry-icon { width: 52px; height: 52px; flex-shrink: 0; margin: 0; }

  /* Fleet */
  .fleet-gallery { grid-template-columns: repeat(2, 1fr); }
  .fleet-gallery-item img { min-height: 160px; }
  .fleet-stats { grid-template-columns: 1fr 1fr; }

  /* Services */
  .service-card { padding: 28px 20px; }
  .service-arrow { display: none; }

  /* Compliance */
  .compliance-certs { gap: 10px; }
  .compliance-cert { min-width: 90px; padding: 10px 14px; }

  /* Quote form */
  .quote-form-wrap { padding: 24px 16px; border-radius: 10px; }
  .quote-form-title { font-size: 1.4rem; }

  /* Why Us */
  .why-num { font-size: 2.8rem; }

  /* Back to top */
  #back-to-top { bottom: 20px; right: 16px; }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 1.8rem; }
  .nav-logo-text { display: none; }
  .hero-stats { flex-direction: column; gap: 12px; border-top: none; padding-top: 20px; }
}

/* ── Fleet gallery lightbox trigger ── */
.fleet-gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.fleet-gallery-item img {
  transition: transform 0.35s ease, filter 0.35s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}
.fleet-gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.fleet-gallery-zoom svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.fleet-gallery-item:hover .fleet-gallery-zoom {
  opacity: 1;
}

/* ── Lightbox overlay ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  animation: lb-fade-in 0.2s ease;
}
#lightbox[hidden] { display: none; }
@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#lightbox-img-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  min-width: 0;
}
#lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  object-fit: contain;
  animation: lb-img-in 0.2s ease;
}
@keyframes lb-img-in {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
#lightbox-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80vw;
}
#lightbox-close,
#lightbox-prev,
#lightbox-next {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: #fff;
}
#lightbox-close,
#lightbox-prev,
#lightbox-next {
  color: #fff;
}
#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
#lightbox-close svg,
#lightbox-prev svg,
#lightbox-next svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
#lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
@media (max-width: 480px) {
  #lightbox-prev,
  #lightbox-next { display: none; }
  #lightbox-caption { font-size: 0.75rem; }
}
