/* ============================================================
   MTS BUS COACHES – Main Stylesheet
   Colors from Logo: Royal Blue #1565C0, Cobalt Blue #2196F3, Deep Navy #0D1A2D, Gold #E8A207
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap");

/* === CSS VARIABLES === */
:root {
  /* Royal Blue – mechanic overalls & bus body in logo */
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --blue-light: #2196f3;
  --blue-pale: #e3f2fd;

  /* Deep Navy – gear/cog outline in logo */
  --navy: #0d1a2d;
  --navy-mid: #112240;
  --navy-light: #1a3460;

  /* Gold/Amber – "BUS COACHS" ribbon in logo */
  --gold: #e8a207;
  --gold-dark: #c07d00;
  --gold-light: #ffb827;

  --white: #ffffff;
  --off-white: #f0f7ff;
  --light: #e3f2fd;
  --light-gray: #e0e8f5;
  --mid-gray: #6b7fa3;
  --body-text: #243860;
  --dark-text: #0d1a2d;

  --grad-blue: linear-gradient(135deg, #0d1a2d 0%, #112240 50%, #1a3460 100%);
  --grad-gold: linear-gradient(135deg, #e8a207 0%, #ffb827 100%);
  --grad-hero: linear-gradient(
    135deg,
    rgba(13, 26, 45, 0.97) 0%,
    rgba(17, 34, 64, 0.93) 55%,
    rgba(21, 101, 192, 0.28) 100%
  );

  --shadow-sm: 0 2px 12px rgba(13, 26, 45, 0.1);
  --shadow-md: 0 8px 30px rgba(13, 26, 45, 0.16);
  --shadow-lg: 0 20px 60px rgba(13, 26, 45, 0.24);
  --shadow-blue: 0 8px 30px rgba(21, 101, 192, 0.38);
  --shadow-gold: 0 6px 24px rgba(232, 162, 7, 0.48);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-anchor: none; /* Prevent browser auto-scroll when dropdowns open */
  width: 100%;
  max-width: 100%;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  color: var(--dark-text);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.3px;
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
p {
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

/* === UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 96px 0;
  overflow-x: hidden;
}
.section-pad-sm {
  padding: 60px 0;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-blue {
  color: var(--blue);
}
.text-white {
  color: var(--white) !important;
}

/* === SECTION TAG / LABEL === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
}

.section-title {
  margin-bottom: 12px;
  position: relative;
}
.section-subtitle {
  color: var(--body-text);
  font-size: 1.05rem;
  /* max-width: 580px; */
  /* margin: 0 auto 56px; */
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(245, 166, 35, 0.6);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(30, 86, 212, 0.5);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ============================================
   NAVBAR — Premium Redesign
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 92px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: linear-gradient(
    135deg,
    rgba(13, 26, 45, 0.82) 0%,
    rgba(17, 34, 64, 0.78) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 162, 7, 0.15);
  box-shadow: 0 4px 32px rgba(13, 26, 45, 0.28);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    height 0.35s ease;
  overflow: visible;
}
.navbar.scrolled {
  background: linear-gradient(
    135deg,
    rgba(13, 26, 45, 0.97) 0%,
    rgba(17, 34, 64, 0.96) 100%
  );
  box-shadow: 0 6px 40px rgba(13, 26, 45, 0.55);
  border-bottom-color: rgba(232, 162, 7, 0.3);
  height: 90px;
}
.navbar.solid {
  background: var(--navy);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 3px 12px rgba(232, 162, 7, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 162, 7, 0.5);
}
.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
  text-align: center;
}

/* ── Nav Links (desktop) ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
  display: inline-block;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.28s ease;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(232, 162, 7, 0.08);
}
.nav-link:hover::after {
  width: calc(100% - 28px);
}
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  width: calc(100% - 28px);
}

/* Get a Quote CTA button */
.nav-cta {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  background: var(--grad-gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  margin-left: 10px;
  box-shadow: 0 4px 18px rgba(232, 162, 7, 0.42);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease !important;
  white-space: nowrap;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(232, 162, 7, 0.6) !important;
  background: linear-gradient(135deg, #ffb827, #e8a207) !important;
  color: var(--navy) !important;
}

/* ── Desktop Dropdown ── */
.nav-dropdown {
  position: relative;
  overflow: visible;
}

.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-chevron {
  font-size: 0.7rem;
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gold);
  margin-top: 1px;
}
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown-menu {
  margin-top: -10px;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 460px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 28px 70px rgba(13, 26, 45, 0.24),
    0 0 0 1px rgba(21, 101, 192, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.24s;
  z-index: 2000;
  overflow: hidden;
  height: auto;
  max-height: 80vh;
  will-change:
    opacity, transform; /* GPU layer — no layout shift, no scroll trigger */
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Upward triangle tip */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.07));
}

/* Panel header */
.dropdown-header {
  background: linear-gradient(135deg, #0d1a2d 0%, #1a3460 100%);
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 22px;
}

/* 2-col grid */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(21, 101, 192, 0.05);
  padding: 8px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 13px;
  background: #fff;
  transition:
    background 0.22s ease,
    transform 0.2s ease;
  cursor: pointer;
}
.dropdown-item:hover {
  background: #ebf4ff;
  transform: translateX(2px);
}
.dropdown-item:hover .di-text strong {
  color: var(--blue);
}

.di-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 10px;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}
.dropdown-item:hover .di-icon {
  background: var(--blue);
  transform: scale(1.1) rotate(-4deg);
}
.di-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.di-text strong {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.2;
  transition: color 0.2s ease;
}
.di-text small {
  font-size: 0.71rem;
  color: var(--mid-gray);
  font-weight: 400;
  line-height: 1.3;
}

/* Panel footer */
.dropdown-footer {
  border-top: 1px solid rgba(21, 101, 192, 0.1);
  padding: 12px 22px;
  text-align: right;
  background: #f5f9ff;
}
.dropdown-footer-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition:
    gap 0.22s ease,
    color 0.22s ease;
}
.dropdown-footer-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  z-index: 1001;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.hamburger:hover {
  background: rgba(232, 162, 7, 0.15);
  border-color: rgba(232, 162, 7, 0.4);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.25s ease;
}
.hamburger.open span {
  background: var(--gold);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: linear-gradient(160deg, #0d1a2d 0%, #112240 100%);
  padding: 16px 20px 24px;
  z-index: 999;
  transform: translateY(-106%);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

/* Mobile links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    padding-left 0.22s ease;
}
.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(232, 162, 7, 0.07);
  padding-left: 18px;
}

/* Mobile CTA */
.mobile-nav-cta {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: var(--grad-gold);
  color: var(--navy) !important;
  padding: 15px;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(232, 162, 7, 0.4);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 162, 7, 0.55);
}

/* Mobile Products accordion */
.mobile-nav-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-products-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: 10px;
  transition:
    color 0.22s ease,
    background 0.22s ease;
}
.mobile-products-toggle:hover,
.mobile-products-toggle.open {
  color: var(--gold);
  background: rgba(232, 162, 7, 0.07);
}
.mobile-toggle-chevron {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.mobile-products-toggle.open .mobile-toggle-chevron {
  transform: rotate(180deg);
}

/* Mobile accordion panel */
.mobile-products-dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin: 0 4px 4px;
}
.mobile-products-dropdown.open {
  max-height: 450px;
  opacity: 1;
}

/* Mobile sub-links */
.mobile-nav-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    padding-left 0.2s ease;
}
.mobile-nav-sub:hover,
.mobile-nav-sub:active {
  color: var(--gold);
  padding-left: 22px;
  background: rgba(232, 162, 7, 0.07);
}
.mobile-nav-sub:last-child {
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-blue);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

/* Diagonal stripe decoration */
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(245, 166, 35, 0.06) 50%,
    rgba(30, 86, 212, 0.12) 100%
  );
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.12;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.12;
  }
  90% {
    opacity: 0.07;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ── Hero: 2-column layout ── */
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
  max-width: 100%;
}

/* ── Bus Visual (right side) ── */
.hero-bus-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  padding-top: 80px;
  margin-left: -60px;
  overflow: visible;
}

/* Glowing blob behind the bus */
.hero-bus-glow {
  position: absolute;
  width: 620px;
  height: 320px;
  background: radial-gradient(
    ellipse,
    rgba(245, 166, 35, 0.28) 0%,
    rgba(30, 86, 212, 0.18) 50%,
    transparent 75%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  animation: glowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

/* The bus image */
.hero-bus-img {
  width: 135%;
  max-width: 130%;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 32px 64px rgba(30, 86, 212, 0.4));

  /* Slide in from right on page load */
  animation:
    busSlideIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both,
    busFloat 5s ease-in-out 1.5s infinite;
}

@keyframes busSlideIn {
  from {
    opacity: 0;
    transform: translateX(140px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Gentle floating loop after entering */
@keyframes busFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Ground shadow / reflection */
.hero-bus-shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 28px;
  background: radial-gradient(
    ellipse,
    rgba(245, 166, 35, 0.25) 0%,
    transparent 75%
  );
  filter: blur(8px);
  border-radius: 50%;
  z-index: 2;
  animation: shadowPulse 5s ease-in-out 1.5s infinite;
}

@keyframes shadowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(0.88);
  }
}

/* ── Mobile: stack and hide bus ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-bus-visual {
    padding-top: 0px;
    margin-left: 0px;
    padding-bottom: 20px;
  }
  .hero-bus-img {
    max-width: 100%;
  }
  .hero-content {
    padding: 130px 0 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--gold-light);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
  font-family: "Inter", sans-serif;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.4;
  }
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s 0.1s both ease;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  /* background: var(--grad-gold); */
  border-radius: 2px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeInUp 0.9s 0.2s both ease;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s both ease;
}

/* ── Hero Stats ─────────────────────────────────────────── */
.hero-stats {
  display: flex;
  flex-direction: row; /* all 4 in ONE row on desktop */
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.9s 0.4s both ease;
}

.hero-stats .stat-item {
  flex: 1 1 0;
  text-align: center;
}

/* ── Mobile: 2 columns side by side ─────────────────────── */
@media (max-width: 768px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    gap: 1.25rem;
    margin-top: 40px;
    padding-top: 28px;
  }
}

.stat-item {
  flex-shrink: 0;
}

.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scroll-ring {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-ball {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollBall 2s ease infinite;
}
@keyframes scrollBall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ============================================
   WHY CHOOSE US — PREMIUM REDESIGN
   ============================================ */
.why-us-section {
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%, #f8f5ff 100%);
}

.why-us-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* margin-bottom: 56px; */
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left Image ── */
.why-us-visual {
  position: relative;
}

.why-us-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 32px 72px rgba(30, 86, 212, 0.2);
}

.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.why-us-img-wrap:hover .why-us-img {
  transform: scale(1.04);
}

.why-us-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(13, 27, 62, 0.05) 0%,
    rgba(13, 27, 62, 0.55) 100%
  );
  pointer-events: none;
}

/* Floating badge — bottom-right */
.why-us-badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--grad-gold);
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.45);
  min-width: 110px;
}

.wbf-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.wbf-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  line-height: 1.4;
}

/* Top-left award tag */
.why-us-tag-float {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ── Right: Advantage Cards ── */
.why-us-content {
  display: flex;
  flex-direction: column;
}

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

.adv-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(30, 86, 212, 0.09);
  box-shadow: 0 4px 18px rgba(30, 86, 212, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  transition: width 0.3s ease;
}

.adv-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 36px rgba(30, 86, 212, 0.13);
  border-color: rgba(30, 86, 212, 0.18);
}

.adv-card:hover::before {
  width: 6px;
}

/* Icon color themes */
.adv-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.adv-card:hover .adv-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

/* Bootstrap Icon sizing & color per theme */
.adv-icon {
  font-size: 1.55rem;
  line-height: 1;
}
.adv-blue .adv-icon {
  color: #1e56d4;
}
.adv-gold .adv-icon {
  color: #d4850a;
}
.adv-green .adv-icon {
  color: #10b966;
}
.adv-purple .adv-icon {
  color: #7c3aed;
}
.adv-teal .adv-icon {
  color: #0ea59c;
}

.adv-blue {
  background: linear-gradient(
    135deg,
    rgba(30, 86, 212, 0.12),
    rgba(30, 86, 212, 0.22)
  );
}
.adv-blue + .adv-body ~ .adv-arrow {
  color: #1e56d4;
}
#adv-1::before {
  background: linear-gradient(180deg, #1e56d4, #5580f0);
}

.adv-gold {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.15),
    rgba(245, 166, 35, 0.3)
  );
}
#adv-2::before {
  background: linear-gradient(180deg, #f5a623, #ffc15e);
}

.adv-green {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 102, 0.12),
    rgba(16, 185, 102, 0.24)
  );
}
#adv-3::before {
  background: linear-gradient(180deg, #10b966, #34d399);
}

.adv-purple {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    rgba(124, 58, 237, 0.22)
  );
}
#adv-4::before {
  background: linear-gradient(180deg, #7c3aed, #a78bfa);
}

.adv-teal {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 156, 0.12),
    rgba(14, 165, 156, 0.24)
  );
}
#adv-5::before {
  background: linear-gradient(180deg, #0ea59c, #2dd4bf);
}

.adv-body {
  flex: 1;
}

.adv-title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 5px;
  letter-spacing: 0.3px;
}

.adv-desc {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.65;
  margin: 0;
}

.adv-arrow {
  font-size: 1.1rem;
  color: rgba(30, 86, 212, 0.3);
  font-weight: 700;
  flex-shrink: 0;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.adv-card:hover .adv-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-img-wrap {
    height: 300px;
  }
}

/* ============================================
   TRUST MARQUEE
   ============================================ */
.trust-bar {
  background: var(--blue);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--blue), transparent);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--blue), transparent);
}
.trust-track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}
.trust-sep {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: var(--grad-blue);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(
    ellipse,
    rgba(30, 86, 212, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.breadcrumb a {
  color: var(--gold);
  font-weight: 600;
}
.breadcrumb a:hover {
  color: var(--gold-light);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.08rem;
  max-width: 560px;
}

/* ============================================
   CARDS - Glass
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(30, 86, 212, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.2);
}
.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--blue-pale),
    rgba(245, 166, 35, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: var(--transition);
  border: 1px solid rgba(30, 86, 212, 0.1);
}
.card:hover .card-icon {
  background: var(--grad-gold);
  transform: scale(1.08);
  border-color: transparent;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.3px;
}
.card-text {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 18px;
  transition: var(--transition);
}
.card-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ============================================
   SPLIT SECTION
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-visual {
  order: -1;
}

.split-visual {
  position: relative;
}
.split-visual-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split-visual-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 170px;
  height: 170px;
  background: var(--grad-gold);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  color: var(--navy);
  z-index: 2;
}
.accent-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.accent-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.split-content .section-subtitle {
  margin: 0 0 28px;
  max-width: 100%;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.check-text strong {
  display: block;
  color: var(--dark-text);
  font-weight: 700;
  margin-bottom: 2px;
  font-family: "Inter", sans-serif;
}
.check-text span {
  font-size: 0.88rem;
  color: var(--body-text);
}

/* ============================================
   NUMBERS STRIP  — Premium Redesign
   ============================================ */
.numbers-strip {
  background: linear-gradient(135deg, #060f2a 0%, #0d1b3e 50%, #0a1428 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Radial glow blobs */
.numbers-strip::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(30, 86, 212, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.numbers-strip::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(245, 166, 35, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Top & bottom gold accent lines */
.numbers-strip .ns-line-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.numbers-strip .ns-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Vertical divider between items */
.numbers-grid > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Each stat block */
.numbers-grid > div {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  transition: background 0.35s ease;
  cursor: default;
}
.numbers-grid > div:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Icon badge above the number */
.num-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.numbers-grid > div:hover .num-icon {
  background: rgba(245, 166, 35, 0.22);
  transform: translateY(-4px) scale(1.08);
}

/* The big number */
.num-val {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 30%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.35s ease;
}
.numbers-grid > div:hover .num-val {
  transform: scale(1.06);
}

/* Decorative underline bar */
.num-bar {
  width: 36px;
  height: 3px;
  border-radius: 100px;
  background: var(--grad-gold);
  margin: 12px auto 10px;
  transition: width 0.35s ease;
}
.numbers-grid > div:hover .num-bar {
  width: 56px;
}

.num-label {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
  transition: color 0.35s ease;
}
.numbers-grid > div:hover .num-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile: stack 2x2 and drop vertical dividers */
@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid > div:not(:last-child) {
    border-right: none;
  }
  .numbers-grid > div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .numbers-grid > div {
    padding: 28px 20px;
  }
}
@media (max-width: 420px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid > div:nth-child(odd) {
    border-right: none;
  }
  .numbers-grid > div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 86, 212, 0.08);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-thumb {
  height: 220px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-thumb-icon {
  font-size: 5.5rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}
.product-card:hover .product-thumb-icon {
  transform: scale(1.12) translateY(-6px);
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}

.product-body {
  padding: 26px;
}
.product-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.product-desc {
  color: var(--body-text);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.chip {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
}
.product-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}
.product-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--grad-blue);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}

.tcard {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tcard::before {
  content: "❝";
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 4rem;
  color: rgba(245, 166, 35, 0.15);
  font-family: serif;
  line-height: 1;
}
.tcard:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tcard-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcard-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  border: 2px solid rgba(245, 166, 35, 0.4);
}
.tcard-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.tcard-role {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(13, 27, 62, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SERVICES SECTION — Dark Navy Background
   ============================================ */
.services-dark {
  background: linear-gradient(135deg, #060f2a 0%, #0d1b3e 55%, #091630 100%);
  position: relative;
  overflow: hidden;
}
.services-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.services-dark::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 162, 7, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Dark card override */
.svc-dark-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease !important;
}
.svc-dark-card:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(232, 162, 7, 0.28) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}
.svc-dark-card::before {
  background: var(--grad-gold) !important;
}

/* Icon badge on dark bg */
.svc-icon-wrap {
  background: rgba(232, 162, 7, 0.13) !important;
  border: 1px solid rgba(232, 162, 7, 0.22) !important;
  color: var(--gold-light) !important;
  font-size: 1.55rem;
}
.svc-dark-card:hover .svc-icon-wrap {
  background: var(--grad-gold) !important;
  color: var(--navy) !important;
  border-color: transparent !important;
}

/* Link color on dark bg */
.svc-link {
  color: var(--gold-light) !important;
}
.svc-link:hover {
  color: var(--gold) !important;
}

/* ============================================
   SERVICE CARDS (Services Page)
   ============================================ */
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border: 1px solid rgba(30, 86, 212, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.25);
  transform: translateX(6px);
}
.svc-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.svc-card:hover .svc-icon {
  background: var(--grad-gold);
  transform: scale(1.08);
}
.svc-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}
.svc-desc {
  color: var(--body-text);
  font-size: 0.93rem;
  line-height: 1.78;
  margin-bottom: 14px;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--body-text);
}
.svc-list li::before {
  content: "→";
  color: var(--blue);
  font-weight: 800;
}

/* Process Steps */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 106px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
  opacity: 0.4;
}
.p-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 0;
}
.p-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-blue);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  z-index: 1;
}
.p-step-title {
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}
.p-step-text {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 86, 212, 0.08);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--grad-blue);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.1);
}
.team-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
}
.team-role {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 8px 0 16px;
}
.team-bio {
  color: var(--body-text);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* VM Cards (Vision/Mission) */
.vm-card {
  background: var(--grad-blue);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.vm-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.vm-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.vm-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vm-heading {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.vm-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 0.93rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  transition: var(--transition);
}
.gal-item:hover {
  transform: scale(1.02);
}
.gal-item.tall {
  min-height: 460px;
}
.gal-item.wide {
  grid-column: span 2;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 62, 0.92) 0%,
    rgba(13, 27, 62, 0.2) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-title {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: "Oswald", sans-serif;
}
.gal-sub {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
}
.gal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process (manufacturing) grid */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mfg-card {
  background: var(--grad-blue);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.mfg-num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
}
.mfg-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.mfg-title {
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.mfg-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(30, 86, 212, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.15);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover {
  background: var(--off-white);
}
.faq-qicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-qicon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq-a p {
  color: var(--body-text);
  font-size: 0.93rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info-box {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.contact-info-box::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.ci-tag {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ci-heading {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 32px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.ci-val {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  line-height: 1.6;
}
.ci-val a {
  color: rgba(255, 255, 255, 0.88);
}
.ci-val a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.form-heading {
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.form-sub {
  color: var(--body-text);
  font-size: 0.93rem;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.93rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 86, 212, 0.1);
}
.form-control::placeholder {
  color: var(--mid-gray);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-blue);
}
.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(30, 86, 212, 0.45);
}

/* Map */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070f22;
  color: rgba(255, 255, 255, 0.62);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.5fr 1.3fr;
  gap: 28px;
  margin-bottom: 60px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgb(255, 255, 255);
  margin: 18px 0 24px;
  max-width: 290px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.soc {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #f4ae1e;
  transition: var(--transition);
}
.soc:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  color: rgb(255, 255, 255);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-link::before {
  content: "›";
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}

.fi-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: rgb(255, 255, 255);
}
.fi-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Gold top border on footer */
.footer::before {
  content: "";
  display: block;
  height: 3px;
  /* background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue)); */
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgb(255, 255, 255);
}
.footer-policy-links {
  display: flex;
  gap: 22px;
}
.footer-policy-link {
  color: rgb(255, 255, 255);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-policy-link:hover {
  color: var(--gold);
}

/* ============================================
   PRODUCT DETAIL (Products Page)
   ============================================ */
.pd-section {
  scroll-margin-top: 90px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(30, 86, 212, 0.08);
}
.pd-section:last-of-type {
  border-bottom: none;
}
.pd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pd-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 360px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pd-thumb-icon {
  font-size: 6.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}
.pd-section:hover .pd-thumb-icon {
  transform: scale(1.1) translateY(-8px);
}
.pd-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pd-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.pd-label {
  position: absolute;
  bottom: 22px;
  left: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.spec-box {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 14px 16px;
}
.spec-lbl {
  font-size: 0.72rem;
  color: var(--mid-gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 4px;
}
.spec-val {
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 800;
  font-family: "Oswald", sans-serif;
}

/* Filter Nav (Products) */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 2px solid rgba(30, 86, 212, 0.15);
  border-radius: 100px;
  background: var(--white);
  color: var(--body-text);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.anim.in {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .split.reverse .split-visual {
    order: 0;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-pad {
    padding: 64px 0;
  }
  .grid-3,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .gallery-grid,
  .mfg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.wide {
    grid-column: span 1;
  }
  .gal-item.tall {
    min-height: 260px;
  }
  .svc-card {
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-box,
  .contact-info-box {
    padding: 32px 24px;
  }
  .vm-card {
    padding: 36px 28px;
  }
  .hero-stats {
    gap: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* === PRODUCT DETAIL BG ALTERNATING === */
.pd-alt {
  background: var(--off-white);
  margin: 0 -24px;
  padding: 64px 24px;
}

/* === Scroll bar custom === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* Gallery filter */
.gal-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gal-filter-btn {
  padding: 9px 20px;
  border: 2px solid rgba(30, 86, 212, 0.15);
  border-radius: 100px;
  background: var(--white);
  color: var(--body-text);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}
.gal-filter-btn:hover,
.gal-filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Info section light bg */
.section-light {
  background: var(--off-white);
}
.section-navy {
  background: var(--navy);
}

/* Value cards */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(30, 86, 212, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.2);
}
.value-icon {
  font-size: 2.2rem;
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card:hover .value-icon {
  background: var(--grad-gold);
}
.value-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.value-text {
  font-size: 0.86rem;
  color: var(--body-text);
  margin: 0;
}

/* ============================================
   RESPONSIVE — Navbar & Layout
   ============================================ */

/* Collapse navbar at 900px */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .nav-dropdown-menu {
    display: none !important;
  }
}

/* Tablet tweaks */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  .features-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split,
  .contact-split,
  .pd-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone — 600px and below */
@media (max-width: 600px) {
  .navbar {
    padding: 0 16px;
  }
  .navbar.scrolled {
    height: 80px;
  }
  .mobile-nav {
    top: 66px;
  }

  .features-grid,
  .service-grid,
  .gallery-grid,
  .footer-grid,
  .team-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pd-thumb {
    height: 220px;
  }
  .pd-split {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .section-pad {
    padding: 60px 0;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-policy-links {
    justify-content: center;
  }
}

/* ============================================
   MID-PAGE CTA  — After Products Section
   ============================================ */
.mid-cta-section {
  background: linear-gradient(135deg, #060f2a 0%, #0d1b3e 55%, #091630 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient radial glows */
.mid-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}
.mid-cta-glow-left {
  top: -200px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.22) 0%,
    transparent 65%
  );
}
.mid-cta-glow-right {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(232, 162, 7, 0.14) 0%,
    transparent 65%
  );
}

/* Two-column layout */
.mid-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── LEFT PANEL ── */
.mid-cta-tag {
  background: rgba(232, 162, 7, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232, 162, 7, 0.3);
  display: inline-block;
  margin-bottom: 22px;
}

.mid-cta-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.mid-cta-heading-accent {
  background: linear-gradient(90deg, #e8a207, #ffb827);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mid-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}

/* Trust badge row */
.mid-cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mid-cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.mid-cta-badge:hover {
  background: rgba(232, 162, 7, 0.12);
  border-color: rgba(232, 162, 7, 0.3);
  color: var(--gold-light);
}
.mid-cta-badge-icon {
  font-size: 1rem;
}

/* ── RIGHT PANEL ── */
.mid-cta-right {
  position: relative;
}

.mid-cta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 38px 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.mid-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  background-size: 200%;
  animation: gold-shimmer 3s linear infinite;
}
.mid-cta-card:hover {
  border-color: rgba(232, 162, 7, 0.25);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(232, 162, 7, 0.06);
}
@keyframes gold-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Top row: stat + bus icon */
.mid-cta-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.mid-cta-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mid-cta-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -1px;
}
.mid-cta-stat-unit {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 3px;
}
.mid-cta-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.mid-cta-card-icon {
  font-size: 3.2rem;
  filter: drop-shadow(0 4px 16px rgba(232, 162, 7, 0.3));
  animation: bus-float 3.5s ease-in-out infinite;
}
@keyframes bus-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Card text */
.mid-cta-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.mid-cta-card-text {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.78;
  margin-bottom: 28px;
}

/* CTA buttons */
.mid-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mid-cta-btn-primary {
  flex: 1;
  min-width: 160px;
  justify-content: center;
  font-size: 0.95rem;
}
.mid-cta-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  white-space: nowrap;
}
.mid-cta-btn-call:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Reassurance line */
.mid-cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 900px) {
  .mid-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mid-cta-sub {
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .mid-cta-section {
    padding: 70px 0;
  }
  .mid-cta-card {
    padding: 30px 24px 28px;
  }
  .mid-cta-actions {
    flex-direction: column;
  }
  .mid-cta-btn-call {
    justify-content: center;
  }
}

/* ============================================
   ABOUT HOME SECTION
   ============================================ */
.about-home-section {
  background: var(--white);
  overflow: hidden;
}

/* Two-column grid: image | content */
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEFT: Image ── */
.about-home-visual {
  position: relative;
}

.about-home-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 520px;
  box-shadow: 0 24px 64px rgba(13, 26, 45, 0.18);
}

.about-home-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.about-home-img-wrap:hover .about-home-img {
  transform: scale(1.04);
}

/* Dark gradient overlay at bottom */
.about-home-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 26, 45, 0.55) 0%,
    rgba(13, 26, 45, 0.1) 45%,
    transparent 100%
  );
  pointer-events: none;
}

/* Gold-bordered left accent bar */
.about-home-img-wrap::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -16px;
  width: 6px;
  height: 80px;
  background: var(--grad-gold);
  border-radius: 4px;
  z-index: 2;
}

/* Floating Est. badge — bottom-right of image */
.about-home-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad-gold);
  border-radius: var(--radius-lg);
  padding: 10px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
  min-width: 110px;
}
.ahb-num {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.ahb-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(13, 26, 45, 0.7);
  margin-top: 5px;
  line-height: 1.4;
}

/* Floating certified pill — top-right of image */
.about-home-cert-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(13, 26, 45, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 162, 7, 0.35);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  letter-spacing: 0.3px;
}

/* ── RIGHT: Content ── */
.about-home-content .section-tag {
  margin-bottom: 0;
}

.about-home-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.75;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.about-home-body {
  font-size: 0.93rem;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* Bus type tags label */
.about-home-types-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

/* Tag cloud */
.about-home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.aht {
  display: inline-block;
  padding: 5px 14px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(21, 101, 192, 0.12);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  cursor: default;
}
.aht:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Quick stats row */
.about-home-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  border: 1px solid var(--light-gray);
}
.ahs-item {
  flex: 1;
  text-align: center;
}
.ahs-num {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.ahs-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.ahs-divider {
  width: 1px;
  height: 40px;
  background: var(--light-gray);
  flex-shrink: 0;
}

/* Gold outline button (used for secondary CTA on light bg) */
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--grad-gold);
  color: var(--navy);
  border-color: transparent;
}

/* Responsive */
@media (max-width: 900px) {
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Heading first, image second on mobile */
  .about-home-visual {
    order: 2;
  }
  .about-home-content {
    order: 1;
  }
  .about-home-img-wrap {
    height: 380px;
  }
  .about-home-badge {
    /* bottom: -14px; */
    right: 14px;
  }
}
@media (max-width: 600px) {
  .about-home-img-wrap {
    height: 280px;
  }
  .about-home-img-wrap::before {
    display: none;
  }
  .about-home-stats {
    padding: 16px 18px;
    gap: 0;
  }
  .ahs-num {
    font-size: 1.5rem;
  }
}

/* ============================================
   MISSION & VISION SECTION — Dark Blue
   ============================================ */
.mv-section {
  background: linear-gradient(135deg, #060f2a 0%, #0d1b3e 55%, #091630 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs */
.mv-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(
    ellipse,
    rgba(21, 101, 192, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.mv-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(
    ellipse,
    rgba(232, 162, 7, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Gold top border line */
.mv-section .mv-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

/* Section header */
.mv-header {
  margin-bottom: 52px;
}
.mv-tag {
  background: rgba(232, 162, 7, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232, 162, 7, 0.3);
  display: inline-block;
  margin-bottom: 12px;
}
.mv-title {
  color: var(--white);
  margin-bottom: 0;
}
/* .text-gold utility handles the gold colour on .mv-title spans */

/* Two-column card grid */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* ── Individual Card — glassmorphism on dark ── */
.mv-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  padding: 44px 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.mv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

/* Top accent bar (full width) */
.mv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
}
.mv-accent-blue {
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
}
.mv-accent-gold {
  background: var(--grad-gold);
}

/* Glowing orb watermark */
.mv-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
#mv-mission::after {
  background: var(--blue-light);
}
#mv-vision::after {
  background: var(--gold);
}

/* Icon wrap */
.mv-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}
.mv-card:hover .mv-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}
.mv-icon-blue {
  background: rgba(33, 150, 243, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(33, 150, 243, 0.25);
}
.mv-icon-gold {
  background: rgba(232, 162, 7, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232, 162, 7, 0.25);
}

/* Colored label pill */
.mv-card-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.mv-label-blue {
  background: rgba(33, 150, 243, 0.15);
  color: #90caf9;
  border: 1px solid rgba(33, 150, 243, 0.2);
}
.mv-label-gold {
  background: rgba(232, 162, 7, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232, 162, 7, 0.2);
}

/* Card title */
.mv-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

/* Card body paragraph */
.mv-card-body {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* Bullet point list */
.mv-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mv-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Colored dot marker */
.mv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mv-dot-blue {
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}
.mv-dot-gold {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 162, 7, 0.2);
}

/* Hover border glow */
#mv-mission:hover {
  border-color: rgba(33, 150, 243, 0.3);
}
#mv-vision:hover {
  border-color: rgba(232, 162, 7, 0.35);
}

/* Responsive */
@media (max-width: 860px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mv-section {
    padding: 70px 0;
  }
}
@media (max-width: 480px) {
  .mv-card {
    padding: 32px 24px 28px;
  }
  .mv-card-title {
    font-size: 1.3rem;
  }
}

/* Extra-small phones */
@media (max-width: 400px) {
  .navbar {
    padding: 0 12px;
  }
  .logo img {
    height: 40px;
  }
  .container {
    padding: 0 16px;
  }
  .mobile-nav {
    padding: 12px 16px 20px;
  }
}

/* ============================================
   QUALITY COMMITMENT SECTION
   ============================================ */
.quality-section {
  background: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.quality-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.quality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 162, 7, 0.2);
}
.quality-card:hover::before {
  transform: scaleX(1);
}

.quality-commitment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.quality-commitment-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13, 27, 62, 0.15);
  height: 100%;
  min-height: 420px;
}

.quality-commitment-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.quality-commitment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.quality-commitment-card {
  margin: 0;
  padding: 28px 20px;
  height: 100%;
}

.expertise-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.expertise-panel {
  background: linear-gradient(135deg, #0d1b3e 0%, #1e56d4 100%);
  border-radius: 20px;
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}

.expertise-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.expertise-panel-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expertise-panel-icon i {
  color: var(--gold);
  font-size: 1.3rem;
}

.expertise-panel-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.expertise-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.expertise-panel-text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.expertise-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
}

.expertise-list-item i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.expertise-list-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.expertise-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.07);
  border-left: 4px solid transparent;
}

.why-choose-card-blue {
  border-left-color: var(--blue);
}

.why-choose-card-gold {
  border-left-color: var(--gold);
}

.why-choose-card-green {
  border-left-color: #22c55e;
}

.why-choose-card-orange {
  border-left-color: #f97316;
}

.why-choose-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-icon i {
  font-size: 1.1rem;
}

.why-choose-icon-blue {
  background: rgba(30, 86, 212, 0.1);
  color: var(--blue);
}

.why-choose-icon-gold {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
}

.why-choose-icon-green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.why-choose-icon-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.why-choose-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 4px;
}

.why-choose-text {
  font-size: 0.88rem;
  color: var(--body-text);
  margin: 0;
  line-height: 1.6;
}

.qc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--blue-pale),
    rgba(232, 162, 7, 0.06)
  );
  border: 1px solid rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.quality-card:hover .qc-icon-wrap {
  background: var(--grad-gold);
  color: var(--navy);
  border-color: transparent;
  transform: scale(1.08);
}

.qc-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.qc-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.78;
  margin: 0;
}

@media (max-width: 900px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-commitment-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quality-commitment-media,
  .quality-commitment-image {
    min-height: 340px;
  }

  .expertise-section-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .expertise-panel {
    padding: 32px 28px;
  }
}
@media (max-width: 540px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-commitment-cards {
    grid-template-columns: 1fr;
  }

  .quality-commitment-media,
  .quality-commitment-image {
    min-height: 260px;
  }

  .quality-commitment-card {
    padding: 24px 18px;
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .expertise-panel {
    padding: 28px 20px;
  }

  .expertise-panel-header,
  .why-choose-card {
    gap: 14px;
  }

  .why-choose-card {
    padding: 18px;
  }
}

/* ============================================
   INFRASTRUCTURE & MANUFACTURING FACILITY
   ============================================ */
.infra-section {
  background: linear-gradient(135deg, #060f2a 0%, #0d1b3e 55%, #091630 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.infra-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.infra-glow-left {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 101, 192, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.infra-glow-right {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 162, 7, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.infra-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* LEFT column */
.infra-tag {
  background: rgba(232, 162, 7, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232, 162, 7, 0.3);
  display: inline-block;
  margin-bottom: 18px;
}
.infra-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.infra-heading-accent {
  background: linear-gradient(90deg, #e8a207, #ffb827);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.infra-lead {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  margin-bottom: 28px;
}

/* Cert pills row */
.infra-cert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.infra-cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.infra-cert-pill:hover {
  background: rgba(232, 162, 7, 0.15);
  border-color: rgba(232, 162, 7, 0.3);
  color: var(--gold-light);
}

/* RIGHT column: cards grid */
.infra-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.infra-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Individual feature card */
.infra-feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.infra-feat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 162, 7, 0.25);
  transform: translateY(-3px);
}
/* Full-width 5th card */
.infra-feat-card--wide {
  grid-column: 1 / -1;
}

.ifc-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(232, 162, 7, 0.25));
  transition: transform 0.3s ease;
}
.infra-feat-card:hover .ifc-icon {
  transform: scale(1.15) rotate(-5deg);
}

.ifc-title {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
  margin-bottom: 5px;
}
.ifc-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .infra-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .infra-section {
    padding: 70px 0;
  }
}
@media (max-width: 480px) {
  .infra-cards-grid {
    grid-template-columns: 1fr;
  }
  .infra-cert-pills {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   INDUSTRIES WE SERVE SECTION
   ============================================ */
.industries-section {
  background: var(--off-white);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.ind-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ind-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ind-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 162, 7, 0.18);
}
.ind-card:hover::after {
  transform: scaleX(1);
}

.ind-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ind-card:hover .ind-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.ind-icon-blue {
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(21, 101, 192, 0.12);
}
.ind-icon-gold {
  background: rgba(232, 162, 7, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(232, 162, 7, 0.18);
}

.ind-body {
  flex: 1;
  min-width: 0;
}

.ind-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--blue-pale);
  color: var(--blue);
  margin-bottom: 8px;
}
.ind-tag-gold {
  background: rgba(232, 162, 7, 0.12);
  color: var(--gold-dark);
}

.ind-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.ind-desc {
  font-size: 0.83rem;
  color: var(--body-text);
  line-height: 1.72;
  margin-bottom: 12px;
}

.ind-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ind-types span {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--off-white);
  color: var(--mid-gray);
  border: 1px solid var(--light-gray);
}

@media (max-width: 1000px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
  .ind-card {
    flex-direction: column;
  }
}

/* Extra-small phones */
@media (max-width: 400px) {
  .navbar {
    padding: 0 12px;
  }
  .logo img {
    height: 40px;
  }
  .container {
    padding: 0 16px;
  }
  .mobile-nav {
    padding: 12px 16px 20px;
  }
}
.gal-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.gal-filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--light-gray);
  border-radius: 100px;
  background: var(--white);
  color: var(--body-text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}
.gal-filter-btn:hover,
.gal-filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gal-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #0d1b3e, #1e3470);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.gal-item:hover {
  transform: scale(1.02);
}
.gal-item.tall {
  min-height: 460px;
}
.gal-item.normal {
  min-height: 280px;
}
.gal-item.wide {
  grid-column: span 2;
  min-height: 280px;
}
.gal-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gal-bg svg {
  width: 100%;
  height: 100%;
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 62, 0.92) 0%,
    rgba(13, 27, 62, 0.15) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  z-index: 2;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}
.gal-overlay-title {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 3px;
}
.gal-overlay-sub {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proc-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.proc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), #f8c555);
}
.proc-num-bg {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}
.proc-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.proc-card-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.proc-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.wide {
    grid-column: span 1;
  }
  .gal-item.tall {
    min-height: 260px;
  }
  .proc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #0f172a;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #ffffff;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}
