* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
  background: #0d0d0d;
  color: #ccc;
  padding: 8px 20px;
  font-size: 13px;
  display: flex;
  gap: 20px;
}

/* NAVBAR */
.navbar {
  background: #000;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #4da3ff;
}

/* DESKTOP MENU */
.desktop-menu {
  display: flex;
  gap: 25px;
}

.desktop-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.desktop-menu a:hover {
  color: #4da3ff;
}

/* FARE BUTTON */
.fare-btn {
  background: #4da3ff;
  color: #000 !important;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 2px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100%;
  background: #000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.4s ease;
  z-index: 2000;
}

.mobile-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}

/* MOBILE HEADER */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

/* SHOW MOBILE MENU */
.mobile-menu.show {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 75vh; /* DESKTOP HEIGHT */
  background:url(../images/banner.jpg)
    center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #4da3ff;
}

.hero-content p {
  margin-top: 15px;
  font-size: 17px;
  color: #ddd;
  line-height: 1.6;
}

/* HERO BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 26px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: #4da3ff;
  color: #000;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #4da3ff;
}

.btn.secondary:hover {
  background: #4da3ff;
  color: #000;
}

/* ?? MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 95vh; /* MOBILE HEIGHT MORE */
    padding: 0 20px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}


/* SECTION */
.popular-trips {
  background: linear-gradient(135deg, #0b1a2a, #020812);
  padding: 80px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* ROW */
.trip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.trip-card {
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #1e1e1e;
  transition: 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  border-color: #4da3ff;
}

/* IMAGE */
.trip-image {
  height: 200px;
  overflow: hidden;
}

.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.trip-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.trip-content {
  padding: 25px;
  text-align: center;
}

.trip-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.trip-content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* BUTTONS */
.card-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.card-buttons .btn {
  padding: 10px 18px;
  font-size: 14px;
}

/* SEE ALL */
.see-all {
  text-align: center;
  margin-top: 50px;
}

/* MOBILE */
@media (max-width: 900px) {
  .trip-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .card-buttons {
    flex-direction: column;
  }

  .card-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}


/* SEO CONTENT – IMPRESSIVE STYLE */
.seo-content {
  background: linear-gradient(135deg, #0b1a2a, #020812);
  padding: 90px 20px;
  color: #e0e0e0;
}

.seo-box {
  background: #111;
  border-radius: 8px;
  padding: 50px;
  border: 1px solid #1f1f1f;
}

.seo-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.seo-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #4da3ff;
}

.seo-content span {
  color: #4da3ff;
  font-weight: 700;
}

.lead {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #d6d6d6;
}

/* GRID */
.seo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.seo-left p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.seo-right ul {
  list-style: none;
  padding: 0;
}

.seo-right ul li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

/* HIGHLIGHT BOX */
.seo-highlight {
  margin: 40px 0;
  padding: 25px;
  background: #0b0b0b;
  border-left: 4px solid #4da3ff;
}

.seo-highlight p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

/* CTA LINE */
.seo-cta {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 900px) {
  .seo-box {
    padding: 30px 20px;
  }

  .seo-content h2 {
    font-size: 28px;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 15px;
  }
}


/* SERVICES SHOWCASE */
.services-showcase {
  background: linear-gradient(135deg, #0b1a2a, #020812);
  padding: 90px 20px;
  color: #fff;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: linear-gradient(135deg, #0b1a2a, #020812);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1e1e1e;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #4da3ff;
}

/* IMAGE */
.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  padding: 28px;
  text-align: center;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-content h3 {
    font-size: 20px;
  }
}


/* VEHICLE CATEGORIES – ALTERNATE STYLE */
.vehicle-categories-alt {
  background: linear-gradient(135deg, #0b1a2a, #020812);
  padding: 100px 20px;
  color: #fff;
}

.vehicle-alt-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* GLASS CARD */
.vehicle-alt-card {
  position: relative;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  transition: 0.4s ease;
}

/* IMAGE */
.vehicle-alt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: 0.4s ease;
}

/* TAG */
.vehicle-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.65);
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* HOVER EFFECT */
.vehicle-alt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: 0.4s ease;
}

.vehicle-alt-card:hover::after {
  border-color: rgba(77, 163, 255, 0.7);
  box-shadow: 0 0 25px rgba(77, 163, 255, 0.35);
}

.vehicle-alt-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 900px) {
  .vehicle-alt-row {
    grid-template-columns: 1fr;
  }

  .vehicle-alt-card {
    height: 240px;
  }
}

/* FOOTER – DIFFERENT THEME */
.site-footer {
  background: linear-gradient(135deg, #0b1a2a, #020812);
  padding: 90px 20px 30px;
  color: #d6dde8;
  position: relative;
  overflow: hidden;
}

/* subtle top glow line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent, #4da3ff, transparent);
  transform: translateX(-50%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
}

/* LOGO */
.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-logo span {
  color: #6fb6ff;
}

/* DESCRIPTION */
.footer-desc {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #b9c4d4;
}

/* CONTACT BUTTONS */
.footer-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-btn {
  padding: 11px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
}

.footer-btn.call {
  background: linear-gradient(135deg, #6fb6ff, #4da3ff);
  color: #041021;
  box-shadow: 0 6px 20px rgba(77,163,255,0.35);
}

.footer-btn.call:hover {
  transform: translateY(-2px);
}

.footer-btn.whatsapp {
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.footer-btn.whatsapp:hover {
  background: rgba(255,255,255,0.08);
}

/* HEADINGS */
.footer-col h4 {
  font-size: 17px;
  margin-bottom: 22px;
  color: #ffffff;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #6fb6ff;
  display: block;
  margin-top: 8px;
}

/* LISTS */
.footer-links,
.social-list {
  list-style: none;
  padding: 0;
}

.footer-links li,
.social-list li {
  margin-bottom: 13px;
  font-size: 14px;
  color: #b9c4d4;
}

.social-list li a {
  color: #b9c4d4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-list li a:hover {
  color: #6fb6ff;
  transform: translateX(6px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #9aa7bd;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.floating-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.chat-options {
  display: none;
  margin-bottom: 10px;
  flex-direction: column;
  gap: 10px;
}

.chat-options a {
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  background: #111;
}


/* INNER HERO */
.inner-hero {
  position: relative;
  height: 65vh;
  background:url('../images/inner banner.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.inner-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.inner-hero-content p {
  font-size: 17px;
  color: #dcdcdc;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #4da3ff;
  color: #000;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .inner-hero {
    height: 85vh;
  }

  .inner-hero-content h1 {
    font-size: 32px;
  }
}


/* INNER HERO TWO */
.inner-hero-two {
  position: relative;
  height: 65vh;
  background:url('../images/DELHI BANNER.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-hero-two-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.inner-hero-two-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.inner-hero-two-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.inner-hero-two-content p {
  font-size: 17px;
  color: #dcdcdc;
  margin-bottom: 30px;
}

.hero-btn-two {
  display: inline-block;
  padding: 14px 34px;
  background: #4da3ff;
  color: #000;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .inner-hero-two {
    height: 85vh;
  }

  .inner-hero-two-content h1 {
    font-size: 32px;
  }
}


/* JAIPUR SERVICES */
.jaipur-services {
  background: #0c1220;
  padding: 90px 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 800;
}

.section-heading p {
  color: #bdbdbd;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-box {
  background: #0c1220;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 28px;
  }
}


.seo-intro {
  background: #0f0f0f;
  padding: 70px 20px;
}

.seo-intro h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
}

.seo-intro p {
  color: #cfcfcf;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .seo-intro h2 {
    font-size: 26px;
  }
}


/* IMAGE ROUTES SECTION */
.popular-routes-img {
  background: #0c1220;
  padding: 90px 20px;
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.route-card {
  background: #111827;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
}

.route-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.route-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* CONTENT */
.route-card-content {
  padding: 22px;
}

.route-card-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.route-card-content p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ACTION BUTTONS */
.route-actions {
  display: flex;
  gap: 10px;
}

.call-btn,
.wa-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.call-btn {
  background: #4da3ff;
  color: #000;
}

.wa-btn {
  border: 1px solid #4da3ff;
  color: #ffffff;
}

.wa-btn:hover {
  background: #4da3ff;
  color: #000;
}

/* MOBILE */
@media (max-width: 1100px) {
  .route-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .route-card-grid {
    grid-template-columns: 1fr;
  }

  .route-card img {
    height: 190px;
  }
}



.why-us {
  background: #0e0e0e;
  padding: 80px 20px;
}

.why-us h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  color: #cfcfcf;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ SECTION */
.faq {
  background: #0b1220;
  padding: 80px 20px;
}

.faq h2 {
  text-align: center;
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 50px;
}

.faq h3 {
  font-size: 18px;
  color: #6fb6ff;
  margin-bottom: 8px;
  margin-top: 25px;
}

.faq p {
  font-size: 15px;
  color: #cfd6e3;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 2px solid rgba(111,182,255,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 26px;
  }

  .faq h3 {
    font-size: 16px;
  }
}



/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, #0f2a44, #020812);
  padding: 90px 20px;
  text-align: center;
  position: relative;
}

.final-cta h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 35px;
}

/* CTA BUTTONS */
.final-cta a {
  display: inline-block;
  margin: 10px;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* CALL BUTTON */
.final-cta a[href^="tel"] {
  background: linear-gradient(135deg, #6fb6ff, #4da3ff);
  color: #041021;
  box-shadow: 0 10px 30px rgba(77,163,255,0.4);
}

/* WHATSAPP BUTTON */
.final-cta a[href^="https://wa.me"] {
  border: 2px solid rgba(255,255,255,0.3);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

/* HOVER EFFECT */
.final-cta a:hover {
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .final-cta a {
    width: 90%;
    max-width: 320px;
  }
}



/* ===========================
   ONE WAY CAB HERO BANNER
   =========================== */

.oneway-hero {
  position: relative;
  height: 80vh;
  background:url('../images/banner one way.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay */
.oneway-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.55)
  );
}

/* Content */
.oneway-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.oneway-hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
}

.oneway-hero-content p {
  font-size: 17px;
  color: #d6dbe6;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Buttons */
.oneway-hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.oneway-call-btn,
.oneway-wa-btn {
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* Call */
.oneway-call-btn {
  background: linear-gradient(135deg, #6fb6ff, #4da3ff);
  color: #041021;
  box-shadow: 0 10px 30px rgba(77, 163, 255, 0.45);
}

/* WhatsApp */
.oneway-wa-btn {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.oneway-wa-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .oneway-hero {
    height: 80vh;
  }

  .oneway-hero-content h1 {
    font-size: 32px;
  }

  .oneway-hero-content p {
    font-size: 15px;
  }

  .oneway-call-btn,
  .oneway-wa-btn {
    width: 90%;
    max-width: 320px;
  }
}


/* ===============================
   ONE WAY ROUTES SECTION
   =============================== */

.oneway-routes {
  padding: 90px 20px;
  background: #0b1220;
}

.oneway-routes-container {
  max-width: 1300px;
  margin: auto;
}

.oneway-routes h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.oneway-routes-sub {
  text-align: center;
  color: #b8c0d4;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* GRID */
.oneway-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.oneway-route-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.oneway-route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* IMAGE */
.oneway-route-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.oneway-route-content {
  padding: 22px;
}

.oneway-route-content span {
  font-size: 12px;
  font-weight: 700;
  color: #f4b400;
  letter-spacing: 0.5px;
}

.oneway-route-content h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #101828;
}

.oneway-route-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* WHATSAPP BUTTON */
.oneway-wa-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.oneway-wa-btn:hover {
  background: linear-gradient(135deg, #1ebe5d, #25d366);
}

/* TABLET */
@media (max-width: 1024px) {
  .oneway-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .oneway-routes {
    padding: 60px 15px;
  }

  .oneway-routes-grid {
    grid-template-columns: 1fr;
  }

  .oneway-route-img {
    height: 260px; /* BIG & ATTRACTIVE */
  }

  .oneway-routes h2 {
    font-size: 28px;
  }
}



/* =========================
   RAJASTHAN TOUR BANNER
   ========================= */

.rajasthan-banner {
  position: relative;
  height: 70vh;
  background:url('../images/Rajasthan tour.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rajasthan-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55)
  );
}

.rajasthan-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.rajasthan-banner-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
}

.rajasthan-banner-content p {
  font-size: 17px;
  color: #e0e6f1;
  line-height: 1.7;
  margin-bottom: 35px;
}

.rajasthan-banner-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.rajasthan-call-btn,
.rajasthan-wa-btn {
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.rajasthan-call-btn {
  background: #f4b400;
  color: #1b1b1b;
}

.rajasthan-wa-btn {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .rajasthan-banner {
    height: 88vh;
  }

  .rajasthan-banner-content h1 {
    font-size: 32px;
  }

  .rajasthan-banner-content p {
    font-size: 15px;
  }
}


/* ==============================
   RAJASTHAN DESTINATIONS
   ============================== */

.rajasthan-destinations {
  padding: 90px 20px;
  background: #f8fafc;
}

.rajasthan-destinations-container {
  max-width: 1300px;
  margin: auto;
}

.rajasthan-destinations h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}

.rajasthan-destinations-sub {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
}

.rajasthan-destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rajasthan-destination-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.rajasthan-destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rajasthan-destination-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.rajasthan-destination-content {
  padding: 22px;
  text-align: center;
}

.rajasthan-destination-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.rajasthan-destination-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

.rajasthan-destination-content a {
  display: inline-block;
  padding: 10px 26px;
  background: #f4b400;
  color: #1b1b1b;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 1024px) {
  .rajasthan-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .rajasthan-destinations-grid {
    grid-template-columns: 1fr;
  }

  .rajasthan-destination-img {
    height: 280px; /* Bigger images on mobile */
  }

  .rajasthan-destinations h2 {
    font-size: 28px;
  }
}



/* CONTACT BANNER */
.contact-banner {
  position: relative;
  height: 70vh;
  background:url('../images/Contact banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.contact-banner-content h1 {
  font-size: 42px;
  font-weight: 900;
}

.contact-banner-content p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #dfe6f1;
}

/* MOBILE */
@media (max-width:768px) {
  .contact-banner {
    height: 70vh;
  }

  .contact-banner-content h1 {
    font-size: 30px;
  }
}


/* CONTACT INFO */
.contact-info {
  padding: 90px 20px;
  background: #0f172a;
  color: #fff;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;
}

.contact-info h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
}

.contact-sub {
  text-align: center;
  margin: 10px auto 60px;
  color: #cbd5e1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.contact-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-card a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* TABLET */
@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 28px;
  }
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* MOBILE */
@media (max-width:600px) {
  .contact-map iframe {
    height: 300px;
  }
}


/* ===============================
   FLEET SECTION
   =============================== */

.fleet-section {
  padding: 90px 20px;
  background: #f9fafc;
}

.fleet-container {
  max-width: 1300px;
  margin: auto;
}

.fleet-section h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}

.fleet-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
}

/* GRID */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.fleet-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.fleet-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.fleet-content {
  padding: 25px;
}

.fleet-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.fleet-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.fleet-content ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

/* BUTTONS */
.fleet-buttons {
  display: flex;
  gap: 10px;
}

.fleet-call,
.fleet-wa {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

/* Call Button */
.fleet-call {
  background: #f4b400;
  color: #1b1b1b;
}

/* WhatsApp Button */
.fleet-wa {
  background: #25d366;
  color: #fff;
}

.fleet-call:hover {
  background: #e09e00;
}

.fleet-wa:hover {
  background: #1ebe5d;
}

/* TABLET */
@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-img {
    height: 280px; /* Bigger Image on Mobile */
  }

  .fleet-section h2 {
    font-size: 28px;
  }

  .fleet-buttons {
    flex-direction: column;
  }
}
