
:root{
  /* Colors */
  --color-white:      #FFFFFF;
  --color-off-white:  #F6F5F3;
  --color-ink:        #0B0B0C;
  --color-charcoal:   #1C1C1E;
  --color-gray:       #6B6B70;
  --color-gray-light: #E4E3E0;
  --color-red:        #D2131E;
  --color-red-dark:   #960F17;
  --color-red-tint:   #FCE9EA;

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 50px -20px rgba(11,11,12,0.25);
  --shadow-card: 0 10px 30px -12px rgba(11,11,12,0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { 
  scroll-behavior: smooth; 
}

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

img { 
  max-width: 100%; 
  display: block; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

ul { 
  list-style: none; 
}

button { 
  font-family: inherit; 
  cursor: pointer; 
  border: none; 
  background: none; 
}

input, textarea, select { 
  font-family: inherit; 
  font-size: 1rem; 
}

@media (prefers-reduced-motion: reduce) {
  * { 
    animation-duration: 0.01ms !important; 
    animation-iteration-count: 1 !important; 
    transition-duration: 0.01ms !important; 
    scroll-behavior: auto !important; 
  }
}
/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 { 
  font-family: var(--font-display); 
  font-weight: 600; 
  letter-spacing: 0.3px; 
  line-height: 1.15; 
}

.eyebrow {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  font-family: var(--font-body); 
  font-weight: 700; 
  font-size: 0.78rem;
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
  color: var(--color-red);
  margin-bottom: 14px;
}

.eyebrow::before { 
  content: ''; 
  width: 26px; 
  height: 2px; 
  background: var(--color-red); 
}

.section-title { 
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); 
  color: var(--color-ink); 
}

.section-desc { 
  color: var(--color-gray); 
  max-width: 560px; 
  margin-top: 14px; 
  font-size: 1.02rem; 
}

.text-accent { 
  color: var(--color-red); 
}

.section-head { 
  max-width: 640px; 
  margin-bottom: 56px; 
}

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

.section-head.light .section-desc { 
  color: #B9B9BC; 
}

/* ---------- 4. LAYOUT HELPERS ---------- */
.container { 
  max-width: var(--container-w); 
  margin: 0 auto; 
  padding: 0 24px; 
}

section { 
  padding: 110px 0; 
  position: relative; 
}

/* Scroll reveal base states (activated via .in-view class by JS) */
.reveal-up { 
  opacity: 0; 
  transform: translateY(36px); 
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); 
}

.reveal-left { 
  opacity: 0; 
  transform: translateX(-40px); 
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); 
}

.reveal-right { 
  opacity: 0; 
  transform: translateX(40px); 
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); 
}

.reveal-up.in-view, 
.reveal-left.in-view, 
.reveal-right.in-view { 
  opacity: 1; 
  transform: translate(0, 0); 
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  padding: 15px 30px; 
  font-weight: 600; 
  font-size: 0.95rem;
  border-radius: var(--radius-sm); 
  transition: all 0.35s var(--ease);
  white-space: nowrap; 
  letter-spacing: 0.2px;
}

.btn-sm { 
  padding: 10px 20px; 
  font-size: 0.85rem; 
}

.btn-block { 
  width: 100%; 
}

.btn-primary { 
  background: var(--color-red); 
  color: var(--color-white); 
  box-shadow: 0 10px 24px -8px rgba(210, 19, 30, 0.55); 
}

.btn-primary:hover { 
  background: var(--color-red-dark); 
  transform: translateY(-2px); 
  box-shadow: 0 14px 30px -8px rgba(150, 15, 23, 0.6); 
}

.btn-outline-light { 
  border: 1.5px solid rgba(255, 255, 255, 0.6); 
  color: var(--color-white); 
}

.btn-outline-light:hover { 
  background: var(--color-white); 
  color: var(--color-ink); 
}

.btn-ghost-light { 
  color: var(--color-white); 
  opacity: 0.9; 
}

.btn-ghost-light:hover { 
  opacity: 1; 
  text-decoration: underline; 
}

.btn-outline-dark { 
  border: 1.5px solid var(--color-ink); 
  color: var(--color-ink); 
}

.btn-outline-dark:hover { 
  background: var(--color-ink); 
  color: var(--color-white); 
}
/* ==================================================================
   LOADING SCREEN
================================================================== */
.loader {
  position: fixed; 
  inset: 0; 
  background: var(--color-ink); 
  z-index: 9999;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.loader.hidden { 
  opacity: 0; 
  visibility: hidden; 
}

.loader-mark { 
  position: relative; 
  text-align: center; 
}

.loader-mark i { 
  font-size: 2.2rem; 
  color: var(--color-red); 
  animation: truckBounce 1s ease-in-out infinite; 
}

.loader-line {
  display: block; 
  width: 120px; 
  height: 2px; 
  background: var(--color-charcoal);
  margin: 18px auto 0; 
  position: relative; 
  overflow: hidden;
}

.loader-line::after {
  content: ''; 
  position: absolute; 
  inset: 0; 
  width: 40%; 
  background: var(--color-red);
  animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes loaderSlide { 
  0% { transform: translateX(-100%); } 
  100% { transform: translateX(350%); } 
}

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

/* ==================================================================
   ROUTE PROGRESS BAR — SIGNATURE ELEMENT
================================================================== */
.route-progress {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 5px; 
  z-index: 1001;
  pointer-events: none;
}

.route-track {
  position: absolute; 
  inset: 0;
  background-image: repeating-linear-gradient(90deg, var(--color-gray-light) 0 14px, transparent 14px 26px);
}

.route-fill {
  position: absolute; 
  inset: 0; 
  width: 0%;
  background-image: repeating-linear-gradient(90deg, var(--color-red) 0 14px, transparent 14px 26px);
  transition: width 0.1s linear;
}

.route-truck {
  position: absolute; 
  top: -9px; 
  left: 0%; 
  transform: translateX(-50%);
  width: 22px; 
  height: 22px; 
  background: var(--color-red); 
  border-radius: 50%;
  color: var(--color-white); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 0.7rem; 
  box-shadow: 0 3px 10px rgba(210, 19, 30, 0.6); 
  transition: left 0.1s linear;
}

/* ==================================================================
   NAVBAR
================================================================== */
.navbar {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 900;
  padding: 22px 0; 
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0; 
  background: rgba(255, 255, 255, 0.92); 
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.15);
}

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

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

.nav-logo img { 
  height: 42px; 
  width: auto; 
  object-fit: contain; 
}

.nav-logo-text { 
  font-family: var(--font-display); 
  font-size: 1.05rem; 
  font-weight: 600; 
  color: var(--color-white); 
  letter-spacing: 0.3px; 
  transition: color 0.4s; 
}

.nav-logo-text em { 
  display: block; 
  font-style: normal; 
  font-size: 0.68rem; 
  font-weight: 400; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--color-red); 
}

.navbar.scrolled .nav-logo-text { 
  color: var(--color-ink); 
}

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

.nav-link {
  font-size: 0.88rem; 
  font-weight: 600; 
  color: var(--color-white);
  position: relative; 
  padding: 6px 0; 
  transition: color 0.3s;
}

.nav-link::after {
  content: ''; 
  position: absolute; 
  left: 0; 
  bottom: 0; 
  width: 0; 
  height: 2px;
  background: var(--color-red); 
  transition: width 0.3s var(--ease);
}

.nav-link:hover, 
.nav-link.active { 
  color: var(--color-red); 
}

.nav-link:hover::after, 
.nav-link.active::after { 
  width: 100%; 
}

.navbar.scrolled .nav-link { 
  color: var(--color-ink); 
}

.navbar.scrolled .nav-link:hover, 
.navbar.scrolled .nav-link.active { 
  color: var(--color-red); 
}

.navbar-actions { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}

.nav-call {
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.5); 
  color: var(--color-white); 
  transition: all 0.3s;
}

.navbar.scrolled .nav-call { 
  border-color: var(--color-gray-light); 
  color: var(--color-ink); 
}

.nav-call:hover { 
  background: var(--color-red); 
  border-color: var(--color-red); 
  color: var(--color-white); 
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  width: 26px; 
}

.hamburger span { 
  height: 2px; 
  background: var(--color-white); 
  transition: all 0.3s var(--ease); 
}

.navbar.scrolled .hamburger span { 
  background: var(--color-ink); 
}

.hamburger.active span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}

.hamburger.active span:nth-child(2) { 
  opacity: 0; 
}

.hamburger.active span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
}

/* ==================================================================
   HERO SECTION
================================================================== */
.hero {
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  align-items: center;
  overflow: hidden; 
  padding-top: 0;
}

.hero-bg { 
  position: absolute; 
  inset: 0; 
  z-index: 0; 
}

.hero-bg img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.hero-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, rgba(67, 67, 74, 0.75) 0%, rgba(11, 11, 12, 0.55) 45%, rgba(11, 11, 12, 0.88) 100%);
}

.hero-content { 
  position: relative; 
  z-index: 1; 
  text-align: left; 
  padding-top: 90px; 
}

.hero-logo { 
  height: 64px; 
  width: auto; 
  object-fit: contain; 
  margin-bottom: 26px; 
}

.hero-title { 
  font-size: clamp(2.6rem, 6vw, 4.6rem); 
  color: var(--color-white); 
  margin-bottom: 20px; 
}

.hero-sub { 
  font-size: clamp(1rem, 1.6vw, 1.25rem); 
  color: #E7E7E9; 
  max-width: 560px; 
  margin-bottom: 40px; 
  font-weight: 400; 
}

.hero-actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 18px; 
  align-items: center; 
}

.hero-whatsapp {
  position: absolute; 
  z-index: 1; 
  right: 32px; 
  bottom: 110px;
  display: flex; 
  align-items: center; 
  gap: 10px; 
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1); 
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px; 
  color: var(--color-white); 
  font-size: 0.85rem; 
  font-weight: 600;
  backdrop-filter: blur(6px); 
  transition: all 0.3s;
}

.hero-whatsapp i { 
  color: #25D366; 
  font-size: 1.1rem; 
}

.hero-whatsapp:hover { 
  background: rgba(255, 255, 255, 0.2); 
}
.scroll-indicator {
  position: absolute; 
  bottom: 34px; 
  left: 50%; 
  transform: translateX(-50%);
  z-index: 1; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px;
  color: var(--color-white); 
  font-size: 0.72rem; 
  letter-spacing: 2px; 
  text-transform: uppercase;
}

.scroll-line { 
  width: 1px; 
  height: 34px; 
  background: rgba(255, 255, 255, 0.5); 
  position: relative; 
  overflow: hidden; 
}

.scroll-line::after {
  content: ''; 
  position: absolute; 
  top: -100%; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: var(--color-red); 
  animation: scrollDrip 1.8s ease-in-out infinite;
}

@keyframes scrollDrip { 
  0% { top: -100%; } 
  60% { top: 100%; } 
  100% { top: 100%; } 
}

/* ==================================================================
   ABOUT SECTION
================================================================== */
.about { 
  background: var(--color-white); 
}

.about-grid { 
  display: grid; 
  grid-template-columns: 0.85fr 1.15fr; 
  gap: 70px; 
  align-items: center; 
}

.about-visual { 
  position: relative; 
}

.about-image-frame { 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  box-shadow: var(--shadow-soft); 
  aspect-ratio: 4/5; 
}

.about-image-frame img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.about-badge {
  position: absolute; 
  bottom: -26px; 
  right: -26px; 
  background: var(--color-ink);
  color: var(--color-white); 
  padding: 26px; 
  border-radius: var(--radius-md);
  text-align: center; 
  box-shadow: var(--shadow-soft); 
  min-width: 140px;
}

.about-badge-num { 
  display: block; 
  font-family: var(--font-display); 
  font-size: 2.1rem; 
  color: var(--color-red); 
  line-height: 1; 
}

.about-badge-label { 
  font-size: 0.75rem; 
  color: #C9C9CC; 
  margin-top: 8px; 
  display: block; 
  line-height: 1.4; 
}

.about-desc { 
  color: var(--color-gray); 
  margin: 20px 0 32px; 
  font-size: 1.02rem; 
  max-width: 540px; 
}

.about-pillars { 
  display: grid; 
  gap: 22px; 
  margin-bottom: 40px; 
}

.pillar { 
  display: flex; 
  gap: 18px; 
  align-items: flex-start; 
}

.pillar i { 
  font-size: 1.3rem; 
  color: var(--color-red); 
  margin-top: 4px; 
}

.pillar h4 { 
  font-size: 1.05rem; 
  margin-bottom: 4px; 
}

.pillar p { 
  color: var(--color-gray); 
  font-size: 0.94rem; 
}

.stats-row { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
  border-top: 1px solid var(--color-gray-light); 
  padding-top: 32px; 
}

.stat { 
  display: flex; 
  flex-direction: column; 
}

.stat-num, 
.stat-plus { 
  font-family: var(--font-display); 
  font-size: 2rem; 
  color: var(--color-ink); 
  font-variant-numeric: tabular-nums; 
}

.stat-plus { 
  color: var(--color-red); 
}

.stat-label { 
  font-size: 0.78rem; 
  color: var(--color-gray); 
  margin-top: 6px; 
  letter-spacing: 0.3px; 
}

/* ==================================================================
   SERVICES SECTION
================================================================== */
.services { 
  background: var(--color-off-white); 
}

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

.service-card {
  background: var(--color-white); 
  padding: 38px 28px; 
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); 
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-top: 3px solid transparent;
}
.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-soft); 
  border-top-color: var(--color-red); 
}

.service-card i { 
  font-size: 1.8rem; 
  color: var(--color-red); 
  margin-bottom: 20px; 
  display: block; 
}

.service-card h3 { 
  font-size: 1.08rem; 
  margin-bottom: 10px; 
}

.service-card p { 
  color: var(--color-gray); 
  font-size: 0.92rem; 
}

/* ==================================================================
   FLEET SECTION
================================================================== */
.fleet { 
  background: var(--color-white); 
}

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

.fleet-card {
  border-radius: var(--radius-md); 
  overflow: hidden; 
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); 
  background: var(--color-white);
}

.fleet-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-soft); 
}

.fleet-img { 
  aspect-ratio: 4/3; 
  overflow: hidden; 
}

.fleet-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s var(--ease); 
}

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

.fleet-body { 
  padding: 24px; 
}

.fleet-body h3 { 
  font-size: 1.15rem; 
  margin-bottom: 8px; 
}

.fleet-body p { 
  color: var(--color-gray); 
  font-size: 0.88rem; 
  margin-bottom: 14px; 
}

.fleet-capacity {
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 0.8rem; 
  font-weight: 600;
  color: var(--color-red); 
  background: var(--color-red-tint); 
  padding: 6px 12px;
  border-radius: 50px; 
  margin-bottom: 18px;
}

/* ==================================================================
   WHY CHOOSE US SECTION
================================================================== */
.why-us { 
  background: var(--color-ink); 
}

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

.why-card {
  background: var(--color-charcoal); 
  padding: 34px 28px; 
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease);
}

.why-card:hover { 
  background: var(--color-red); 
  transform: translateY(-6px); 
}

.why-card i { 
  font-size: 1.6rem; 
  color: var(--color-red); 
  margin-bottom: 18px; 
  display: block; 
  transition: color 0.4s; 
}

.why-card:hover i { 
  color: var(--color-white); 
}

.why-card h3 { 
  color: var(--color-white); 
  font-size: 1.05rem; 
  margin-bottom: 8px; 
}

.why-card p { 
  color: #B9B9BC; 
  font-size: 0.9rem; 
  transition: color 0.4s; 
}

.why-card:hover p { 
  color: rgba(255, 255, 255, 0.85); 
}

/* ==================================================================
   WORKING PROCESS SECTION
================================================================== */
.process { 
  background: var(--color-off-white); 
}

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

.process-track::before {
  content: ''; 
  position: absolute; 
  top: 54px; 
  left: 8%; 
  right: 8%; 
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--color-gray-light) 0 10px, transparent 10px 18px);
  z-index: 0;
}

.process-step { 
  position: relative; 
  z-index: 1; 
  text-align: center; 
}

.process-num {
  font-family: var(--font-display); 
  font-size: 0.85rem; 
  color: var(--color-white);
  background: var(--color-ink); 
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 18px;
}
.process-step i { 
  font-size: 1.6rem; 
  color: var(--color-red); 
  margin-bottom: 14px; 
  display: block; 
}

.process-step h3 { 
  font-size: 1.05rem; 
  margin-bottom: 8px; 
}

.process-step p { 
  color: var(--color-gray); 
  font-size: 0.88rem; 
  max-width: 220px; 
  margin: 0 auto; 
}

/* ==================================================================
   TESTIMONIALS SECTION
================================================================== */
.testimonials { 
  background: var(--color-white); 
}

.testimonial-slider { 
  max-width: 720px; 
  margin: 0 auto; 
  text-align: center; 
}

.testimonial-track { 
  position: relative; 
  min-height: 260px; 
}

.testimonial-slide {
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); 
  pointer-events: none;
}

.testimonial-slide.active { 
  opacity: 1; 
  transform: translateX(0); 
  pointer-events: auto; 
  position: relative; 
}

.stars { 
  color: var(--color-red); 
  font-size: 0.95rem; 
  margin-bottom: 18px; 
  letter-spacing: 3px; 
}

.testimonial-slide p { 
  font-size: 1.2rem; 
  color: var(--color-ink); 
  font-family: var(--font-display); 
  font-weight: 400; 
  line-height: 1.5; 
  margin-bottom: 26px; 
}

.testimonial-user { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 14px; 
}

.testimonial-user img { 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  object-fit: cover; 
}

.testimonial-user h4 { 
  font-size: 0.95rem; 
}

.testimonial-user span { 
  font-size: 0.8rem; 
  color: var(--color-gray); 
}

.testimonial-controls { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 24px; 
  margin-top: 30px; 
}

.testimonial-controls button {
  width: 42px; 
  height: 42px; 
  border-radius: 50%; 
  border: 1.5px solid var(--color-gray-light);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s;
}

.testimonial-controls button:hover { 
  background: var(--color-red); 
  border-color: var(--color-red); 
  color: var(--color-white); 
}

.testimonial-dots { 
  display: flex; 
  gap: 8px; 
}

.testimonial-dots span { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: var(--color-gray-light); 
  cursor: pointer; 
  transition: all 0.3s; 
}

.testimonial-dots span.active { 
  background: var(--color-red); 
  width: 22px; 
  border-radius: 5px; 
}

/* ==================================================================
   CONTACT SECTION
================================================================== */
.contact { 
  background: var(--color-off-white); 
}

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

.contact-list { 
  margin: 28px 0; 
  display: grid; 
  gap: 20px; 
}

.contact-list li { 
  display: flex; 
  gap: 16px; 
  align-items: flex-start; 
}

.contact-list i {
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  background: var(--color-white);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--color-red);
  box-shadow: var(--shadow-card); 
  flex-shrink: 0;
}

.contact-list h4 { 
  font-size: 0.85rem; 
  margin-bottom: 3px; 
}

.contact-list a, 
.contact-list span { 
  color: var(--color-gray); 
  font-size: 0.92rem; 
}

.contact-list a:hover { 
  color: var(--color-red); 
}

.map-placeholder {
  height: 200px; 
  border-radius: var(--radius-md); 
  background: var(--color-gray-light);
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  color: var(--color-gray); 
  border: 2px dashed #C9C8C5;
}

.map-placeholder i { 
  font-size: 1.8rem; 
}

.map-placeholder span { 
  font-size: 0.85rem; 
}

.contact-form {
  background: var(--color-white); 
  padding: 40px; 
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 { 
  font-size: 1.3rem; 
  margin-bottom: 24px; 
}

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

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

.form-group label { 
  display: block; 
  font-size: 0.82rem; 
  font-weight: 600; 
  margin-bottom: 8px; 
  color: var(--color-ink); 
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%; 
  padding: 13px 16px; 
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-sm); 
  background: var(--color-off-white); 
  transition: all 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  outline: none; 
  border-color: var(--color-red); 
  background: var(--color-white);
}

.form-note { 
  margin-top: 14px; 
  font-size: 0.85rem; 
  color: var(--color-red); 
  min-height: 1em; 
}
/* ==================================================================
   FOOTER
================================================================== */
.footer { 
  background: var(--color-ink); 
  color: var(--color-white); 
  padding-top: 80px; 
}

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

.footer-logo { 
  height: 44px; 
  margin-bottom: 18px; 
}

.footer-brand p { 
  color: #B9B9BC; 
  font-size: 0.9rem; 
  margin-bottom: 20px; 
  max-width: 280px; 
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px; /* Icons ke darmayan space */
}

.footer-social a {
  display: flex; /* Flexbox se content center hoga */
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  width: 38px; /* Circular box ka width */
  height: 38px; /* Circular box ka height */
  border-radius: 50%; /* Circle shape */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
  color: #ffffff; /* Icon ka color */
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icon ki sizing perfect rakhne ke liye */
.footer-social a i {
  font-size: 16px;
  line-height: 1; /* Extra space khatam karne ke liye */
  margin: 11px;
  padding: 0;
}

/* Hover Effect (Optional - red color on hover) */
.footer-social a:hover {
  background-color: white;
  border-color: #d90429;
}

.footer-col h4 { 
  font-size: 0.95rem; 
  margin-bottom: 20px; 
  color: var(--color-white); 
}

.footer-col a, 
.footer-col p { 
  display: block; 
  color: #B9B9BC; 
  font-size: 0.88rem; 
  margin-bottom: 12px; 
  transition: color 0.3s; 
}

.footer-col a:hover { 
  color: var(--color-red); 
}

.footer-col p i { 
  margin-right: 8px; 
  color: var(--color-red); 
}

.footer-bottom { 
  text-align: center; 
  padding: 26px 0; 
  font-size: 0.82rem; 
  color: #8A8A8E; 
}

/* ==================================================================
   FLOATING BUTTONS
================================================================== */
.float-whatsapp {
  position: fixed; 
  bottom: 28px; 
  left: 28px; 
  z-index: 500;
  width: 58px; 
  height: 58px; 
  border-radius: 50%; 
  background: #25D366; 
  color: var(--color-white);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.6rem;
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6); 
  animation: pulseWA 2.4s ease-in-out infinite;
}

@keyframes pulseWA { 
  0%, 100% { box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6); } 
  50% { box-shadow: 0 12px 30px -4px rgba(37, 211, 102, 0.85); } 
}

.scroll-top {
  position: fixed; 
  bottom: 28px; 
  right: 28px; 
  z-index: 500;
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  background: var(--color-ink); 
  color: var(--color-white);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1rem;
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(10px); 
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-card);
}

.scroll-top.visible { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
}

.scroll-top:hover { 
  background: var(--color-red); 
}

/* ==================================================================
   FULL-SCREEN OVERLAYS — BOOKING & GALLERY
================================================================== */
.overlay-section {
  position: fixed; 
  inset: 0; 
  background: var(--color-white); 
  z-index: 2000;
  overflow-y: auto; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
  padding: 60px 24px 80px;
}

.overlay-section.active { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
}

.overlay-inner { 
  max-width: 720px; 
  margin: 0 auto; 
  position: relative; 
}

.overlay-inner-wide { 
  max-width: 1100px; 
}

.overlay-close {
  position: absolute; 
  top: -10px; 
  right: 0; 
  width: 46px; 
  height: 46px; 
  border-radius: 50%;
  background: var(--color-off-white); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.1rem; 
  transition: all 0.3s;
}

.overlay-close:hover { 
  background: var(--color-red); 
  color: var(--color-white); 
  transform: rotate(90deg); 
}

.overlay-header { 
  margin-bottom: 40px; 
  padding-top: 30px; 
}

.overlay-header h2 { 
  font-size: clamp(1.8rem, 4vw, 2.6rem); 
  margin-bottom: 10px; 
}

.overlay-header p:last-child { 
  color: var(--color-gray); 
}

.booking-form { 
  background: var(--color-off-white); 
  padding: 40px; 
  border-radius: var(--radius-lg); 
}

/* Gallery filter */
.gallery-filters { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  margin-bottom: 34px; 
}

.filter-btn {
  padding: 10px 22px; 
  border-radius: 50px; 
  border: 1.5px solid var(--color-gray-light);
  font-size: 0.85rem; 
  font-weight: 600; 
  color: var(--color-gray); 
  transition: all 0.3s;
}

.filter-btn:hover { 
  border-color: var(--color-red); 
  color: var(--color-red); 
}

.filter-btn.active { 
  background: var(--color-red); 
  border-color: var(--color-red); 
  color: var(--color-white); 
}

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

.gallery-item {
  position: relative; 
  aspect-ratio: 1/1; 
  border-radius: var(--radius-md); 
  overflow: hidden;
  cursor: pointer; 
  opacity: 1; 
  transform: scale(1); 
  transition: all 0.4s var(--ease);
}

.gallery-item.hide { 
  display: none; 
}

.gallery-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s var(--ease); 
}

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

.gallery-zoom {
  position: absolute; 
  inset: 0; 
  background: rgba(11, 11, 12, 0.5); 
  display: flex;
  align-items: center; 
  justify-content: center; 
  opacity: 0; 
  transition: opacity 0.35s;
  color: var(--color-white); 
  font-size: 1.3rem;
}

.gallery-item:hover .gallery-zoom { 
  opacity: 1; 
}

/* Lightbox */
.lightbox {
  position: fixed; 
  inset: 0; 
  background: rgba(11, 11, 12, 0.95); 
  z-index: 3000;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 40px;
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.active { 
  opacity: 1; 
  visibility: visible; 
}

.lightbox img { 
  max-width: 90%; 
  max-height: 85vh; 
  border-radius: var(--radius-md); 
  object-fit: contain; 
}

.lightbox-close {
  position: absolute; 
  top: 30px; 
  right: 30px; 
  width: 46px; 
  height: 46px; 
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); 
  color: var(--color-white); 
  display: flex; 
  align-items: center;
  justify-content: center; 
  font-size: 1.1rem; 
  transition: all 0.3s;
}

.lightbox-close:hover { 
  background: var(--color-red); 
  transform: rotate(90deg); 
}

/* ==================================================================
   RESPONSIVE — TABLET & MOBILE
================================================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .process-track::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  section { padding: 80px 0; }
  
  .nav-links {
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: min(320px, 82vw); 
    height: 100vh;
    background: var(--color-white); 
    flex-direction: column; 
    align-items: flex-start;
    padding: 100px 32px 40px; 
    gap: 26px; 
    transition: right 0.45s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0, 0, 0, 0.3); 
    z-index: 950;
  }
  
  .nav-links.active { right: 0; }
  .nav-link { color: var(--color-ink); font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .nav-logo-text { display: none; }

  .hero-content { text-align: left; }
  .hero-whatsapp { left: 24px; right: auto; bottom: 96px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.4rem; }
  .services-grid, 
  .fleet-grid, 
  .why-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -20px; padding: 18px; min-width: 120px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-form, 
  .booking-form { padding: 26px; }
  
  .float-whatsapp { 
    width: 50px; 
    height: 50px; 
    font-size: 1.4rem; 
    bottom: 20px; 
    left: 20px; 
  }
  
  .scroll-top { bottom: 20px; right: 20px; }
}