/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #111B47;
  background: #ffffff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: #FF0040; color: #fff; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
.section-title { text-align: center; margin-bottom: 3rem; font-weight: 700; }
.section-sub { text-align: center; color: #333333; max-width: 600px; margin: -1.5rem auto 3rem; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease; border: none; font-family: inherit;
}
.btn-primary { background: #FF0040; color: #fff; box-shadow: 0 4px 14px rgba(255,0,64,0.3); }
.btn-primary:hover { background: #FF0040; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,64,0.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: #111B47; border: 2px solid rgba(0,11,71,0.12); }
.btn-outline-dark:hover { border-color: #FF0040; color: #FF0040; }
.btn-white { background: #fff; color: #FF0040; }
.btn-white:hover { background: #FFFFFF; transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-glass:hover { background: rgba(255,255,255,0.2); }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); color: #fff;
}
.badge-light { background: #FFFFFF; border-color: #fecaca; color: #FF0040; }
.badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease; padding: 16px 0;
}
body[data-page="about"] .navbar, body[data-page="services"] .navbar,
body[data-page="contact"] .navbar, body[data-page="pickdrop"] .navbar {
  background: transparent;
}
body[data-page="about"] .navbar.scrolled, body[data-page="services"] .navbar.scrolled,
body[data-page="contact"] .navbar.scrolled, body[data-page="pickdrop"] .navbar.scrolled {
  background: rgba(0,11,71,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
body[data-page="services"] .navbar { padding: 20px 0; }
body[data-page="services"] .navbar.scrolled { padding: 16px 0; }
body[data-page="services"] .navbar-brand img { height: 120px; }
body[data-page="services"] .navbar.scrolled .navbar-brand img { height: 105px; }
body[data-page="services"] .navbar-brand { margin-left: -80px; }
body[data-page="services"] .navbar .container { padding-left: 24px; }
body[data-page="services"] .nav-links a { font-size: 0.95rem; padding: 14px 28px; margin-top: -12px; }
body[data-page="services"] .page-hero .container { padding-left: 0; margin-left: 60px; margin-right: auto; }
body[data-page="services"] .page-hero h1, body[data-page="services"] .page-hero p { text-align: left; }
.navbar.scrolled {
  background: #111B47; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 14px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
body[data-page="home"] .navbar.scrolled {
  background: rgba(0,11,71,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; z-index: 1001; }
body[data-page="home"] .navbar-brand { margin-left: -32px; }
body[data-page="home"] .navbar .container { padding-left: 100px; }
.navbar-brand img { height: 100px; width: auto; transition: all 0.3s; }
.navbar.scrolled .navbar-brand img { height: 85px; }
.navbar-brand span { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; transition: color 0.3s; }
.navbar-brand .brand-light { color: #fff; }
.navbar.scrolled .navbar-brand .brand-light { color: #fff; }
.navbar-brand .brand-dark { color: #FF0040; }

.nav-links-wrap {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12);
  padding: 5px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-links-wrap { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 11px 26px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
  transition: all 0.3s; color: rgba(255,255,255,0.8); letter-spacing: 0.3px;
}
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: #fff; background: #FF0040; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn {
  padding: 12px 26px; font-size: 0.85rem; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF0040; color: #FFFFFF; border: none;
  box-shadow: 0 4px 14px rgba(255,0,64,0.3);
  transition: all 0.3s;
}
.nav-cta .btn:hover { background: #CC0033; box-shadow: 0 6px 20px rgba(255,0,64,0.4); transform: translateY(-2px); }
.nav-cta .btn svg { width: 16px; height: 16px; }
.lang-btn {
  padding: 8px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; cursor: pointer; transition: all 0.3s;
}
.navbar.scrolled .lang-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.lang-btn:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-btn:hover { background: rgba(255,255,255,0.15); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; z-index: 1001;
}
.hamburger span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.navbar.scrolled .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 105vh; display: flex; align-items: center;
  overflow: hidden; background: #111B47; padding-top: 80px;
}
.hero-deco-circle {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04); top: -150px; right: -100px; z-index: 0;
}
.hero-deco-circle-2 {
  width: 350px; height: 350px; top: auto; right: auto; bottom: -50px; left: -80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); padding: 8px 20px;
  border-radius: 50px; font-size: 0.82rem; color: #FFFFFF; font-weight: 500;
  margin-bottom: 24px; animation: fadeInUp 0.6s ease forwards; opacity: 0;
}
.hero-badge svg { color: #FF0040; }
.hero-curve {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1;
  line-height: 0;
}
.hero-curve svg { width: 100%; height: auto; display: block; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 80% center;
}
.hero-bg .overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
}
.hero-content { position: relative; z-index: 1; }
.hero-content.center { text-align: center; padding-top: 0; }
.hero-highlight {
  background: linear-gradient(135deg, #FF0040, #FF0040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid rgba(255,0,64,0.4);
  border-radius: 50px;
}
.hero .container {
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.hero-highlight {
  background: linear-gradient(135deg, #FF0040, #FF0040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid rgba(255,0,64,0.4);
  border-radius: 50px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0.92;
  color: #FFFFFF;
}
.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0.92;
  color: #FFFFFF;
}
.hero-transport {
  background: linear-gradient(135deg, #FF0040, #FF0040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0.92;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btns .btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-btns .btn svg { width: 18px; height: 18px; }
.hero-btns .btn-primary {
  background: #FF0040;
  color: #FFFFFF;
  border: none;
}
.hero-btns .btn-primary:hover {
  background: #CC0033;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,0,64,0.4);
}
.hero-btns .btn-outline {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.hero-btns .btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #FFFFFF;
}

/* ===== SECTION PADDING ===== */
.section-padded { padding: 100px 0; }
.section-light { background: #FFFFFF; }
.section-alt { background: #FFFFFF; }

/* ===== ABOUT / PARTNER SECTION ===== */
.about-split {
  padding: 120px 0; background: #FFFFFF;
}
.about-split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-split-left .badge { margin-bottom: 24px; }
.about-split-left h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.about-split-left > p { color: #333333; font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-card {
  padding: 32px 28px; border-radius: 28px; transition: all 0.4s;
}
.about-card-dark { background: #111B47; color: #fff; }
.about-card-dark:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,27,75,0.3); }
.about-card-light { background: #fff; border: 1px solid #FFFFFF; }
.about-card-light:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.about-card-icon {
  width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.2rem;
}
.about-card-dark .about-card-icon { background: rgba(255,255,255,0.1); }
.about-card-light .about-card-icon { background: #FFFFFF; }
.about-card h4 { margin-bottom: 8px; }
.about-card-light h4 { color: #111B47; }
.about-card p { font-size: 0.85rem; line-height: 1.6; }
.about-card-dark p { color: rgba(255,255,255,0.6); }
.about-card-light p { color: #333333; }

/* Right side card - Booking/Quote form */
.about-card-form {
  background: #fff; border-radius: 32px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid #FFFFFF;
}
.about-form-inner { padding: 36px 36px 24px; }
.about-form-field { margin-bottom: 20px; }
.about-form-field label { font-size: 0.7rem; font-weight: 700; color: rgba(51,51,51,0.4); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 8px; }
.about-form-select {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-radius: 16px; border: 1px solid #FFFFFF; background: #FFFFFF;
  cursor: pointer; transition: border-color 0.3s;
}
.about-form-select:hover { border-color: #FF0040; }
.about-form-select p:first-child { font-weight: 700; color: #111B47; font-size: 0.9rem; }
.about-form-select p:last-child { font-size: 0.75rem; color: rgba(51,51,51,0.4); }
.about-form-divider {
  display: flex; justify-content: center; margin: -10px 0;
  position: relative; z-index: 2;
}
.about-form-divider span {
  width: 44px; height: 44px; border-radius: 14px; background: #fff; border: 1px solid #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04); cursor: pointer;
}
.about-form-image { height: 180px; overflow: hidden; }
.about-form-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #111B47; padding: 80px 0; color: #fff;
}
.stats-bar h2 { margin-bottom: 16px; text-align: center; }
.stats-bar > .container > p { color: rgba(255,255,255,0.5); text-align: center; max-width: 500px; margin: 0 auto 50px; font-size: 1rem; }
.stats-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stats-bar-item { padding: 0 0 0 32px; border-left: 2px solid rgba(255,255,255,0.1); }
.stats-bar-item h3 { font-size: 2.8rem; font-weight: 700; font-family: 'Oswald', sans-serif; letter-spacing: 0.02em; margin-bottom: 4px; }
.stats-bar-item p { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ===== CLIENTS / LOGOS ===== */
.clients-bar { padding: 50px 0 90px; overflow: hidden; }
.clients-bar .container { text-align: center; }
.partners-title { color: #111B47; font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0; }
.partners-underline { width: 80px; height: 4px; background: #FF0040; margin: 16px auto 40px; border-radius: 2px; }
.clients-scroll { overflow: hidden; }
.clients-track { display: flex; width: max-content; animation: scrollLogos 40s linear infinite; }
.client-logo-wrap { display: flex; flex-direction: column; align-items: center; margin: 0 20px; gap: 6px; }
.client-logo { height: 100px; width: auto; flex-shrink: 0; filter: none; opacity: 0.8; transition: opacity 0.3s; }
.client-logo-wrap:hover .client-logo { opacity: 1; }
.client-logo-name { font-size: 0.78rem; font-weight: 600; color: #333333; white-space: nowrap; transition: color 0.3s; }
.client-logo-wrap:hover .client-logo-name { color: #111B47; }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SERVICES CARDS (6-card grid) ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.services-cards { padding: 100px 0; background: #FFFFFF; }
.services-cards-header { text-align: center; margin-bottom: 48px; }
.services-cards-header h2 { color: #111B47; font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0; }
.services-cards-underline { width: 80px; height: 4px; background: #FF0040; margin: 16px auto 0; border-radius: 2px; }
.services-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
#foundation-grid { grid-template-columns: repeat(3, 1fr); }
.foundation-section .service-card::before { background: #FF0040; }
.home-services .service-card::before { background: #FF0040; }
.home-services .service-card-icon { background: #FF0040; color: #fff; border-color: #FF0040; }
.home-services .service-card:hover .service-card-icon { background: #111; color: #fff; border-color: #fff; }
.foundation-section .service-card-icon { background: #FF0040; color: #fff; border-color: #FF0040; }
.foundation-section .service-card:hover .service-card-icon { background: #111; color: #fff; border-color: #fff; }
.service-card {
  background: #FFFFFF; padding: 28px 24px; border-radius: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0; display: flex; flex-direction: column; height: 100%;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  animation: fadeInUp 0.6s ease forwards; opacity: 0;
}
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: #111; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: #111; background: #111;
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-card-link { color: #fff; }
.service-card:hover p { opacity: 0.85; }
.service-card:hover .btn-book,
.service-card:hover .btn-fleet { background: #555; color: #fff; }
.service-card-icon {
  width: 64px; height: 64px; background: #f8f8f8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: #333;
  border: 2px solid #ccc;
  transition: all 0.4s ease;
}
.service-card:hover .service-card-icon { background: #111; color: #FFFFFF; transform: scale(1.1) rotate(-8deg); border-color: #fff; }
.service-card h3 { color: #111; font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; transition: color 0.3s; }
.service-card p { color: #333; font-size: 0.92rem; line-height: 1.7; flex-grow: 1; margin-bottom: 20px; opacity: 0.7; transition: color 0.3s, opacity 0.3s; }
.service-card-link { color: #111; font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s, color 0.3s; }
.service-card-link:hover { gap: 10px; }
.service-card-link::after { content: "→"; font-size: 1rem; }
.services-cards-btn-wrap { text-align: center; margin-top: 48px; }
.services-cards-btn-wrap .btn { padding: 16px 48px; font-size: 1rem; border-radius: 50px; }
.service-card-btns { display: flex; gap: 10px; margin-top: auto; }
.btn-book, .btn-fleet { flex: 1; text-align: center; padding: 12px 16px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.btn-book { background: #111; color: #FFFFFF; }
.btn-book:hover { background: #555; color: #fff; transform: translateY(-2px); }
.btn-fleet { background: transparent; color: #111; border: 2px solid #111; }
.btn-fleet:hover { background: #555; color: #fff; transform: translateY(-2px); }

/* ===== OUR TEAM ===== */
.team-section {
  padding: 100px 0;
  background: #FFFFFF;
  text-align: center;
}
.team-sub {
  color: #333333;
  font-size: 1.05rem;
  margin-top: -28px;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.team-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,11,71,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #FF0040, #111B47);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-color: rgba(255,0,64,0.15);
}
.team-card:hover::before { opacity: 1; }
.team-img-wrap {
  padding: 16px 16px 0;
}
.team-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-card h3 {
  color: #111B47;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 20px 20px 2px;
  text-align: left;
  letter-spacing: -0.01em;
}
.team-role {
  color: #FF0040;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 20px 22px;
  text-align: left;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== DRIVING CHANGE ===== */
.driving-change {
  padding: 100px 0;
  background: #FFFFFF;
  text-align: center;
}
.dc-header {
  max-width: 720px;
  margin: 0 auto 60px;
}
.dc-header h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #333333;
  margin-bottom: 16px;
}
.dc-header p {
  color: #333333;
  opacity: 0.75;
  font-size: 1.05rem;
  line-height: 1.7;
}
.dc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.dc-stat {
  text-align: center;
}
.dc-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.dc-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #333333;
}
.dc-label {
  color: #333333;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.8;
}

/* ===== FLEET FILTER BAR ===== */
.fleet-filter-bar { margin-bottom: 48px; }
.fleet-filter-label {
  display: table;
  margin: 0 auto;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: #FF0040;
  padding: 10px 28px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.fleet-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fleet-filter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 0 140px;
  min-width: 120px;
  padding: 28px 16px;
  border-radius: 16px;
  cursor: pointer;
  border: 2px solid rgba(0,11,71,0.12);
  background: #fff;
  color: #111B47;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  user-select: none;
}
.fleet-filter-card:hover {
  border-color: #FF0040;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,64,0.12);
}
.fleet-filter-card.active {
  background: #111B47;
  border-color: #111B47;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,11,71,0.25);
}
.fleet-filter-card.active svg { stroke: #fff; }
.fleet-filter-card svg { flex-shrink: 0; display: block; width: 32px; height: 32px; }
@media (max-width: 768px) {
  .fleet-filter-bar { margin-bottom: 32px; }
  .fleet-filter-label { font-size: 0.75rem; padding: 8px 20px; margin-bottom: 20px; margin-left: auto; margin-right: auto; }
  .fleet-filter-options { gap: 10px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .fleet-filter-card {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 14px 14px;
    font-size: 0.7rem;
    gap: 4px;
  }
  .fleet-filter-card svg { width: 20px; height: 20px; }
}

/* ===== FLEET CARDS ===== */
.fleet-cards { padding: 100px 0; background: #fff; }
.fleet-cards .services-cards-header { margin-bottom: 48px; }
.fleet-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
body[data-page="services"] .fleet-cards-grid { grid-template-columns: repeat(3, 1fr); }
.fleet-card {
  background: #fff; border-radius: 2rem;
  border: 2px solid rgba(0,11,71,0.12); display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  animation: fadeInUp 0.6s ease forwards; opacity: 0; padding: 16px 10px 12px;
}
.fleet-card:nth-child(1) { animation-delay: 0.05s; }
.fleet-card:nth-child(2) { animation-delay: 0.1s; }
.fleet-card:nth-child(3) { animation-delay: 0.15s; }
.fleet-card:nth-child(4) { animation-delay: 0.2s; }
.fleet-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: #FF0040; transform: scaleX(0); transform-origin: left; z-index: 2;
  transition: transform 0.4s ease;
}
.fleet-card:hover::before { transform: scaleX(1); }
.fleet-card:hover { transform: translateY(-6px); border-color: #FF0040; box-shadow: 0 16px 48px rgba(255,0,64,0.1); }
.fleet-card-img { width: 100%; height: 140px; overflow: hidden; margin-bottom: 8px; background: #FFFFFF; }
.fleet-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.fleet-card-icon {
  width: 72px; height: 72px; background: #FFFFFF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #FF0040;
  transition: all 0.4s ease;
}
.fleet-card:hover .fleet-card-icon { background: #FF0040; color: #fff; transform: scale(1.1) rotate(-8deg); }
.fleet-card h3 { color: #111B47; font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.fleet-seats { font-size: 0.85rem; font-weight: 600; color: #FF0040; margin-bottom: 12px; }
.fleet-card > p { color: #333333; font-size: 0.9rem; line-height: 1.6; padding: 0 10px; }
.fleet-card-actions { display: flex; gap: 6px; margin-top: auto; width: 100%; padding: 10px 10px 2px; }
.fleet-btn { flex: 1; padding: 10px 0; border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-align: center; transition: all 0.3s; text-decoration: none; display: block; cursor: pointer; border: 2px solid transparent; }
.fleet-btn-primary { background: #FF0040; color: #fff; border-color: #FF0040; }
.fleet-btn-primary:hover { background: #CC0033; border-color: #CC0033; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,64,0.35); }
.fleet-btn-outline { background: #fff; color: #111B47; border-color: #FF0040; }
.fleet-btn-outline:hover { background: #FF0040; color: #fff; border-color: #FF0040; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,64,0.15); }
.fleet-type { display: inline-block; font-size: 0.7rem; font-weight: 600; color: #FF0040; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; padding: 0 20px; text-align: center; width: 100%; }
.fleet-spec { font-size: 0.82rem; color: #666; padding: 0 20px; margin-bottom: 8px; }

/* ===== STORY SECTION ===== */
.story-section { background: #ffffff; padding: 100px 0; }
.story-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 100px; }
.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-text h2 { font-size: 24px; font-weight: 600; color: #111B47; margin-bottom: 20px; line-height: 1.3; }
.story-text p { color: #333333; line-height: 1.8; font-size: 1rem; max-width: 480px; }
.story-image { overflow: hidden; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.story-image img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.story-image:hover img { transform: scale(1.05); }
.story-row-reverse .story-text { order: 1; }
.story-row-reverse .story-image { order: 0; }
@media (max-width: 1024px) {
  .story-row { grid-template-columns: 1fr; gap: 32px; }
  .story-row-reverse .story-text { order: 0; }
  .story-row-reverse .story-image { order: 0; }
  .story-text p { max-width: 100%; }
}
@media (max-width: 640px) {
  .story-section { padding: 60px 0; }
  .story-container { padding: 0 20px; gap: 60px; }
  .story-text h2 { font-size: 1.5rem; }
  .story-image img { height: 220px; }
}

/* ===== CLIENT STORIES ===== */
.client-stories { background: #FFFFFF; padding: 60px 0; }
.cs-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 80px; }
.cs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; animation: fadeInUp 0.6s ease forwards; opacity: 0; position: relative; }
.cs-bg-number { position: absolute; top: -20px; left: -40px; font-size: 12rem; font-weight: 900; color: rgba(0,11,71,0.05); line-height: 1; pointer-events: none; font-family: 'Oswald', sans-serif; z-index: 0; }
.cs-row-reverse .cs-bg-number { left: auto; right: -40px; }
.cs-row:nth-child(1) { animation-delay: 0.1s; }
.cs-row:nth-child(2) { animation-delay: 0.3s; }
.cs-row:nth-child(3) { animation-delay: 0.5s; }
.cs-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; color: #FF0040; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.cs-text { position: relative; z-index: 1; }
.cs-text h2 { font-size: 24px; font-weight: 600; color: #111B47; margin-bottom: 20px; line-height: 1.3; }
.cs-text p { color: #333333; line-height: 1.8; font-size: 1rem; max-width: 480px; margin-bottom: 28px; }
.cs-btn { display: inline-flex; align-items: center; gap: 8px; background: #FF0040; color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; text-decoration: none; }
.cs-btn:hover { background: #CC0033; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,64,0.25); }
.cs-image { overflow: hidden; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); position: relative; z-index: 1; }
.cs-image img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cs-image:hover img { transform: scale(1.05); }
.cs-row-reverse .cs-text { order: 1; }
.cs-row-reverse .cs-image { order: 0; }
@media (max-width: 1024px) {
  .cs-row { grid-template-columns: 1fr; gap: 32px; }
  .cs-row-reverse .cs-text { order: 0; }
  .cs-row-reverse .cs-image { order: 0; }
  .cs-text p { max-width: 100%; }
  .cs-container { gap: 60px; }
}
@media (max-width: 640px) {
  .client-stories { padding: 60px 0; }
  .cs-container { padding: 0 20px; gap: 40px; }
  .cs-text h2 { font-size: 1.5rem; }
  .cs-image img { height: 220px; }
  .cs-btn { padding: 12px 24px; font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .fleet-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fleet-cards { padding: 60px 0; }
  .fleet-cards-grid { grid-template-columns: 1fr; }
  body[data-page="services"] .fleet-cards-grid { grid-template-columns: 1fr; }
  .fleet-card { padding: 14px 12px 20px; }
  .fleet-card-img { height: 110px; }
  .fleet-card h3 { font-size: 1.1rem; }
  .fleet-card-actions { padding: 8px 0 0; gap: 8px; }
  .fleet-btn { padding: 12px 0; font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-cards { padding: 60px 0; }
  .services-cards-grid { grid-template-columns: 1fr; }
  #foundation-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px; }
}

/* ===== SERVICES ACCORDION ===== */
.services-accordion { padding: 100px 0; background: #FFFFFF; }
.services-accordion .badge { margin-bottom: 24px; }
.services-accordion-header { display: flex; flex-direction: column; margin-bottom: 48px; }
.services-accordion-header h2 { max-width: 650px; }
.services-accordion-header p { color: #333333; max-width: 400px; font-size: 1rem; line-height: 1.7; }
.accordion-item {
  padding: 28px 36px; border-radius: 28px; cursor: pointer;
  transition: all 0.4s ease; margin-bottom: 8px;
  background: #fff; border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.accordion-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  background: #111B47; border-radius: inherit;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s ease;
  z-index: 0;
}
.accordion-item:not(.active):hover::before {
  clip-path: inset(0 0 0 0);
}
.accordion-item:not(.active):hover { border-color: transparent; }
.accordion-item.active { background: #111B47; }
.accordion-item.active::before { clip-path: inset(0 0 0 0); }
.accordion-item-top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1;
}
.accordion-item-left { display: flex; align-items: center; gap: 24px; flex: 1; position: relative; z-index: 1; }
.accordion-number { font-size: 1.3rem; font-weight: 700; min-width: 48px; transition: color 0.3s; position: relative; z-index: 1; }
.accordion-item.active .accordion-number { color: #FF0040; }
.accordion-item:not(.active) .accordion-number { color: rgba(0,11,71,0.55); }
.accordion-item:not(.active):hover .accordion-number { color: #FF0040; }
.accordion-item h3 { font-size: 1.3rem; transition: color 0.3s; position: relative; z-index: 1; }
.accordion-item.active h3 { color: #fff; }
.accordion-item:not(.active) h3 { color: #111B47; }
.accordion-item:not(.active):hover h3 { color: #fff; }
.accordion-chevron {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0; position: relative; z-index: 1;
}
.accordion-item.active .accordion-chevron { background: #FF0040; }
.accordion-item:not(.active) .accordion-chevron { background: #FFFFFF; }
.accordion-item:not(.active):hover .accordion-chevron { background: #FF0040; }
.accordion-chevron svg { width: 20px; height: 20px; transition: transform 0.3s; position: relative; z-index: 1; }
.accordion-item.active .accordion-chevron svg { transform: rotate(180deg); color: #fff; }
.accordion-item:not(.active) .accordion-chevron svg { color: #FF0040; }
.accordion-item:not(.active):hover .accordion-chevron svg { color: #fff; }
.accordion-desc {
  overflow: hidden; max-height: 0; transition: max-height 0.4s ease, opacity 0.3s, padding 0.3s;
  opacity: 0; padding: 0 72px 0 0; position: relative; z-index: 1;
}
.accordion-item.active .accordion-desc {
  max-height: 200px; opacity: 1; padding: 20px 72px 0 0;
}
.accordion-desc p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

/* ===== INNOVATION / WHY CHOOSE ===== */
.innovation-section { padding: 100px 0; background: #fff; }
.innovation-header { text-align: center; margin-bottom: 60px; }
.innovation-header .badge { margin-bottom: 20px; }
.innovation-header h2 { max-width: 700px; margin: 0 auto; }
.innovation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.innovation-card {
  position: relative; overflow: hidden; border-radius: 28px; aspect-ratio: 3/4;
}
.innovation-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.innovation-card:hover img { transform: scale(1.08); }
.innovation-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #111B47 0%, transparent 50%);
}
.innovation-card-bottom { position: absolute; bottom: 28px; left: 28px; right: 28px; }
.innovation-card-bottom h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.innovation-card-bottom p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.innovation-card-dark {
  background: #111B47; border-radius: 28px; padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: flex-end; position: relative;
  aspect-ratio: 3/4;
}
.innovation-card-icon {
  position: absolute; top: 36px; left: 36px;
  width: 48px; height: 48px; border-radius: 16px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.innovation-card-icon svg { width: 24px; height: 24px; color: #FF0040; }
.innovation-card-dark h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.innovation-card-dark p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.innovation-card-bg-icon {
  position: absolute; bottom: 0; right: 0; padding: 20px; opacity: 0.06;
}
.innovation-card-bg-icon svg { width: 120px; height: 120px; color: #fff; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: #FFFFFF; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .badge { margin-bottom: 20px; }
.testimonials-header h2 { max-width: 600px; margin: 0 auto; }
.testimonials-slider { display: flex; align-items: center; justify-content: center; gap: 32px; }
.testimonial-side-avatars { display: flex; flex-direction: column; gap: 20px; }
.testimonial-side-avatars img {
  border-radius: 16px; object-fit: cover; opacity: 0.25; filter: grayscale(100%);
}
.testimonial-side-avatars img:nth-child(1) { width: 60px; height: 60px; }
.testimonial-side-avatars img:nth-child(2) { width: 90px; height: 90px; }
.testimonial-side-avatars.right img:nth-child(1) { width: 90px; height: 90px; }
.testimonial-side-avatars.right img:nth-child(2) { width: 60px; height: 60px; }
.testimonial-card {
  background: #fff; border-radius: 32px; padding: 48px; max-width: 800px; width: 100%;
  display: flex; gap: 40px; align-items: center; box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  position: relative; z-index: 2;
}
.testimonial-card img {
  width: 180px; height: 240px; border-radius: 24px; object-fit: cover; flex-shrink: 0;
}
.testimonial-content { flex: 1; }
.testimonial-quote { color: rgba(255,0,64,0.15); margin-bottom: 20px; }
.testimonial-quote svg { width: 48px; height: 48px; }
.testimonial-text { font-size: 1.05rem; color: #333333; line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author h4 { font-size: 1.1rem; color: #111B47; }
.testimonial-stars { display: flex; gap: 4px; margin-top: 8px; }
.testimonial-stars svg { width: 16px; height: 16px; color: #FF0040; fill: #FF0040; }
.testimonial-nav { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testimonial-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(0,11,71,0.12); background: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s;
}
.testimonial-nav button:hover { background: #FF0040; border-color: #FF0040; }
.testimonial-nav button:hover svg { color: #fff; }
.testimonial-nav button svg { width: 18px; height: 18px; color: rgba(51,51,51,0.4); }

/* ===== CEO SECTION ===== */
.ceo-section { background: #111B47; padding: 100px 0; }
.ceo-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.ceo-image { position: relative; }
.ceo-image img { width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); display: block; }
.ceo-image::before { content: ''; position: absolute; inset: -8px; border-radius: 28px; border: 2px solid rgba(255,0,64,0.3); z-index: -1; }
.ceo-message h2 { color: #fff; margin-bottom: 20px; }
.ceo-message h2::after { content: ''; display: block; width: 50px; height: 3px; background: #fff; border-radius: 2px; margin-top: 12px; }
.ceo-message p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.ceo-name { color: #fff !important; font-weight: 700; font-size: 1.1rem !important; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ===== CTA BANNER ===== */
.cta-section { background: #fff; padding: 80px 0; color: #111B47; border-top: 1px solid #FFFFFF; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; color: #111B47; }
.cta-content p { color: #333333; line-height: 1.7; margin-bottom: 28px; font-size: 1.05rem; }
.cta-details { display: flex; flex-direction: column; gap: 14px; }
.cta-item { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; color: #333333; }
.cta-item-icon {
  width: 40px; height: 40px; background: #FFFFFF; border-radius: 12px; border: 1px solid #fecaca;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-item-icon svg { stroke: #FF0040; }
.cta-form { background: #fff; border-radius: 24px; padding: 40px 36px; box-shadow: 0 12px 40px rgba(0,0,0,0.06); border: 2px solid #111B47; }
.cta-form h3 { color: #111B47; margin-bottom: 24px; font-size: 1.3rem; }
.cta-form input, .cta-form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid rgba(0,11,71,0.12); border-radius: 12px;
  font-family: inherit; font-size: 0.9rem; transition: all 0.3s; margin-bottom: 14px; background: #fff;
}
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: #111B47; box-shadow: 0 0 0 3px rgba(30,27,75,0.1); }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form .btn { width: 100%; text-align: center; padding: 16px; font-size: 1rem; border-radius: 12px; }
.cta-form .btn-outline-navy {
  background: #fff; color: #111B47; border: 2px solid #111B47;
}
.cta-form .btn-outline-navy:hover { background: #111B47; color: #fff; }

/* ===== HERO PAGES (inner) ===== */
.page-hero {
  background: linear-gradient(135deg, #111B47 0%, #111B47 100%); color: #fff;
  padding: 180px 0 120px; position: relative; overflow: hidden;
}
body[data-page="services"] .page-hero { padding: 220px 0 200px; }
body[data-page="pickdrop"] .page-hero { padding: 200px 0 160px; }
.page-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,0,64,0.1), transparent); border-radius: 50%; }
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p { position: relative; z-index: 1; opacity: 0.75; margin-top: 12px; max-width: 500px; }
.page-hero .hero-sub { font-size: 1.1rem; font-weight: 600; color: #FF0040; opacity: 1; margin-top: 8px; letter-spacing: 1px; }
.page-hero[style*="url"]::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,11,71,0.65); z-index: 0;
}

/* ===== ABOUT PAGE ===== */
.about-story { padding: 80px 0; }
.about-story p { max-width: 800px; margin: 0 auto; color: #333333; font-size: 1.05rem; line-height: 1.8; }
.mission-vision { padding: 80px 0; background: #FFFFFF; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { background: #fff; padding: 48px 40px; border-radius: 24px; border: 1px solid #FFFFFF; transition: box-shadow 0.3s; }
.mv-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.mv-card h3 { color: #FF0040; margin-bottom: 12px; }
.mv-card p { color: #333333; font-size: 0.95rem; line-height: 1.7; }
.fleet-section { padding: 80px 0; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fleet-card { background: #fff; padding: 36px 24px; text-align: center; border-radius: 20px; border: 1px solid #FFFFFF; transition: all 0.3s; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: rgba(0,11,71,0.12); }
.fleet-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.fleet-card h4 { color: #111B47; margin-bottom: 4px; }
.fleet-card p { color: #333333; font-size: 0.85rem; }


/* ===== SERVICES PAGE ===== */
.svc { padding: 90px 0; position: relative; overflow: hidden; background: #fff; }
.svc-bg-number { position: absolute; top: -20px; left: -10px; font-size: 12rem; font-weight: 900; color: rgba(0,11,71,0.03); line-height: 1; pointer-events: none; font-family: 'Oswald', sans-serif; }
.svc-reverse .svc-bg-number { left: auto; right: -10px; }
.svc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.svc-reverse .svc-inner { direction: rtl; }
.svc-reverse .svc-inner > * { direction: ltr; }
.svc-image { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.08); transform: translateY(0); transition: transform 0.5s ease, box-shadow 0.5s ease; }
.svc-image img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.7s ease; }
.svc-image:hover { transform: translateY(-6px); box-shadow: 0 32px 100px rgba(0,0,0,0.14); }
.svc-image:hover img { transform: scale(1.04); }
.svc-content { display: flex; flex-direction: column; }
.svc-label { font-size: 0.75rem; font-weight: 600; color: #FF0040; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.svc-content h2 { font-size: 24px; font-weight: 700; color: #111B47; margin-bottom: 20px; line-height: 1.2; position: relative; }
.svc-content h2::after { content: ''; display: block; width: 40px; height: 3px; background: #FF0040; border-radius: 2px; margin-top: 14px; }
.svc-content p { color: #444; font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.svc-meta { display: inline-block; font-size: 0.8rem; color: #666; background: rgba(255,0,64,0.06); padding: 8px 18px; border-radius: 50px; margin-bottom: 24px; align-self: flex-start; }
.svc-info-grid { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 20px; }
.svc-info-item { display: flex; flex-direction: column; gap: 2px; }
.svc-info-label { font-size: 0.65rem; font-weight: 600; color: #FF0040; text-transform: uppercase; letter-spacing: 1.5px; }
.svc-info-value { font-size: 0.85rem; color: #333; font-weight: 500; }
.svc-cta { display: inline-flex; align-items: center; gap: 8px; background: #FF0040; color: #fff; padding: 13px 30px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; text-decoration: none; align-self: flex-start; }
.svc-cta:hover { background: #CC0033; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,0,64,0.3); }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 600px; border-radius: 20px; overflow: hidden; border: 1px solid #FFFFFF; }
.comparison-table th { background: #FF0040; color: #fff; padding: 16px 20px; text-align: left; font-weight: 600; font-size: 0.9rem; }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid #FFFFFF; color: #333333; font-size: 0.9rem; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #FFFFFF; }

/* ===== PICK & DROP ===== */
.how-it-works { padding: 100px 0; background: #FFFFFF; position: relative; }
.how-it-works .hiw-header { text-align: center; margin-bottom: 60px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 64px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px; background: linear-gradient(90deg, #FF0040 0%, rgba(255,0,64,0.2) 100%);
  z-index: 0;
}
.step-card {
  text-align: center; padding: 40px 28px; border-radius: 20px;
  background: #fff; position: relative; z-index: 1;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards; opacity: 0;
}
.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.25s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }
.step-card:hover { transform: translateY(-8px); }
.step-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,0,64,0.08); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all 0.4s ease;
}
.step-icon svg { width: 28px; height: 28px; }
.step-card:hover .step-icon { background: #FF0040; }
.step-card:hover .step-icon svg { stroke: #fff; }
.step-badge {
  display: inline-block; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px;
  color: #FF0040; text-transform: uppercase; margin-bottom: 8px;
}
.step-card h3 { color: #111B47; margin-bottom: 12px; font-size: 1.25rem; font-weight: 700; }
.step-card p { color: #111B47; font-size: 0.92rem; line-height: 1.7; max-width: 320px; margin: 0 auto; opacity: 0.7; }
.step-number { display: none; }
.st-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.st-card { padding: 48px 36px; border-radius: 24px; transition: transform 0.3s; }
.st-card:hover { transform: translateY(-4px); }
.st-card.light { background: #fff; border: 1px solid #FFFFFF; }
.st-card.dark { background: #111B47; color: #fff; }
.st-card h3 { margin-bottom: 12px; }
.st-card.light h3 { color: #111B47; }
.st-card.dark h3 { color: #fff; }
.st-card p { font-size: 0.95rem; line-height: 1.7; }
.st-card.light p { color: #333333; }
.st-card.dark p { color: rgba(255,255,255,0.7); }
.pd-clients { padding: 20px 0; background: #ffffff; }
.pd-clients-list { display: flex; flex-direction: column; gap: 10px; max-width: 650px; margin: 0 auto; }
.pd-clients-list li { display: flex; justify-content: space-between; padding: 14px 24px; background: #FFFFFF; border-radius: 12px; font-size: 0.95rem; transition: background 0.3s; }
.pd-clients-list li:hover { background: #FFFFFF; }
.pd-clients-list li span:last-child { color: #FF0040; font-weight: 500; }
.enquiry { padding: 80px 0; background: #FFFFFF; }
.enquiry-form { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; background: #fff; padding: 40px 36px; border-radius: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.06); border: 2px solid #111B47; }
.enquiry-form h3 { color: #111B47; margin-bottom: 8px; font-size: 1.3rem; }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select { width: 100%; padding: 14px 18px; border: 2px solid rgba(0,11,71,0.12); border-radius: 12px; font-family: inherit; font-size: 0.9rem; background: #FFFFFF; transition: all 0.3s; box-sizing: border-box; }
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus { outline: none; border-color: #111B47; box-shadow: 0 0 0 3px rgba(0,11,71,0.08); background: #fff; }
.enquiry-form textarea { resize: vertical; min-height: 100px; }
.enquiry-form .btn { width: 100%; text-align: center; padding: 16px; font-size: 1rem; border-radius: 12px; margin-top: 8px; }
.enquiry-form .btn-outline-navy {
  background: #fff; color: #111B47; border: 2px solid #111B47;
}
.enquiry-form .btn-outline-navy:hover { background: #111B47; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,11,71,0.2); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: #ffffff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-left { display: flex; flex-direction: column; gap: 28px; }
.contact-mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 48px; }
.contact-mini-card {
  background: #fff; border-radius: 16px; border: 2px solid rgba(0,11,71,0.10); padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  transition: all 0.3s;
}
.contact-mini-card:hover { border-color: #FF0040; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,0,64,0.10); }
.cmc-icon { width: 44px; height: 44px; background: rgba(255,0,64,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cmc-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #FF0040; }
.cmc-value { font-size: 0.82rem; font-weight: 600; color: #111B47; word-break: break-word; }
.contact-map-heading {
  font-size: 1.15rem; font-weight: 800; color: #111B47; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1.5px; position: relative; padding-bottom: 10px;
}
.contact-map-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px;
  background: #FF0040; border-radius: 2px;
}
.contact-map-wrap { margin-top: 8px; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.contact-field-info {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 10px 16px;
  background: rgba(255,0,64,0.06); border-radius: 12px; font-size: 0.9rem; font-weight: 600; color: #111B47;
}
.contact-info-card { background: #fff; padding: 40px 36px; border-radius: 24px; border: 1px solid #FFFFFF; }
.contact-info-card h3 { color: #FF0040; margin-bottom: 24px; }
.contact-info-card p { margin-bottom: 14px; color: #333333; font-size: 0.95rem; display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.contact-info-card .icon { width: 40px; height: 40px; background: #FFFFFF; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form-wrap { background: #fff; padding: 40px 36px; border-radius: 24px; border: 2px solid #e5e7eb; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.contact-form-wrap h3 { color: #FF0040; margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea { padding: 14px 18px; border: 2px solid rgba(0,11,71,0.12); border-radius: 12px; font-family: inherit; font-size: 0.9rem; background: #FFFFFF; transition: all 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #FF0040; background: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all 0.3s; cursor: pointer;
  visibility: hidden; opacity: 0;
}
.whatsapp-float.whatsapp-visible { visibility: visible; opacity: 1; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== FOOTER MODERN ===== */
.footer {
  background: #111B47; padding: 70px 0 0; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #FF0040 0%, rgba(255,0,64,0.3) 50%, transparent 100%);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { margin-top: -30px; }
.footer-brand img { height: 120px; width: auto; margin-bottom: 8px; margin-left: -8px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
.footer h4 {
  color: #fff; margin-bottom: 22px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: #FF0040; border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #FF0040; transform: translateX(4px); }
.footer-contact p {
  color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: #FF0040; }
.footer-phone-single {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 10px;
}
.footer-phone-single a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.footer-phone-single a:hover { color: #FF0040; }
.footer-phone-single .divider { color: rgba(255,255,255,0.15); font-size: 0.7rem; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; border: 1px solid rgba(255,255,255,0.06);
}
.social-links a:hover { background: #FF0040; border-color: #FF0040; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,0,64,0.3); }
.social-links a svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); }
.social-links a:hover svg { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.3s; text-decoration: none; }
.footer-bottom-links a:hover { color: #FF0040; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dc-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .dc-header { margin-bottom: 40px; }
  .about-split-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stats-bar-item:nth-child(2) { border-left: 2px solid rgba(255,255,255,0.1); }
  .stats-bar-item:nth-child(3), .stats-bar-item:nth-child(4) { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
  .innovation-grid { grid-template-columns: 1fr 1fr; }
  .innovation-card:last-child { grid-column: span 2; aspect-ratio: auto; min-height: 300px; }
  .ceo-grid { grid-template-columns: 1fr; gap: 40px; }
  .ceo-image { max-width: 400px; margin: 0 auto; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-side-avatars { display: none; }
  .testimonial-card { flex-direction: column; text-align: center; padding: 24px; }
  .testimonial-card img { width: 100px; height: 120px; }
  .testimonials-carousel { padding: 0 60px; }
  .mv-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-inner { grid-template-columns: 1fr; gap: 36px; }
  .st-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
}

@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .hero-deco-circle { width: 300px; height: 300px; top: -80px; right: -80px; }
  .hero-deco-circle-2 { width: 200px; height: 200px; bottom: -30px; left: -50px; }
  .innovation-grid { grid-template-columns: 1fr; }
  .innovation-card:last-child { grid-column: span 1; }
  .innovation-card, .innovation-card-dark { aspect-ratio: auto; min-height: 280px; }
  .about-split { padding: 60px 0; }
  .services-accordion { padding: 60px 0; }
  .accordion-item { padding: 20px 24px; }
  .accordion-item-top { flex-wrap: wrap; }
  .accordion-item-left { flex-wrap: wrap; gap: 12px; flex-direction: column; align-items: flex-start; }
  .accordion-item h3 { font-size: 1.1rem; word-break: break-word; }
  .accordion-number { min-width: auto; }
  .fleet-grid { grid-template-columns: 1fr; }
  .svc { padding: 60px 0; }
  .svc-inner { gap: 32px; }
  .svc-content h2 { font-size: 1.5rem; }
  .svc-bg-number { font-size: 7rem; top: -10px; }
  .cta-form, .contact-form-wrap, .contact-info-card { padding: 28px 24px; }
  .contact-mini-cards { grid-template-columns: 1fr; gap: 10px; }
  .contact-mini-card { padding: 16px 12px; flex-direction: row; text-align: left; gap: 12px; }
  .cmc-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .enquiry-form { padding: 28px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .client-logo-wrap { margin: 0 14px; }
  .client-logo { height: 70px; }
  .section-padded { padding: 60px 0; }
  .stats-bar { padding: 60px 0; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .stats-bar-item { padding: 0 0 0 20px; }
  .stats-bar-item h3 { font-size: 2rem; }
  .step-card { padding: 28px 20px; }
  .page-hero { padding: 120px 0 60px; }
  body[data-page="services"] .page-hero, body[data-page="about"] .page-hero { padding: 200px 0 60px; }
  body[data-page="services"] .page-hero .container p, body[data-page="about"] .page-hero .container p { display: none !important; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .fleet-card { padding: 24px 16px; }
  .about-form-inner { padding: 24px 20px; }
  .accordion-desc { padding: 0 !important; }
  .accordion-item.active .accordion-desc { padding: 16px 0 0 !important; }
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 12px 0; }
  .navbar .container { padding: 0 16px; }
  .navbar-brand img { height: 80px; }
  .navbar.scrolled .navbar-brand img { height: 70px; }
  body[data-page="home"] .navbar-brand { margin-left: 0; }
  body[data-page="home"] .navbar .container { padding-left: 16px; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; background: #FF0040; border-radius: 8px; padding: 10px; }
  .hamburger:hover { background: #CC0033; }
  .hamburger span { background: #fff; }
  .navbar .hamburger { background: #FF0040; }
  .navbar.scrolled .hamburger { background: #FF0040; }
  .nav-links-wrap { display: none; }
  .nav-links-wrap.open { display: flex; position: fixed; top: 80px; right: 16px; width: 220px; background: #111B47 !important; border-radius: 12px; padding: 16px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.3); flex-direction: column; z-index: 9999; }
  .nav-links-wrap.open .nav-links { flex-direction: column; gap: 2px; }
  .nav-links-wrap.open .nav-links a { font-size: 0.95rem; padding: 10px 24px; color: #FF0040; display: block; }
  .nav-links-wrap.open .nav-links a:hover, .nav-links-wrap.open .nav-links a.active { color: #fff; background: rgba(255,0,64,0.2); }
  .nav-links-wrap.open .nav-cta { display: block; padding: 12px 24px 4px; }
  .nav-links-wrap.open .nav-cta .btn { display: inline-flex; font-size: 0.85rem; padding: 10px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .team-section { padding: 60px 0; }
  .dc-grid { grid-template-columns: 1fr; gap: 32px; }
  .driving-change { padding: 60px 0; }
  .hero p { font-size: 1rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { text-align: center; width: auto; justify-content: center; padding: 12px 20px; font-size: 0.85rem; }
  .stats-bar-item { padding: 0 0 0 14px; }
  .stats-bar-item h3 { font-size: 1.6rem; }
  .stats-bar-item p { font-size: 0.65rem; }
  .svc-content h2 { font-size: 1.3rem; }
  .svc-bg-number { font-size: 5rem; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

body[data-page="home"] .driving-change { background: #111B47; color: #fff; }
body[data-page="home"] .driving-change .dc-header h2 { color: #fff; }
body[data-page="home"] .driving-change .dc-header p { color: rgba(255,255,255,0.75); }
body[data-page="home"] .driving-change .dc-number { color: #fff; }
body[data-page="home"] .driving-change .dc-suffix { color: #fff; }
body[data-page="home"] .driving-change .dc-label { color: rgba(255,255,255,0.65); }

.swift-hero {
  position: relative;
  overflow: hidden;
  border: solid #fff;
  border-width: 12px 12px 0 12px;
  border-radius: 40px;
  background-color: #111B47;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .swift-hero { border-width: 0; border-radius: 0; }
}
.swift-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 30%),
    radial-gradient(ellipse 70% 30% at 50% 100%, rgba(0,0,0,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 20% at 50% 0%, rgba(0,0,0,0.15) 0%, transparent 50%);
}
@keyframes heroAtmosphere {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}
.swift-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* ===== CLIENT TESTIMONIALS ===== */
.testimonials-section {
  position: relative; padding: 40px 16px; overflow: hidden;
  background: #ffffff;
}
.testimonials-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 0% 50%, rgba(255,0,64,0.06) 0%, transparent 60%);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.testimonials-top { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 0; padding-top: 60px; }
.testimonials-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 8px 20px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06); margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.testimonials-badge:hover { transform: scale(1.05); }
.testimonials-badge svg { animation: pulse 2s infinite; }
.testimonials-badge span { font-size: 0.85rem; font-weight: 600; color: #334155; letter-spacing: 0.5px; }
.testimonials-top h2 {
  color: #111B47; font-size: 28px;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 700; line-height: 1.2; margin: 0;
}
.testimonials-underline {
  width: 80px; height: 4px; background: #FF0040;
  margin: 4px auto 0; border-radius: 2px;
}

.testimonials-carousel {
  position: relative; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}

.testimonial-side {
  position: absolute; cursor: pointer; transition: all 0.7s ease; z-index: 5;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.testimonial-side img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-side:hover { opacity: 1 !important; z-index: 20; }
.ts-side-1 { width: 80px; height: 80px; opacity: 0.35; }
.ts-side-2 { width: 100px; height: 100px; opacity: 0.55; }
.ts-pos-l2 { left: 0%; top: 50%; transform: translateY(-50%); }
.ts-pos-l1 { left: 11%; top: 50%; transform: translateY(-50%); }
.ts-pos-r1 { right: 11%; top: 50%; transform: translateY(-50%); }
.ts-pos-r2 { right: 0%; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) {
  .ts-side-1 { width: 100px; height: 100px; }
  .ts-side-2 { width: 140px; height: 140px; }
  .ts-pos-l2 { left: 0.5%; }
  .ts-pos-l1 { left: 12%; }
  .ts-pos-r1 { right: 12%; }
  .ts-pos-r2 { right: 0.5%; }
}

.testimonial-card {
  max-width: 550px; width: 100%; background: #fff;
  border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  padding: 8px; display: flex; flex-direction: column; gap: 6px;
  position: relative; z-index: 10; transition: all 0.7s ease;
  border: 1px solid rgba(255,255,255,0.8);
}
@media (min-width: 768px) {
  .testimonial-card { flex-direction: row; padding: 10px; gap: 10px; }
}
.testimonial-card-img {
  width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden; flex-shrink: 0;
}
@media (min-width: 768px) { .testimonial-card-img { width: 35%; min-height: 180px; } }
.testimonial-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.testimonial-card-img:hover img { transform: scale(1.05); }
.testimonial-card-body {
  flex: 1; display: flex; flex-direction: column; justify-content: space-between; position: relative; padding-left: 12px;
}
.testimonial-quote-icon {
  position: absolute; top: -6px; right: 0; opacity: 0.12;
  width: 36px; height: 36px; color: #94a3b8;
}
.testimonial-text {
  font-size: 0.9rem; line-height: 1.6; color: #475569; font-style: italic; margin-top: 10px; padding-right: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .testimonial-text { font-size: 0.95rem; margin-top: 16px; } }
.testimonial-footer {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid #f1f5f9;
  display: flex; flex-direction: column; gap: 6px;
}
@media (min-width: 640px) {
  .testimonial-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.testimonial-author h4 { font-weight: 700; color: #1e293b; font-size: 0.9rem; }
.testimonial-author p { font-size: 0.65rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.testimonial-stars { display: flex; gap: 2px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: #fbbf24; color: #fbbf24; }

.testimonials-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 0;
}
.tn-arrow {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.1); background: transparent; color: #475569; cursor: pointer;
  transition: all 0.3s;
}
.tn-arrow:hover { background: #fff; color: #1e293b; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.tn-arrow:active { transform: scale(0.95); }
.tn-arrow-solid { background: #fff; border-color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@media (max-width: 767px) {
  .nav-bar { padding: 4px 16px !important; justify-content: space-between !important; }
  .nav-bar.scrolled { padding: 4px 16px !important; }
  .nav-bar .brand { position: static !important; left: auto !important; }
  .nav-bar .brand img { height: 60px !important; }
  .nav-bar > .flex:last-child { position: static !important; margin-right: 4px !important; }
  .swift-hero { min-height: 100vh !important; padding: 24px !important; overflow: visible !important; }
  
  .hero-main { padding-bottom: 12px !important; }
  .glass-badge { padding: 4px 14px !important; margin-bottom: 8px !important; margin-top: -3rem !important; }
  .glass-badge svg { width: 12px !important; height: 12px !important; }
  .glass-badge span { font-size: 0.65rem !important; }
  .swift-hero h1, .hero-main h1 { font-size: clamp(2rem, 7vw, 2.4rem) !important; line-height: 1.15 !important; max-width: 100% !important; }
  .home-hero h1 { margin-top: 1rem !important; }
  .hero-main h1 .block { margin-bottom: 6px !important; }
  .hero-main .flex.flex-col a { width: 80% !important; padding: 15px 20px !important; font-size: 0.9rem !important; border-radius: 50px !important; }
  .hero-footer { display: none !important; }
  .swift-hero .swift-mobile-cta { display: flex !important; flex-direction: column; align-items: center; gap: 8px; z-index: 30; position: relative; margin-top: auto; padding-bottom: 24px; }
  .swift-mobile-cta a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #FF0040; color: #fff; font-weight: 700; font-size: 1rem; padding: 16px 32px; border-radius: 50px; box-shadow: 0 8px 30px rgba(255,0,64,0.35); text-decoration: none; transition: transform 0.2s; width: 100%; max-width: 320px; }
  .swift-mobile-cta a:active { transform: scale(0.97); }
  .home-hero { min-height: 60vh !important; padding-bottom: 20px !important; }
  .swift-hero .absolute.bottom-0 svg { height: 40px !important; }
  .swift-scroll-indicator { display: flex !important; flex-direction: column; align-items: center; gap: 4px; color: rgba(255,255,255,0.4); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 12px; }
  .swift-scroll-indicator .scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); animation: scrollPulse 2s infinite; }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: translateY(0); } 50% { opacity: 1; transform: translateY(4px); } }
  .testimonial-side { display: none !important; }
  .test-dash { display: none !important; }
  .testimonial-text { -webkit-line-clamp: unset !important; text-align: left !important; }
  .testimonial-stars { justify-content: center !important; }
  .testimonial-author h4 { font-size: 1rem !important; }
  .testimonials-carousel { min-height: auto !important; padding: 0 !important; }
  .testimonial-card { max-width: 85% !important; margin: 24px auto !important; }
}
@media (min-width: 768px) {
  .swift-mobile-cta { display: none !important; }
  .swift-scroll-indicator { display: none !important; }
}

/* ===== HERO CARD STACK ===== */
.hero-card-stack { position: relative; display: inline-flex; width: 100%; }
.hero-card-stack > a { position: relative; z-index: 1; width: 100%; }
.hero-card-stack .stack-behind {
  position: absolute; top: 0; bottom: 0;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.hero-card-stack .stack-behind.sb-1 { right: -12px; width: 96%; border-radius: 22px; z-index: -1; }
.hero-card-stack .stack-behind.sb-2 { right: -20px; width: 92%; border-radius: 20px; z-index: -2; }
.hero-partners-badge { margin-left: -8px; }
.hero-car-stack { margin-right: 0; }
.hero-car-stack .fleet-img-wrap { overflow: hidden; border-radius: inherit; transition: transform 0.4s ease; }
.hero-car-stack:hover .fleet-img-wrap { transform: scale(1.1); }

/* ===== HOME PAGE – STICKY HERO CURTAIN EFFECT (REMOVED) ===== */
