
:root {
  --white:        #ffffff;
  --off-white:    #f8fafc;       
  --light-gray:   #f1f5f9;
  --navy:         #0a1628;       
  --navy-2:       #0f1e38;
  --gold:         #d4af37;       
  --gold-light:   #e8c94d;
  --gold-dim:     rgba(212,175,55,0.12);
  --gold-border:  rgba(212,175,55,0.3);

  /* Text */
  --text-heading: #0a1628;
  --text-body:    #334155;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;

  /* Borders */
  --border:       #e2e8f0;
  --border-gold:  rgba(212,175,55,0.25);

  /* Shadows — white theme needs careful shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
  --shadow-gold:  0 8px 24px rgba(212,175,55,0.25);

  /* Spacing & shape */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
   /* ADD THESE TWO ↓ */
  background: radial-gradient(circle at 50% -10%, #e8f0fe 0%, #ffffff 60%);
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── LAYOUT UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold  { color: var(--gold); }
.section    { padding: 100px 0; }
.bg-light   { background: var(--off-white); }
.mt-28      { margin-top: 28px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

/* Navy filled — primary action button */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}


/* ─── LOGO IMAGE ─── */
.brand-logo-img {
  height: 52px;           /* adjust this number to resize */
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
}

.brand:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.6));
}




/* ─── BUTTON SHINE MICRO-INTERACTION ─── */
/* .btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -75%;
  width: 32px;
  height: 200%;
  opacity: .2;
  background: #fff;
  transform: rotate(15deg);
  transition: all .55s cubic-bezier(.19, 1, .22, 1);
  animation: btnmoveslide 1s infinite;
}

@keyframes btnmoveslide {
  0% {
    left: -32px;
  }

  to {
    left: 100%;
  }
} */

/* ─── BUTTON SHINE MICRO-INTERACTION ─── */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;        /* ← THIS is what clips the shine correctly */
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;                    /* ← anchored to top edge, no overflow */
  left: -80px;
  width: 50px;
  height: 100%;              /* ← exactly button height, no extra */
  opacity: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);  /* ← skew instead of rotate — stays inside */
  pointer-events: none;
  z-index: 2;
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0%   { left: -80px;       opacity: 0; }
  10%  { opacity: 1; }
  45%  { left: calc(100% + 40px); opacity: 1; }
  50%  { opacity: 0; }
  100% { left: calc(100% + 40px); opacity: 0; } /* pause before next loop */
}

/* Hover: instant bright sweep */
.btn:hover::before {
  animation: btnShineHover 0.5s ease forwards;
}

@keyframes btnShineHover {
  0%   { left: -80px; opacity: 0.8; }
  100% { left: calc(100% + 40px); opacity: 0; }
}




.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── SCROLL ANIMATIONS ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

/* Scrolled */
#navbar.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

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

/* Brand logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.brand:hover .brand-icon { background: var(--gold); color: var(--navy); }

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta   { padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger  */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open state */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  gap: 4px;
}

/* ─── HERO SLIDER ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0; 
}

/* Slide track — holds all slides stacked */
.slider-track { position: relative; width: 100%; height: 100%; }

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}

.slide.active { opacity: 1; z-index: 1; }
.slide.prev   { opacity: 0; z-index: 0; }


.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.82) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(10,22,40,0.3)  100%
  );
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 2;
  padding-top: 80px; 
  max-width: 720px;
}

/* Animated badge */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  animation: slideUp 0.7s 0.2s forwards;
}

/* Slide heading */
.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.7s 0.4s forwards;
}

/* Slide subheading */
.slide-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.7s 0.55s forwards;
}

/* Pills row */
.slide-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.7s 0.7s forwards;
}

.slide-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.slide-pills span i { color: var(--gold); }

/* Slide entrance animation keyframes */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Reset animations when slide becomes active */
.slide.active .slide-badge,
.slide.active .slide-heading,
.slide.active .slide-sub,
.slide.active .slide-pills {
  animation-play-state: running;
}

/* Re-trigger on non-active (reset) */
.slide:not(.active) .slide-badge,
.slide:not(.active) .slide-heading,
.slide:not(.active) .slide-sub,
.slide:not(.active) .slide-pills {
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}

/* Slider arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.arrow-prev { left: 28px; }
.arrow-next { right: 28px; }

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}
.dot:hover { background: rgba(255,255,255,0.7); }

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50%       { opacity: 0.3; height: 20px; }
}

/* ─── STATS BAR ─── */
#stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 36px;
  flex: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.8;
}
.about-intro strong { color: var(--navy); font-weight: 700; }

.about-list { display: flex; flex-direction: column; gap: 12px; }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.5;
}
.about-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* About cards — 2-column grid */
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.about-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.gold-icon { background: var(--gold-dim); color: var(--gold); }
.teal-icon { background: rgba(0,180,180,0.1); color: #00a0a0; }
.blue-icon { background: rgba(59,130,246,0.1); color: #3b82f6; }

.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }


/* ─── GLASSMORPHISM CARD ENHANCEMENT ─── */
.about-card,
.feature-item,
.goal-item,
.contact-card,
.service-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ─── QUALITY ─── */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.gold-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
}

.col-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

/* Feature items */
.feature-list { display: flex; flex-direction: column; gap: 16px; }

.feature-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.feature-item:hover {
  border-left: 3px solid var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-item p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* Goals numbered */
.goals-list { display: flex; flex-direction: column; gap: 16px; }

.goal-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.goal-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.goal-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
  transition: opacity var(--transition);
}
.goal-item:hover .goal-num { opacity: 0.7; }
.goal-item h4  { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.goal-item p   { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 30px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Gold top-border animation on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.service-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ─── TECHNOLOGY ─── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tech-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all var(--transition);
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Featured center card gets larger */
.tech-featured { transform: scale(1.03); box-shadow: var(--shadow-md); }
.tech-featured:hover { transform: scale(1.03) translateY(-6px); }


/* Tech card colored header band */
.tech-header {
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compliance-header { background: linear-gradient(135deg, #0a1628, #0f1e38); }
.safety-header     { background: linear-gradient(135deg, #0a2040, #061428); }
.booking-header    { background: linear-gradient(135deg, #1a0a30, #0a0520); }

.tech-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.tech-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.tech-header p { font-size: 0.83rem; color: rgba(255,255,255,0.5); }

/* Tech list */
.tech-list {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.tech-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: color var(--transition);
}
.tech-list li:hover { color: var(--navy); }
.tech-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* ─── FLEET ─── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fleet-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all var(--transition);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

/* Fleet image wrap (for zoom effect) */
.fleet-img-wrap {
  position: relative;
  overflow: hidden;
  height: 130px;
}

.fleet-img {
  height: 100%;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img { transform: scale(1.08); }

.fleet-ico {
  font-size: 3.2rem;
  color: rgba(255,255,255,0.28);
  transition: all var(--transition);
}
.fleet-card:hover .fleet-ico {
  color: rgba(255,255,255,0.55);
  transform: translateX(8px);
}

/* Fleet overlay on hover */
.fleet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.fleet-overlay span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
}
.fleet-card:hover .fleet-overlay { opacity: 1; }

.fleet-info { padding: 16px 18px; }
.fleet-info h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }

/* Vehicle tags */
.fleet-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.fleet-tag-luxury { background: rgba(212,175,55,0.2); color: #b8860b; }
.fleet-tag-ev     { background: rgba(0,200,100,0.1); color: #00a050; border-color: rgba(0,200,100,0.25); }

/* ─── CLIENTS ─── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.client-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 88px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
  /* Grayscale effect */
  filter: grayscale(100%);
  opacity: 0.5;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.client-logo span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* Sector badges */
.sector-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sector-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
}
.sector-badges span i { color: var(--gold); }

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

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-card p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }
.contact-card a  { color: var(--text-body); }
.contact-card a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color var(--transition);
}
.input-wrap:focus-within i { color: var(--gold); }

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 13px 14px 13px 42px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  resize: none;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--text-light); }
.input-wrap input:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.textarea-wrap i { top: 14px; align-self: flex-start; }

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0,200,100,0.07);
  border: 1px solid rgba(0,200,100,0.25);
  border-radius: var(--radius-sm);
  color: #008040;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hidden { display: none !important; }

/* ─── FOOTER ─── */
#footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo { margin-bottom: 16px; display: inline-block; }

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-icon { background: var(--gold); color: var(--navy); }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social icons */
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); display: inline-block; }

.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-col p i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-col a { color: rgba(255,255,255,0.45); }
.footer-contact-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  background: #128c7e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.7px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
}


/* ─── TOAST NOTIFICATION ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-border);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  white-space: nowrap;
}

.toast i { color: var(--gold); font-size: 1rem; }

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  border-color: rgba(231, 76, 60, 0.4);
}
.toast.error i { color: #e74c3c; }

/* ═══════════════════════════════════════════════════════
   SPACING FIX — reduce gaps between sections
   ═══════════════════════════════════════════════════════ */
.section          { padding: 72px 0; }          /* was 100px */
.section-header   { margin-bottom: 44px; }      /* was 64px  */
.quality-grid     { gap: 36px; }                /* was 52px  */
.about-grid       { gap: 44px; }                /* was 64px  */
.contact-grid     { gap: 32px; }                /* was 48px  */


/* ═══════════════════════════════════════════════════════
   FLEET CARD — real image support
   ═══════════════════════════════════════════════════════ */
.fleet-img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-2); /* fallback if image fails */
  transition: transform 0.6s ease;
}
/* Darken image slightly so overlay text is readable */
.fleet-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.15);
  z-index: 1;
  transition: opacity var(--transition);
}
.fleet-card:hover .fleet-img-wrap::before {
  opacity: 0;
}


/* ═══════════════════════════════════════════════════════
   CLIENT MARQUEE
   ═══════════════════════════════════════════════════════ */
.clients-marquee-outer {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  padding: 10px 0;
}

/* Fade edges left and right */
.clients-marquee-outer::before,
.clients-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}
.clients-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

/* The moving track */
.clients-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

/* Pause on hover */
.clients-marquee-outer:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* -50% because we have 2 duplicate sets */
}

/* Individual logo cards */
.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 150px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
  flex-shrink: 0;
}
.client-logo-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.client-logo-card img {
  width: 90px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--transition);
}
.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}
.client-logo-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}
.client-logo-card:hover span { color: var(--navy); }


/* ═══════════════════════════════════════════════════════
   ANIMATED SECTION BACKGROUNDS
   ═══════════════════════════════════════════════════════ */

/* ── About: two floating gold/blue orbs ── */
#about { position: relative; overflow: hidden; }

#about::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  top: -120px; right: -80px;
  border-radius: 50%;
  animation: orbFloat 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
#about::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 65%);
  bottom: 40px; left: -60px;
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0)    scale(1);    }
  40%       { transform: translateY(-35px) scale(1.06); }
  70%       { transform: translateY(18px)  scale(0.96); }
}

/* ── Services: animated dot-grid pattern ── */
#services {
  position: relative;
  background-image:
    radial-gradient(rgba(212,175,55,0.09) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: 0 0;
  animation: driftGrid 20s linear infinite;
}
@keyframes driftGrid {
  0%   { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

/* ── Quality section: animated gold left-border glow ── */
#quality {
  position: relative;
  overflow: hidden;
}
#quality::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(
    180deg,
    transparent  0%,
    var(--gold)  30%,
    var(--gold-light) 50%,
    var(--gold)  70%,
    transparent 100%
  );
  animation: glowTrail 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowTrail {
  0%   { opacity: 0.2; transform: scaleY(0.4) translateY(-60%); }
  50%  { opacity: 1;   transform: scaleY(1)   translateY(0);    }
  100% { opacity: 0.2; transform: scaleY(0.4) translateY(60%);  }
}
#quality .container { position: relative; z-index: 1; }

/* ── Technology: pulsing gold ring behind featured card ── */
.tech-featured {
  position: relative;
}
.tech-featured::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1.5px solid rgba(212,175,55,0.35);
  animation: techRingPulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes techRingPulse {
  0%, 100% { opacity: 0.25; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.015); }
}

/* ── Fleet: shimmering gold top bar ── */
#fleet { position: relative; }
#fleet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold)  35%,
    var(--gold-light) 50%,
    var(--gold)  65%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmerBar 3s ease-in-out infinite;
}
@keyframes shimmerBar {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Clients section: subtle animated gradient ── */
#clients {
  position: relative;
  overflow: hidden;
}
#clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 100%,
    rgba(212,175,55,0.05) 0%,
    transparent 70%
  );
  animation: clientsGlow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes clientsGlow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;   }
}
#clients .container { position: relative; z-index: 1; }

/* ── Contact section: animated background blob ── */
#contact { position: relative; overflow: hidden; }
#contact::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 60%);
  bottom: -100px; right: -100px;
  border-radius: 50%;
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
#contact .container { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════════════════
   SECTION TRANSITION CONNECTORS
   (subtle visual link between sections)
   ═══════════════════════════════════════════════════════ */

/* Wave divider between hero and stats */
#stats-bar {
  position: relative;
}
#stats-bar::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  background-size: 200% 100%;
  animation: shimmerBar 4s ease-in-out infinite;
}

/* Service cards — staggered entrance from bottom */
.service-card.visible {
  animation: cardEntrance 0.5s ease both;
}
@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Fleet cards — same staggered entrance */
.fleet-card.visible {
  animation: cardEntrance 0.5s ease both;
}

/* About cards enhanced entrance */
.about-card.visible {
  animation: cardEntrance 0.45s ease both;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION IDENTITY SYSTEM — Each section gets a unique personality
   ═══════════════════════════════════════════════════════════════ */

/* ── ABOUT: Diagonal split background ── */
#about {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

#about::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.10) 0%,
    rgba(212,175,55,0.04) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: aboutOrb1 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

#about::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59,130,246,0.06) 0%,
    transparent 65%
  );
  border-radius: 50%;
  animation: aboutOrb1 14s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

#about .container { position: relative; z-index: 1; }

@keyframes aboutOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 20px) scale(1.08); }
  66%       { transform: translate(20px, -25px) scale(0.94); }
}

/* ── QUALITY: Deep navy background with gold grid ── */
#quality {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #0f1e38 50%, #1a2a4a 100%);
}

/* Animated gold grid lines */
#quality::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 18s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Radial glow centre */
#quality::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(212,175,55,0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: qualityPulse 6s ease-in-out infinite;
}

@keyframes qualityPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

#quality .container { position: relative; z-index: 1; }

/* Fix text colors inside dark quality section */
#quality .section-header h2        { color: #ffffff; }
#quality .section-sub              { color: rgba(255,255,255,0.6); }
#quality .section-tag              {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.4);
  color: var(--gold-light);
}
#quality .col-heading              { color: #ffffff; }
#quality .feature-item,
#quality .goal-item                {
  background: rgba(255,255,255,0.05);
  border-color: rgba(212,175,55,0.15);
  backdrop-filter: blur(10px);
}
#quality .feature-item h4,
#quality .goal-item h4             { color: #ffffff; }
#quality .feature-item p,
#quality .goal-item p              { color: rgba(255,255,255,0.55); }
#quality .feature-item:hover       {
  background: rgba(212,175,55,0.08);
  border-left-color: var(--gold);
}
#quality .goal-item:hover          { background: rgba(212,175,55,0.08); }

/* ── Wave divider: About → Quality ── */
#about .wave-divider-bottom {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 2;
}
#about .wave-divider-bottom svg { display: block; }

/* ── Wave divider: Quality → Services ── */
#quality .wave-divider-bottom {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 2;
}

/* ── SERVICES: Animated dot grid on light bg ── */
#services {
  position: relative;
  overflow: hidden;
  background: var(--white);
  background-image:
    radial-gradient(rgba(212,175,55,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  animation: dotDrift 25s linear infinite;
}

@keyframes dotDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 28px 28px; }
}

/* Gold bottom edge glow on services */
#services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-border) 30%,
    var(--gold) 50%,
    var(--gold-border) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmerLine 4s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

#services .container { position: relative; z-index: 1; }

/* ── TECHNOLOGY: Midnight gradient with animated particles ── */
#technology {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #060d1a 0%, #0a1628 45%, #0d1f3a 100%);
}

/* Floating particle dots */
#technology::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212,175,55,0.25) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px, 25px 25px;
  background-position: 0 0, 12px 12px;
  animation: particleDrift 30s linear infinite;
  pointer-events: none;
}

@keyframes particleDrift {
  0%   { background-position: 0 0, 12px 12px; }
  100% { background-position: -50px -50px, -38px -38px; }
}

/* Horizontal scan line */
#technology::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,55,0.5) 40%,
    rgba(232,201,77,0.9) 50%,
    rgba(212,175,55,0.5) 60%,
    transparent 100%
  );
  top: 0;
  animation: scanLine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0%   { top: 0%;   opacity: 0; }
  10%  {             opacity: 1; }
  90%  {             opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

#technology .container { position: relative; z-index: 1; }

/* Fix text for dark tech section */
#technology .section-header h2  { color: #ffffff; }
#technology .section-sub        { color: rgba(255,255,255,0.55); }
#technology .section-tag        {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.35);
  color: var(--gold-light);
}

/* ── FLEET: Light with animated diagonal streaks ── */
#fleet {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

#fleet::before {
  display: block !important; /* override the hide rule above */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(212,175,55,0.025) 60px,
    rgba(212,175,55,0.025) 61px
  );
  pointer-events: none;
  animation: streakDrift 20s linear infinite;
}

@keyframes streakDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 120px 120px; }
}

/* Gold shimmer top border on fleet */
#fleet::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmerLine 3s ease-in-out infinite;
}

#fleet .container { position: relative; z-index: 1; }

/* ── CLIENTS: Subtle aurora background ── */
#clients {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

#clients::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(212,175,55,0.04) 0deg,
    rgba(59,130,246,0.03) 60deg,
    rgba(212,175,55,0.02) 120deg,
    transparent 180deg,
    rgba(212,175,55,0.04) 240deg,
    transparent 360deg
  );
  animation: auroraRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes auroraRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#clients .container { position: relative; z-index: 1; }

/* ── CONTACT: Deep navy with animated grid ── */
#contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0a1628 0%, #0f1e38 60%, #1a0a30 100%);
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glowing orb bottom right */
#contact::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.08) 0%,
    rgba(212,175,55,0.02) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: aboutOrb1 12s ease-in-out infinite;
  pointer-events: none;
}

#contact .container { position: relative; z-index: 1; }

/* Fix contact section text for dark bg */
#contact .section-header h2  { color: #ffffff; }
#contact .section-sub        { color: rgba(255,255,255,0.55); }
#contact .section-tag        {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.35);
  color: var(--gold-light);
}
#contact .contact-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
#contact .contact-card h4    { color: var(--gold); }
#contact .contact-card p,
#contact .contact-card a     { color: rgba(255,255,255,0.65); }
#contact .contact-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.25);
}
#contact .contact-form-wrap {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,175,55,0.2);
}
#contact .contact-form-wrap h3 { color: #ffffff; }
#contact .form-group label     { color: rgba(255,255,255,0.5); }
#contact .input-wrap input,
#contact .input-wrap textarea  {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #ffffff;
}
#contact .input-wrap input::placeholder,
#contact .input-wrap textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
#contact .input-wrap input:focus,
#contact .input-wrap textarea:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   SVG WAVE SECTION DIVIDERS
   ═══════════════════════════════════════════════════════════════ */

/* Class to add to the bottom of sections that need a wave */
.wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}
.wave-bottom svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   ENHANCED CARD HOVER STATES for dark sections
   ═══════════════════════════════════════════════════════════════ */

/* Service cards on dot-grid bg */
.service-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
}

/* Fleet card image height increase */
.fleet-img-wrap { height: 170px; }

/* About cards on light bg */
.about-card {
  border-left: 3px solid transparent;
  transition: border-left-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.about-card:hover { border-left-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   STATS BAR — make it pop more
   ═══════════════════════════════════════════════════════════════ */
#stats-bar {
  background: linear-gradient(90deg, #060d1a 0%, #0a1628 50%, #060d1a 100%);
  position: relative;
  overflow: hidden;
}

/* Animated shimmer across stats bar */
#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,55,0.04) 40%,
    rgba(212,175,55,0.10) 50%,
    rgba(212,175,55,0.04) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: statsShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes statsShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}


/* ═══════════════════════════════════════════════════
   SERVICE CARDS — with image header
   ═══════════════════════════════════════════════════ */
.service-card {
  padding: 0;           /* remove old padding — body handles it now */
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* Image strip at top of each card */
.service-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

/* Dark gradient over image so text/icon readable */
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,0.25) 0%,
    rgba(10,22,40,0.65) 100%
  );
  transition: opacity var(--transition);
}
.service-card:hover .service-img-overlay {
  background: linear-gradient(
    180deg,
    rgba(10,22,40,0.15) 0%,
    rgba(10,22,40,0.50) 100%
  );
}

/* Card text body below image */
.service-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Icon now sits inside the body not on image */
.service-card .service-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0 0 14px 0;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: left;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

/* Gold top bar on hover — keep existing ::before */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }


/* ═══════════════════════════════════════════════════
   TECH CARDS — with image header
   ═══════════════════════════════════════════════════ */

/* The header now has a real image behind the colored overlay */
.tech-header {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}

.tech-header-img {
  position: absolute;
  inset: 0;
}

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

.tech-card:hover .tech-header-img img {
  transform: scale(1.06);
}

/* Colored overlay on top of the image (preserves original dark tones) */
.tech-header-overlay {
  position: absolute;
  inset: 0;
}
.compliance-overlay {
  background: linear-gradient(135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(15,30,56,0.82) 100%
  );
}
.safety-overlay {
  background: linear-gradient(135deg,
    rgba(10,32,64,0.88) 0%,
    rgba(6,20,40,0.85) 100%
  );
}
.booking-overlay {
  background: linear-gradient(135deg,
    rgba(26,10,48,0.90) 0%,
    rgba(10,5,32,0.88) 100%
  );
}

/* Content floats above image+overlay */
.tech-header-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Keep existing icon, h3, p styles — they still work */

/* RESPONSIVE — MOBILE FIRST */

/* Tablet landscape */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid    { grid-template-columns: repeat(2, 1fr); }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tech-featured { transform: none; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  /* Hero */
  .slide-heading { font-size: 2rem; }
  .slide-pills   { gap: 8px; }
  .arrow-prev    { left: 12px; }
  .arrow-next    { right: 12px; }
  .slider-arrow  { width: 40px; height: 40px; font-size: 0.85rem; }
  .scroll-indicator { display: none; }

  /* Stats */
  .stats-inner { flex-wrap: wrap; padding: 24px 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 10px 16px; min-width: 45%; }

  /* Sections */
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }

  .about-grid   { grid-template-columns: 1fr; gap: 32px; }
  .about-cards  { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr; gap: 28px; }
  .tech-grid    { grid-template-columns: 1fr; }
  .fleet-grid   { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: 1fr 1fr; }
  .about-cards   { grid-template-columns: 1fr; }
  .slide-heading { font-size: 1.7rem; }
  .slide-pills span { font-size: 0.8rem; padding: 7px 14px; }
  .whatsapp-float { bottom: 18px; right: 18px; }
  .back-to-top    { bottom: 80px; right: 18px; }
  .contact-form-wrap { padding: 20px 16px; }
}