:root {
  --clr-bg: #f4f7f9;
  --clr-surface: #ffffff;
  --clr-surface-2: #ebf0f4;
  --clr-border: #dfe3e8;
  --clr-text: #111827;
  --clr-text-muted: #4b5563;
  --clr-accent: #ff4c31;
  --clr-accent-dark: #004ecc;
  --clr-wa: #25d366;
  --clr-wa-dark: #1aab53;
  --clr-call: #111827;
  --clr-call-hover: #000000;

  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Poppins", Sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 30px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 20, 50, 0.1);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.3s;
  --nav-h: 76px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.card-name,
.feature-card h4 {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.section-eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-text);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  text-align: center;
}
.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 98, 255, 0.3);
}
.btn--primary:hover {
  background: var(--clr-text);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: var(--clr-wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: var(--clr-wa-dark);
  transform: translateY(-2px);
}
.btn--call {
  background: var(--clr-text);
  color: #fff;
}
.btn--call:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
}
.btn--call-outline {
  /* border: 2px solid rgba(255, 255, 255, 0.7); */
  border: 2px solid var(--clr-text);
  color: #fff;
  background: var(--clr-text);
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(6px);
}
.btn--call-outline:hover {
  background: #fff;
  color: var(--clr-text);
  transform: translateY(-2px);
  border: 2px solid #fff;
}
.btn--full {
  width: 100%;
}
.btn--small {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  flex: 1;
  border-radius: var(--radius-sm);
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--clr-text);
}
.logo-icon {
  color: var(--clr-accent);
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 30px 0 auto;
}
.nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-accent);
}
.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--clr-accent);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}
.nav-cta:hover {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--clr-text);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  transform: translateY(-2px);
}
/* ═══════════════════════════════════════════════
   MOBILE HAMBURGER & NAV STYLING
═══════════════════════════════════════════════ */

/* Hamburger Button */
.hamburger {
  display: none; /* Desktop par hide rahega */
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--clr-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger se 'X' (Cross) banne ka animation */
.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 Menu Drawer */
.mobile-nav {
  display: none; /* Desktop par hide */
  flex-direction: column;
  background: var(--clr-surface);
  padding: 0 2rem;
  border-top: 1px solid var(--clr-border);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

/* Jab menu open ho */
.mobile-nav.open {
  max-height: 300px;
  padding: 1.5rem 2rem;
}

.mob-link {
  padding: 0.8rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-border);
}

.mob-link:last-child {
  border-bottom: none;
}

.mob-link:hover {
  color: var(--clr-accent-dark);
}

.mob-link--cta {
  color: var(--clr-accent-dark);
  font-weight: 700;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--clr-accent);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}
/* Mobile Active Link Color */
.mob-link.active {
  color: var(--clr-accent);
}

/* Mobile Screens ke liye Settings */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  } /* Desktop links hide */
  .nav-cta {
    display: none;
  } /* Desktop button hide */
  .hamburger {
    display: flex;
  } /* Hamburger show */
  .mobile-nav {
    display: flex;
  } /* Mobile drawer layout active */
}
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
  width: 100%;
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--clr-text);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* STRICT 3-COLUMN GRIDS FOR CARS */
.fleet {
  padding: 6rem 0rem;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  background-color: var(--clr-surface-2);
}
.fleet-grid {
  width: 86%;
}
.related-grid {
  width: 89.5% !important;
}
.fleet-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* FORCED 3 COLUMNS */
  gap: 2rem;
  width: 86%;
  margin: 0 auto;
}

.car-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--dur),
    box-shadow var(--dur);
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}
.card-img-link {
  display: block;
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--clr-surface-2);
}
.car-card:hover .card-img {
  transform: scale(1.03);
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--clr-text);
  color: #fff;
}
.card-body {
  padding: 1.5rem;
}
.card-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
}
.card-specs-mini {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}
.card-contact-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cta-banner {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff71;
  /* background: rgba(0, 20, 50, 0.75); */
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 90%;
}
.cta-banner-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #000;
  margin-bottom: 2.5rem;
}
.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  background: #0b1120;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .logo {
  color: #fff;
}
.footer-tagline {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-contact h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #fff;
}
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  text-align: center;
}

/* Details Page 6-Grid Feature */
.details-main {
  max-width: 90%;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.2rem;
}
.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-size: 1.4rem;
  color: var(--clr-text);
  font-weight: 700;
}

/* Related Grid */
.related-section {
  background: var(--clr-surface-2);
  padding: 5rem 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 90%;
  margin: 0 auto;
}

/* Mobile Responses */
@media (max-width: 992px) {
  .fleet-grid,
  .related-grid,
  .detail-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .fleet-grid,
  .related-grid,
  .detail-feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    height: var(--nav-h);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      5deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 45%,
      rgba(0, 0, 0, 0.2) 100%
    );
  }
  .fleet {
    padding: 2rem 0rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: var(--clr-surface-2);
  }
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .fleet-grid,
  .related-grid {
    width: 90%;
    margin: 0 auto;
  }
  .how-it-works {
    padding: 2rem 0 !important;
    max-width: 90%;
    margin: 0 auto;
  }
  .faq-section {
    padding: 2rem 0rem !important;
    background-color: var(--clr-surface-2);
  }
  .faq-question {
    font-size: 1rem !important;
  }
  .cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 0;
    max-width: 90%;
  }
  .cta-banner-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
  }
  .cta-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .nav-cta {
    padding: 0.55rem 1rem;
  }
  .section-eyebrow {
    font-size: 14px;
  }
  .hero-sub {
    color: var(--clr-text);
  }
}

/* ─────────────────────────────────────────
   HOW IT WORKS STYLING
───────────────────────────────────────── */
.how-it-works {
  padding: 5rem 2rem;
  max-width: 90%;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--clr-surface);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--clr-border);
  position: relative;
  transition: all 0.3s var(--ease);
}

.step-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.step-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--clr-text);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

/* ─────────────────────────────────────────
   FAQ SECTION STYLING
───────────────────────────────────────── */
.faq-section {
  padding: 5rem 2rem;
  background-color: var(--clr-surface-2);
}

.faq-container {
  max-width: 90%;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-surface);
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.25rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  color: var(--clr-text);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--clr-accent);
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-question:hover {
  background: #f9fbff;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SIMPLE FOOTER STYLING
───────────────────────────────────────── */
.simple-footer {
  background-color: #111827;
  /* color: rgba(255, 255, 255, 0.5); */
  color: #fff;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   DETAILS HERO STYLING
───────────────────────────────────────── */
.details-hero {
  position: relative;
  height: 60vh; /* Home se thora chota */
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

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

.d-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
  object-position: center 80%;
}

.details-hero-overlay {
  position: absolute;
  inset: 0;
  /* Darker gradient to make white text pop */
  background: linear-gradient(
    to bottom,
    rgba(0, 20, 50, 0.4),
    rgba(0, 20, 50, 0.8)
  );
}

.details-hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  padding: 0 2rem;
  color: #fff;
}

.details-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.details-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.details-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .details-hero {
    min-height: 300px;
    height: 100%;
  }
  .details-hero-actions .btn {
    width: 100%; /* Mobile par buttons full width */
  }
  .details-hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0;
    color: #fff;
  }
  .fleet {
    padding: 2rem 0rem !important;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: var(--clr-surface-2);
  }
  .related-section {
    background: var(--clr-surface-2);
    padding: 2rem 0;
  }
}
