/* =========================================================
   ORBITCAB — Design System
   Royal Blue #2563EB | Navy #0B1530 | Light grey #F5F7FB
   Font: Poppins
========================================================= */

:root{
  --primary: #2563EB;
  --primary-dark: #1741B5;
  --primary-light: #60A5FA;
  --navy: #0B1530;
  --navy-soft: #101B3D;
  --ink: #0F172A;
  --grey-50: #F8FAFC;
  --grey-100: #F1F5F9;
  --grey-200: #E7ECF3;
  --grey-500: #64748B;
  --grey-700: #334155;
  --white: #FFFFFF;
  --gold: #F5B301; /* used sparingly for premium accent (rating stars etc.) */

  --grad-primary: linear-gradient(135deg,#60A5FA 0%, #2563EB 55%, #123A9E 100%);
  --grad-navy: linear-gradient(160deg,#0B1530 0%, #16224A 100%);
  --grad-line: linear-gradient(90deg, rgba(37,99,235,0) 0%, #2563EB 50%, rgba(37,99,235,0) 100%);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(15,23,42,.06);
  --shadow-md: 0 12px 30px rgba(15,23,42,.10);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.16);
  --shadow-primary: 0 14px 34px rgba(37,99,235,.30);

  --container: 1200px;
  --nav-h: 82px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Poppins', sans-serif;
  color:var(--ink);
  background:var(--white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
section{ position:relative; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ============ Typography ============ */
h1,h2,h3,h4{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  color:var(--navy);
  line-height:1.15;
  margin:0;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:26px;height:2px;
  background:var(--primary);
  border-radius:2px;
}
.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.section-head h2{ font-size:clamp(28px,4vw,42px); }
.section-head p{ color:var(--grey-500); font-size:16px; margin-top:14px; line-height:1.7;}
.section-head.left{ margin:0 0 48px; text-align:left; }

.section-pad{ padding:96px 0; }
.bg-grey{ background:var(--grey-50); }
.bg-navy{ background:var(--grad-navy); color:var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4{ color:var(--white); }

/* ============ Buttons ============ */
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  font-size:15px;
  font-weight:600;
  border-radius:var(--radius-pill);
  border:none;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--grad-primary);
  color:#fff;
  box-shadow:var(--shadow-primary);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 40px rgba(37,99,235,.38); }
.btn-outline{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover{ background:rgba(255,255,255,.12); transform:translateY(-3px); }
.btn-dark{
  background:var(--navy);
  color:#fff;
}
.btn-dark:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.btn-outline-primary{
  background:transparent; color:var(--primary); border:1.5px solid var(--primary);
}
.btn-outline-primary:hover{ background:var(--primary); color:#fff; transform:translateY(-3px); box-shadow:var(--shadow-primary); }
.btn-sm{ padding:11px 22px; font-size:14px; }
.btn-block{ width:100%; }

.ripple{ position:absolute; border-radius:50%; transform:scale(0); animation:ripple .6s linear; background:rgba(255,255,255,.55); pointer-events:none; }
@keyframes ripple{ to{ transform:scale(4); opacity:0; } }

/* ============ Loader ============ */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:var(--navy);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#loader.hide{ opacity:0; visibility:hidden; }
.loader-ring{
  width:74px;height:74px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.15);
  border-top-color:var(--primary-light);
  animation:spin 0.9s linear infinite;
  position:relative;
}
.loader-ring::after{
  content:'';
  position:absolute; inset:10px;
  border-radius:50%;
  border:4px solid transparent;
  border-bottom-color:#fff;
  animation:spin 1.3s linear infinite reverse;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ============ Header / Navbar ============ */
header.site-header{
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  height:82px;
  display:flex; align-items:center;
  background:#FFFFFF;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .35s ease;
  animation:navSlide .7s ease both;
}
@keyframes navSlide{ from{ transform:translateY(-100%); } to{ transform:translateY(0); } }
header.site-header.scrolled{
  box-shadow:var(--shadow-md);
}
.nav-wrap{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:42px; width:auto; }
.brand-text{ font-weight:700; font-size:20px; letter-spacing:.02em; color:var(--navy); }
.brand-logo-full{ height:66px !important; width:auto; }

.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-links a{
  font-size:15px; font-weight:500; color:var(--navy);
  position:relative; padding:6px 0;
  transition:color .25s;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:2px; background:var(--primary);
  transition:width .3s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  width:30px; background:none; border:none; padding:0;
}
.nav-toggle span{ height:2px; width:100%; background:var(--navy); border-radius:2px; transition:.3s; }

@media (max-width: 960px){
  .nav-links{
    position:fixed; top:82px; left:0; right:0;
    background:#fff; flex-direction:column; align-items:flex-start;
    padding:20px 24px 26px; gap:18px;
    box-shadow:var(--shadow-md);
    transform:translateY(-12px); opacity:0; visibility:hidden;
    transition:all .35s ease;
  }
  .nav-links.open{ transform:translateY(0); opacity:1; visibility:visible; }
  .nav-toggle{ display:flex; }
}

@media (max-width: 640px){
  :root{ --nav-h:64px; }
  header.site-header{ height:64px; }
  .nav-links{ top:64px; }
  .brand-logo-full{ height:42px !important; }
}

@media (max-width: 480px){
  .nav-actions{ gap:8px; }
  .nav-actions .btn-sm{ padding:9px 12px; font-size:12.5px; }
}

/* ============ Hero ============ */
.hero{
  min-height:auto;
  display:flex; align-items:center;
  position:relative;
  background:var(--grad-navy);
  overflow:hidden;
  padding-top:var(--nav-h);
}
.hero::before{
  content:'';
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(700px 460px at 82% 18%, rgba(96,165,250,.28), transparent 60%),
    radial-gradient(600px 500px at 8% 92%, rgba(37,99,235,.22), transparent 60%);
  pointer-events:none;
}
.hero-bg-video{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit:cover;
  pointer-events:none;
}
.hero-bg-overlay{
  position:absolute; inset:0; z-index:0;
  background:var(--grad-navy);
  opacity:.72;
  pointer-events:none;
}
.hero-route{
  position:absolute; inset:0; width:100%; height:100%;
  pointer-events:none; opacity:.55; z-index:1;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:start;
  width:100%;
  padding:56px 0 70px;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  padding:8px 18px; border-radius:var(--radius-pill);
  color:#BFD3FF; font-size:13px; font-weight:600; letter-spacing:.06em;
  margin-bottom:26px;
}
.hero-eyebrow .dot{ width:7px;height:7px;border-radius:50%; background:#4ADE80; box-shadow:0 0 0 4px rgba(74,222,128,.2); }

.hero h1{
  color:#fff;
  font-size:clamp(36px, 5.2vw, 60px);
  font-weight:700;
  letter-spacing:-.01em;
  max-width:640px;
}
.hero h1 .type-word{ color:var(--primary-light); border-right:3px solid var(--primary-light); padding-right:4px; }
.hero p.lead{
  color:#B9C4DE; font-size:17px; line-height:1.8; max-width:520px; margin:24px 0 36px;
}
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:36px; margin-top:56px; flex-wrap:wrap;
}
.hero-stats .stat{ min-width:110px; }
.hero-stats .num{ font-size:32px; font-weight:700; color:#fff; }
.hero-stats .num span{ color:var(--primary-light); }
.hero-stats .label{ font-size:13px; color:#9DAEC f; color:#93A3C4; margin-top:4px; }

.hero-visual{
  position:relative;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  width:100%;
}
.hero-form-card{
  position:relative; width:100%; max-width:480px;
  background:#fff;
  border-radius:26px;
  padding:32px 28px 26px;
  box-shadow:var(--shadow-lg);
}
.hero-form-card .hf-head{ margin-bottom:20px; }
.hero-form-card .hf-head h3{ font-size:19px; margin-bottom:4px; }
.hero-form-card .hf-head p{ font-size:13px; color:var(--grey-500); margin:0; }
.hero-form-card .field{ margin-bottom:16px; }
.hero-form-card .form-row{ gap:14px; }
.hero-form-card label{ font-size:12.5px; }
.hero-form-card input, .hero-form-card select, .hero-form-card textarea{ padding:12px 14px; font-size:13.5px; }
.hero-form-card textarea{ min-height:76px; }

@media (max-width: 480px){
  .hero-form-card{ padding:22px 18px 18px; border-radius:20px; }
  .hero-form-card .hf-head{ margin-bottom:14px; }
  .hero-form-card .hf-head h3{ font-size:17px; }
  .hero-form-card .hf-head p{ font-size:12px; }
  .hero-form-card .field{ margin-bottom:12px; }
  .hero-form-card .form-row{ gap:10px; }
  .hero-form-card label{ font-size:11.5px; margin-bottom:4px; }
  .hero-form-card input, .hero-form-card select, .hero-form-card textarea{ padding:10px 12px; font-size:13px; }
  .hero-form-card textarea{ min-height:60px; }
  .hero-trust-row{ margin-top:16px; gap:10px; }
  .trust-chip{ padding:8px 12px; }
}

.hero-trust-row{
  display:flex; gap:8px; margin-top:22px; flex-wrap:nowrap; justify-content:center;
  width:100%;
}
.trust-chip{
  display:flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding:9px 10px; border-radius:var(--radius-pill);
  white-space:nowrap;
}
.trust-chip i{ color:var(--primary-light); font-size:13px; }
.trust-chip .t1{ font-size:11px; font-weight:700; color:#fff; }
.trust-chip .t2{ font-size:9.5px; color:#93A3C4; }

@media (max-width: 480px){
  .hero-trust-row{ flex-wrap:wrap; max-width:480px; gap:10px; }
  .trust-chip{ gap:8px; padding:8px 12px; }
  .trust-chip i{ font-size:15px; }
  .trust-chip .t1{ font-size:12.5px; }
  .trust-chip .t2{ font-size:10.5px; }
}

@media (max-width: 900px){
  .hero-visual{ margin-top:40px; }
}

.scroll-cue{
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:#8DA0C7; font-size:11px; letter-spacing:.12em; text-transform:uppercase;
}
.scroll-cue .line{ width:1px; height:34px; background:linear-gradient(#8DA0C7, transparent); animation:scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ transform:scaleY(0); transform-origin:top; } 50%{ transform:scaleY(1); transform-origin:top; } 51%{ transform-origin:bottom; } 100%{ transform:scaleY(0); transform-origin:bottom; } }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero p.lead{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-stats{ justify-content:center; }
  .hero-visual{ margin-top:40px; }
  .hero-badge.b1, .hero-badge.b2{ display:none; }
}

/* ============ Reveal animation ============ */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(.92); transition:opacity .7s ease, transform .7s ease; }
.reveal-scale.in{ opacity:1; transform:scale(1); }
.stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ============ About / Feature blocks ============ */
.about-grid{
  display:grid; grid-template-columns:.95fr 1.05fr; gap:64px; align-items:center;
}
.about-media{ position:relative; }
.about-media .frame{
  border-radius:var(--radius-lg);
  background:var(--grad-primary);
  padding:8px;
  box-shadow:var(--shadow-lg);
}
.about-media .frame-inner{
  background:var(--white);
  border-radius:22px;
  padding:46px 30px;
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.about-media .frame-inner img{ width:78%; max-width:340px; }
.about-media .frame-inner h4{ font-size:15px; color:var(--grey-500); font-weight:500; text-align:center; }
.orbit-deco{ position:absolute; border-radius:50%; border:2px dashed rgba(37,99,235,.25); }
.orbit-deco.o1{ width:120px; height:120px; top:-30px; right:-30px; animation:rotateSlow 20s linear infinite; }
.orbit-deco.o2{ width:70px; height:70px; bottom:-20px; left:-20px; animation:rotateSlow 14s linear infinite reverse; }
@keyframes rotateSlow{ to{ transform:rotate(360deg); } }

.about-list{ margin-top:28px; display:flex; flex-direction:column; gap:18px; }
.about-list li{ display:flex; gap:14px; align-items:flex-start; }
.about-list .ico{
  flex:none; width:38px; height:38px; border-radius:12px;
  background:rgba(37,99,235,.1); color:var(--primary);
  display:flex; align-items:center; justify-content:center; font-size:15px;
}
.about-list b{ display:block; font-size:15px; color:var(--navy); margin-bottom:2px; }
.about-list span{ font-size:14px; color:var(--grey-500); }

@media (max-width: 900px){
  .about-grid{ grid-template-columns:1fr; gap:44px; }
}

/* ============ Counters ============ */
.counter-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.counter-card{
  text-align:center; padding:38px 20px;
  background:var(--white); border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--grey-200);
  transition:transform .35s ease, box-shadow .35s ease;
}
.counter-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.counter-card i{ font-size:26px; color:var(--primary); margin-bottom:14px; }
.counter-num{ font-size:36px; font-weight:700; color:var(--navy); }
.counter-num span{ color:var(--primary); }
.counter-label{ font-size:14px; color:var(--grey-500); margin-top:6px; }

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

/* ============ Why choose us ============ */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.why-card{
  background:var(--white); border-radius:var(--radius-md);
  padding:38px 30px; border:1px solid var(--grey-200);
  box-shadow:var(--shadow-sm);
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  position:relative; overflow:hidden;
}
.why-card::before{
  content:''; position:absolute; inset:0; opacity:0;
  background:var(--grad-primary); transition:opacity .4s ease; z-index:0;
}
.why-card:hover::before{ opacity:1; }
.why-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:transparent; }
.why-card:hover *{ color:#fff !important; }
.why-card:hover .why-ico{ background:rgba(255,255,255,.18); color:#fff; }
.why-card > *{ position:relative; z-index:1; }
.why-ico{
  width:56px;height:56px; border-radius:16px;
  background:rgba(37,99,235,.1); color:var(--primary);
  display:flex; align-items:center; justify-content:center; font-size:22px;
  margin-bottom:22px; transition:.4s ease;
}
.why-card h3{ font-size:19px; margin-bottom:10px; }
.why-card p{ font-size:14px; color:var(--grey-500); line-height:1.7; margin:0; transition:.4s ease; }

@media (max-width:900px){ .why-grid{ grid-template-columns:1fr; } }

/* ============ Services cards ============ */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.service-card{
  background:var(--white); border-radius:var(--radius-md);
  overflow:hidden; border:1px solid var(--grey-200);
  box-shadow:var(--shadow-sm);
  transition:transform .4s ease, box-shadow .4s ease;
}
.service-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.service-top{
  height:150px; position:relative; overflow:hidden;
  background:var(--grad-primary);
  display:flex; align-items:center; justify-content:center;
}
.service-top::after{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 55%);
}
.service-top i{ font-size:42px; color:#fff; transition:transform .5s ease; z-index:1; }
.service-card:hover .service-top i{ transform:scale(1.18) rotate(-6deg); }
.service-body{ padding:26px 26px 30px; }
.service-body h3{ font-size:18px; margin-bottom:10px; }
.service-body p{ font-size:14px; color:var(--grey-500); line-height:1.7; margin:0 0 16px; }
.service-link{ font-size:13.5px; font-weight:600; color:var(--primary); display:inline-flex; align-items:center; gap:6px; }
.service-link i{ transition:transform .3s ease; font-size:12px; }
.service-card:hover .service-link i{ transform:translateX(5px); }

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

/* ============ Fleet ============ */
.fleet-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.fleet-grid.fleet-grid-4col{ grid-template-columns:repeat(4,1fr); }
.fleet-card{
  background:var(--white); border-radius:var(--radius-md);
  overflow:hidden; border:1px solid var(--grey-200);
  box-shadow:var(--shadow-sm);
  transition:transform .4s ease, box-shadow .4s ease;
  display:flex; flex-direction:column;
}
.fleet-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.fleet-visual{
  height:200px; position:relative;
  background:linear-gradient(180deg,#EAF1FC 0%,#F7FAFF 55%,#FFFFFF 100%);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.fleet-visual::before{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.06) 100%),
    radial-gradient(340px 200px at 75% 20%, rgba(96,165,250,.35), transparent 60%);
}
.fleet-visual svg{ width:76%; position:relative; z-index:1; transition:transform .5s ease; }
.fleet-card:hover .fleet-visual svg{ transform:scale(1.08) translateY(-4px); }
.fleet-visual img{
  width:100%; height:100%; object-fit:contain; object-position:center center;
  position:relative; z-index:0; transition:transform .5s ease;
  padding:10px 6px;
}
.fleet-card:hover .fleet-visual img{ transform:scale(1.05); }
.fleet-tag{
  position:absolute; top:14px; left:14px; z-index:2;
  background:rgba(10,18,40,.6); color:#fff; border:1px solid rgba(255,255,255,.25);
  font-size:11.5px; font-weight:600; padding:6px 13px; border-radius:var(--radius-pill);
  backdrop-filter:blur(4px);
}
.fleet-models{ font-size:12px; color:var(--grey-500); line-height:1.7; margin:0; }
.fleet-models b{ color:var(--dark); font-weight:600; }
.fleet-body{ padding:24px 24px 26px; display:flex; flex-direction:column; gap:16px; flex:1; }
.fleet-body h3{ font-size:19px; }
.fleet-specs{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.fleet-specs div{ text-align:center; }
.fleet-specs i{ display:block; color:var(--primary); font-size:16px; margin-bottom:6px; }
.fleet-specs span{ font-size:11.5px; color:var(--grey-500); font-weight:500; }
.fleet-body .btn{ margin-top:auto; }

@media (max-width:980px){ .fleet-grid{ grid-template-columns:repeat(2,1fr); } .fleet-grid.fleet-grid-4col{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .fleet-grid{ grid-template-columns:1fr; } .fleet-grid.fleet-grid-4col{ grid-template-columns:1fr; } }

/* ============ Testimonials ============ */
.testi-wrap{ position:relative; max-width:780px; margin:0 auto; }
.testi-slide{
  display:none; text-align:center; padding:10px 10px 0;
}
.testi-slide.active{ display:block; animation:fadeIn .6s ease; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
.testi-stars{ color:var(--gold); font-size:16px; margin-bottom:18px; letter-spacing:3px; }
.testi-slide p{ font-size:19px; line-height:1.8; color:var(--navy); font-weight:500; }
.testi-person{ margin-top:26px; display:flex; flex-direction:column; align-items:center; gap:4px; }
.testi-avatar{
  width:56px;height:56px;border-radius:50%; background:var(--grad-primary);
  display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:18px;
  margin-bottom:8px;
}
.testi-person b{ font-size:15px; }
.testi-person span{ font-size:13px; color:var(--grey-500); }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:34px; }
.testi-dots button{
  width:9px; height:9px; border-radius:50%; background:var(--grey-200); border:none; padding:0; transition:.3s;
}
.testi-dots button.active{ width:26px; border-radius:6px; background:var(--primary); }
.testi-arrow{
  position:absolute; top:38%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%; background:#fff; border:1px solid var(--grey-200);
  box-shadow:var(--shadow-sm); color:var(--navy); font-size:15px;
  display:flex; align-items:center; justify-content:center; transition:.3s;
}
.testi-arrow:hover{ background:var(--primary); color:#fff; border-color:var(--primary); }
.testi-arrow.prev{ left:-64px; } .testi-arrow.next{ right:-64px; }
@media (max-width:860px){ .testi-arrow{ display:none; } }

/* ============ Logos slider (trusted) ============ */
.logo-marquee{ overflow:hidden; position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.logo-track{
  display:flex; gap:64px; width:max-content;
  animation:scrollX 26s linear infinite;
  align-items:center;
}
.logo-track span{
  font-family:'Poppins',sans-serif; font-weight:700; font-size:20px; color:var(--grey-500);
  white-space:nowrap; opacity:.75; transition:.3s;
}
.logo-track span:hover{ opacity:1; color:var(--primary); }
@keyframes scrollX{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============ CTA banner ============ */
.cta-banner{
  border-radius:var(--radius-lg);
  background:var(--grad-primary);
  padding:64px 50px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
  box-shadow:var(--shadow-primary);
}
.cta-banner::before{
  content:''; position:absolute; width:340px; height:340px; border-radius:50%;
  border:2px dashed rgba(255,255,255,.25); top:-140px; right:-100px;
  animation:rotateSlow 30s linear infinite;
}
.cta-banner h2{ color:#fff; font-size:clamp(24px,3vw,34px); max-width:480px; }
.cta-banner p{ color:rgba(255,255,255,.85); margin-top:10px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; position:relative; z-index:1; }

/* ============ Timeline (About) ============ */
.timeline{ position:relative; max-width:900px; margin:0 auto; }
.timeline::before{
  content:''; position:absolute; left:24px; top:6px; bottom:6px; width:2px;
  background:linear-gradient(var(--grey-200),var(--primary),var(--grey-200));
}
.tl-item{ position:relative; padding-left:70px; margin-bottom:42px; }
.tl-item:last-child{ margin-bottom:0; }
.tl-dot{
  position:absolute; left:0; top:0; width:50px; height:50px; border-radius:50%;
  background:var(--grad-primary); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:18px; box-shadow:var(--shadow-primary);
}
.tl-item .date{ font-size:13px; font-weight:700; color:var(--primary); letter-spacing:.05em; text-transform:uppercase; }
.tl-item h4{ font-size:19px; margin:6px 0 8px; }
.tl-item p{ font-size:14px; color:var(--grey-500); line-height:1.7; margin:0; }

/* ============ Mission / Vision cards ============ */
.mv-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.mv-card{
  background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-md);
  padding:38px 34px; box-shadow:var(--shadow-sm);
  border-top:4px solid var(--primary);
}
.mv-card i{ font-size:28px; color:var(--primary); margin-bottom:16px; }
.mv-card h3{ font-size:20px; margin-bottom:12px; }
.mv-card p{ font-size:14.5px; color:var(--grey-500); line-height:1.8; margin:0; }
@media (max-width:760px){ .mv-grid{ grid-template-columns:1fr; } }

/* ============ Presence cities ============ */
.city-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.city-chip{
  display:flex; align-items:center; gap:10px;
  padding:16px 18px; background:var(--white); border:1px solid var(--grey-200); border-radius:14px;
  font-size:14px; font-weight:600; color:var(--navy);
  transition:.3s;
}
.city-chip:hover{ border-color:var(--primary); background:rgba(37,99,235,.05); transform:translateY(-3px); }
.city-chip i{ color:var(--primary); font-size:14px; }
@media (max-width:900px){ .city-grid{ grid-template-columns:repeat(2,1fr); } }

/* ============ FAQ ============ */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:var(--white); border:1px solid var(--grey-200); border-radius:16px; overflow:hidden;
}
.faq-q{
  padding:22px 26px; display:flex; align-items:center; justify-content:space-between;
  font-weight:600; font-size:15.5px; cursor:pointer; color:var(--navy);
}
.faq-q i{ color:var(--primary); transition:transform .35s ease; }
.faq-item.open .faq-q i{ transform:rotate(135deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-a p{ padding:0 26px 22px; font-size:14.5px; color:var(--grey-500); line-height:1.75; margin:0; }
.faq-item.open .faq-a{ max-height:220px; }

/* ============ Contact page ============ */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:flex-start; }
.contact-info{ display:flex; flex-direction:column; gap:18px; }
.info-card{
  display:flex; gap:16px; align-items:flex-start;
  background:var(--white); border:1px solid var(--grey-200); border-radius:16px; padding:22px;
  transition:.3s;
}
.info-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.info-card .ico{
  flex:none; width:46px;height:46px;border-radius:13px; background:rgba(37,99,235,.1); color:var(--primary);
  display:flex; align-items:center; justify-content:center; font-size:18px;
}
.info-card b{ font-size:14.5px; color:var(--navy); display:block; margin-bottom:3px; }
.info-card span, .info-card a{ font-size:13.5px; color:var(--grey-500); }
.social-row{ display:flex; gap:12px; margin-top:6px; }
.social-row a{
  width:42px;height:42px;border-radius:50%; background:var(--white); border:1px solid var(--grey-200);
  display:flex; align-items:center; justify-content:center; color:var(--navy); transition:.3s;
}
.social-row a:hover{ background:var(--grad-primary); color:#fff; border-color:transparent; transform:translateY(-4px); }

.form-card{ background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius-md); padding:38px; box-shadow:var(--shadow-sm); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13.5px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:12px; border:1.5px solid var(--grey-200);
  font-family:inherit; font-size:14.5px; color:var(--ink); background:var(--grey-50);
  transition:border-color .3s ease, background .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--primary); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }

/* Dynamic attachment section (appears after selecting a service) */
.attachment-toggle{
  max-height:0; opacity:0; overflow:hidden; margin-bottom:0;
  transition:max-height .45s ease, opacity .35s ease, margin .45s ease;
}
.attachment-toggle.show{ max-height:240px; opacity:1; margin-bottom:20px; }
.attachment-toggle > label{ display:flex; align-items:center; gap:8px; }
.attachment-toggle > label i{ color:var(--primary); font-size:12px; }
.attach-row{ display:flex; gap:14px; align-items:stretch; flex-wrap:wrap; }
.attach-link{ flex:1; min-width:170px; display:flex; align-items:center; }
.attach-link input{ width:100%; }
.attach-link-full{ flex-direction:column; align-items:stretch; gap:6px; }
.attach-link-full small{ font-size:10.5px; color:#9AA7BE; }
.map-frame{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--grey-200); box-shadow:var(--shadow-sm); margin-top:28px; }
.map-frame iframe{ width:100%; height:320px; border:0; display:block; filter:grayscale(.15); }

@media (max-width:960px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ============ Footer ============ */
footer{ background:var(--navy); color:#B9C4DE; padding:70px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand img{ height:38px; }
.footer-brand span{ font-size:19px; font-weight:700; color:#fff; }
.footer-brand-full{ display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.footer-brand-full .fb-icon{ height:52px; width:auto; flex:none; }
.footer-brand-full .fb-text{ display:flex; flex-direction:column; gap:5px; }
.footer-brand-full .fb-name{ font-size:23px; font-weight:800; letter-spacing:.02em; color:#fff; line-height:1; }
.footer-brand-full .fb-name .fb-accent{ color:#fff; }
.footer-brand-full .fb-tagline{ display:flex; align-items:center; gap:8px; font-size:11.5px; font-style:italic; color:#93A3C4; letter-spacing:.02em; }
.footer-brand-full .fb-tagline::before, .footer-brand-full .fb-tagline::after{ content:''; width:16px; height:1px; background:var(--primary-light); opacity:.6; }
footer p.desc{ font-size:14px; line-height:1.8; color:#93A3C4; max-width:300px; }
footer h4{ color:#fff; font-size:15px; margin-bottom:20px; }
.footer-links{ display:flex; flex-direction:column; gap:12px; }
.footer-links a{ font-size:14px; color:#93A3C4; transition:.3s; }
.footer-links a:hover{ color:#fff; padding-left:4px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px;height:38px;border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:.3s;
}
.footer-social a:hover{ background:var(--primary); transform:translateY(-3px); }
.footer-bottom{ padding:24px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:13px; color:#7C8CB0; }

@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ============ Left-side social rail ============ */
.social-rail{
  position:fixed; left:0; top:50%; transform:translateY(-50%);
  z-index:950; display:flex; flex-direction:column;
}
.rail-item{
  display:flex; align-items:center;
  height:44px; width:44px;
  background:var(--navy);
  border:1px dashed rgba(255,255,255,.3);
  border-left:none;
  color:#fff;
  overflow:hidden;
  transition:width .35s ease, background .3s ease;
  text-decoration:none;
}
.rail-item:hover{ width:158px; background:var(--rail-color, var(--primary)); border-color:transparent; }
.rail-item .rail-icon{
  flex:none; width:44px; height:44px;
  display:flex; align-items:center; justify-content:center; font-size:16px;
}
.rail-item .rail-label{
  flex:1; min-width:0;
  font-size:10.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  white-space:nowrap; opacity:0; transition:opacity .2s ease;
}
.rail-item:hover .rail-label{ opacity:1; transition:opacity .25s ease .12s; }

@media (max-width: 760px){
  .social-rail{ display:none; }
}

/* ============ Floating action group: WhatsApp + Call + Scroll-to-top ============ */
/* Grouped together in a row, bottom-right, on both mobile and desktop */
.floating-actions{
  position:fixed; right:20px; bottom:20px; z-index:960;
  display:flex; flex-direction:row; align-items:center; gap:12px;
}
.floating-actions a, .floating-actions button{
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:19px; text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  border:none; cursor:pointer; flex:none;
}
.floating-actions .fab-whatsapp{ background:#25D366; }
.floating-actions .fab-call{ background:#2563EB; }

#toTop{
  background:var(--navy);
  opacity:0; visibility:hidden; transform:translateY(10px); transition:.3s;
}
#toTop.show{ opacity:1; visibility:visible; transform:translateY(0); }

@media (max-width: 480px){
  .floating-actions{ right:14px; bottom:14px; gap:10px; }
  .floating-actions a, .floating-actions button{ width:44px; height:44px; font-size:17px; }
}

/* ============ Page hero (inner pages) ============ */
.page-hero{
  padding:calc(var(--nav-h) + 70px) 0 90px;
  background:var(--grad-navy);
  position:relative; overflow:hidden; text-align:center;
}
.page-hero::before{ content:''; position:absolute; inset:0; background:radial-gradient(600px 400px at 85% 10%, rgba(96,165,250,.28), transparent 60%); }
.fleet-hero{
  background:
    linear-gradient(180deg, rgba(8,15,34,.90), rgba(8,15,34,.94)),
    url('../images/fleet/hero.jpg') center 60% / cover no-repeat;
}
.page-hero .eyebrow{ color:#BFD3FF; justify-content:center; }
.page-hero .eyebrow::before{ background:var(--primary-light); }
.page-hero h1{ color:#fff; font-size:clamp(30px,4.4vw,48px); }
.page-hero p{ color:#B9C4DE; max-width:560px; margin:18px auto 0; font-size:15.5px; line-height:1.8;}
.breadcrumb{ margin-top:26px; display:flex; gap:8px; justify-content:center; font-size:13.5px; color:#8DA0C7; position:relative; z-index:1;}
.breadcrumb a{ color:#BFD3FF; } .breadcrumb a:hover{ color:#fff; }

/* Utility */
.mt-0{margin-top:0} .text-center{text-align:center}
.grad-text{ background:var(--grad-primary); -webkit-background-clip:text; background-clip:text; color:transparent; }

::selection{ background:var(--primary); color:#fff; }

/* scrollbar */
::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background:var(--grey-100); }
::-webkit-scrollbar-thumb{ background:var(--primary-light); border-radius:10px; }

/* Disable hover-jump animations in mobile view — these are meant for
   mouse hover on desktop only. In mobile view (narrow screens) and on
   touch devices, this was triggering on tap and making buttons/cards
   look like they "shake" up-down. */
@media (max-width: 900px), (hover: none){
  .btn-primary:hover, .btn-outline:hover, .btn-dark:hover, .btn-outline-primary:hover,
  .counter-card:hover, .why-card:hover, .service-card:hover, .fleet-card:hover,
  .city-chip:hover, .info-card:hover, .social-row a:hover, .footer-social a:hover,
  .service-card:hover .service-top i, .service-card:hover .service-link i,
  .fleet-card:hover .fleet-visual svg,
  .floating-actions a:hover, .floating-actions button:hover{
    transform:none !important;
  }
  /* Belt-and-braces: remove the transition itself on mobile so no tap,
     focus, or sticky-hover state can ever animate/move these elements. */
  .btn, .counter-card, .why-card, .service-card, .fleet-card, .city-chip,
  .info-card, .social-row a, .footer-social a,
  .floating-actions a, .floating-actions button{
    transition:none !important;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}
