/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #F4EFE9;
  color: #1F2A44;
}

/* =========================
   HEADER (STICKY)
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #F4EFE9;
  padding: 10px  8%;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 12px;
  border-top: 1px solid rgba(184, 155, 94, 0.3);
  padding-top: 12px;
}

.navigation a {
  text-decoration: none;
  color: #1F2A44;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigation a:hover {
  text-decoration: underline;
}

/* =========================
   HERO SLIDER
========================= */
/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 8% 8%;

  opacity: 0;
  transform: translateX(40px) translateY(20px);
  transition: all 0.7s ease;

  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(73, 75, 79, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #ffffff;
  text-align: left;
}

.hero-city {
  font-size: 68px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 17px;
  line-height: 1.8;
}
/* HERO ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;   /* KEY FIX */
  color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 42px;           /* elegant arrow */
  padding: 0;
  cursor: pointer;
  z-index: 5;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-arrow.left {
  left: 24px;
}

.hero-arrow.right {
  right: 24px;
}

.hero-arrow:hover {
  color: #ffffff;
  transform: translateY(-50%) scale(1.15);
}


/* ================= NETWORK ================= */

.network {
  padding: 100px 8%;
  background-color: #F4EFE9;
}

.network-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.network-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
}

.network-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.network-card {
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.network-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.network-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 1000px) {
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ROUTES ================= */

.routes {
  padding: 100px 8%;
  background-color: #ffffff;
}

.routes-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.routes-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
}

.routes-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.route-card {
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.route-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.route-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

.route-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT CTA ================= */

.contact-cta {
  padding: 120px 8%;
  background-color: #1F2A44;
  color: #ffffff;
}

.contact-content {
  max-width: 700px;
}

.contact-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.contact-points {
  list-style: none;
  margin-bottom: 40px;
}

.contact-points li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.contact-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #B89B5E;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn.primary {
  background-color: #B89B5E;
  color: #1F2A44;
}

.btn.secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.btn.primary:hover {
  background-color: #d0b06a;
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ================= FOOTER ================= */

.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 80px 8% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= ABOUT PAGE ================= */

.about-page {
  padding: 120px 8%;
  background-color: #ffffff;
}

.about-container {
  max-width: 820px;
}

.about-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 30px;
}

.about-intro {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #333;
}

.about-container h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.about-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 100px 8%;
  background-color: #F4EFE9;
}

.testimonials-container {
  max-width: 1000px;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-container h1 {
    font-size: 36px;
  }
}

/* ================= DESTINATIONS PAGE ================= */

.destinations-page {
  padding: 120px 8%;
  background-color: #ffffff;
}

.destinations-page-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.destinations-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.destinations-page-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.destinations-list {
  max-width: 900px;
}

.destination-item {
  margin-bottom: 40px;
}

.destination-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.destination-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .destinations-page {
    padding: 90px 6%;
  }

  .destinations-page-header h1 {
    font-size: 36px;
  }
}
/* ================= ROUTES PAGE ================= */

.routes-page {
  padding: 120px 8%;
  background-color: #ffffff;
}

.routes-page-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.routes-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.routes-page-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.routes-list {
  max-width: 900px;
}

.route-item {
  margin-bottom: 40px;
}

.route-item h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.route-item span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.route-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .routes-page {
    padding: 90px 6%;
  }

  .routes-page-header h1 {
    font-size: 36px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  padding: 120px 8%;
  background-color: #ffffff;
}

.contact-page-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.contact-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-page-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.contact-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
}

.contact-details h3,
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #555;
}

.contact-details a {
  color: #1F2A44;
  text-decoration: underline;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: #1F2A44;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #111827;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-page-content {
    grid-template-columns: 1fr;
  }

  .contact-page-header h1 {
    font-size: 36px;
  }
}

/* ================= DESTINATION SLIDING GALLERY ================= */

.destination-gallery {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 40px 12px 80px;
  scroll-behavior: smooth;
}

.destination-gallery::-webkit-scrollbar {
  height: 0;
}

/* IMAGE STYLE — WIDE & PREMIUM */
.destination-gallery img {
  width: 480px;          /* WIDE */
  height: 360px;         /* SAME HEIGHT */
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease,
    opacity 0.45s ease;
}

/* MAIN UPRISING EFFECT */
.destination-gallery img:hover {
  transform: translateY(-55px) scale(1.05);
  box-shadow: 0 55px 95px rgba(0, 0, 0, 0.45);
  z-index: 10;
}

/* OTHER IMAGES STAY LOWER */
.destination-gallery:hover img:not(:hover) {
  transform: translateY(16px) scale(0.96);
  opacity: 0.82;
}

/* TABLET */
@media (max-width: 1024px) {
  .destination-gallery img {
    width: 380px;
    height: 300px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .destination-gallery {
    gap: 18px;
    padding: 28px 6px 60px;
  }

  .destination-gallery img {
    width: 280px;
    height: 220px;
  }

  .destination-gallery img:hover {
    transform: translateY(-30px) scale(1.04);
  }
}
/* FIX: allow gallery to span full viewport */

/* FIX: full-width gallery without cutting first image */

/* ===== FINAL FIX: FULL-WIDTH SLIDER WITHOUT CUT ===== */

.destination-item {
  position: relative;
}

.destination-gallery {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 40px 8vw 80px; /* viewport-based padding */
  scroll-behavior: smooth;
}

.destination-gallery::-webkit-scrollbar {
  height: 0;
}

/* IMAGE STYLE */
.destination-gallery img {
  width: 480px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease,
    opacity 0.45s ease;
}

/* UPRISING EFFECT */
.destination-gallery img:hover {
  transform: translateY(-55px) scale(1.05);
  box-shadow: 0 55px 95px rgba(0, 0, 0, 0.45);
  z-index: 10;
}

/* OTHER IMAGES MOVE DOWN */
.destination-gallery:hover img:not(:hover) {
  transform: translateY(16px) scale(0.96);
  opacity: 0.82;
}

/* TABLET */
@media (max-width: 1024px) {
  .destination-gallery img {
    width: 380px;
    height: 300px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .destination-gallery {
    padding: 28px 6vw 60px;
    gap: 18px;
  }

  .destination-gallery img {
    width: 280px;
    height: 220px;
  }

  .destination-gallery img:hover {
    transform: translateY(-30px) scale(1.04);
  }
}
/* ===== ALIGN GALLERY WIDE WITHOUT CLIPPING ===== */

.destination-gallery {
  margin-left: -8vw;
  margin-right: -8vw;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (max-width: 768px) {
  .destination-gallery {
    margin-left: -6vw;
    margin-right: -6vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
/* ===== TRUE FULL-WIDTH DESTINATION SLIDER ===== */

.destination-gallery {
  width: 100%;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 40px 5vw 80px;
  scroll-behavior: smooth;
}

.destination-gallery::-webkit-scrollbar {
  height: 0;
}

.destination-gallery img {
  width: 480px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease,
    opacity 0.4s ease;
}

.destination-gallery img:hover {
  transform: translateY(-55px) scale(1.05);
  box-shadow: 0 55px 95px rgba(0, 0, 0, 0.45);
  z-index: 10;
}

.destination-gallery:hover img:not(:hover) {
  transform: translateY(16px) scale(0.96);
  opacity: 0.82;
}

/* MOBILE */
@media (max-width: 768px) {
  .destination-gallery {
    padding: 30px 4vw 60px;
    gap: 18px;
  }

  .destination-gallery img {
    width: 280px;
    height: 220px;
  }
}
.rajasthan-map-section {
  padding: 120px 8%;
  background: #ffffff;
  text-align: center;
}

.rajasthan-map-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 12px;
}

.map-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* MAP */
.map-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.rajasthan-map {
  width: 100%;
  height: auto;
}
.map-wrapper {
  position: relative;
}

/* GALLERY PAGE */

.gallery-page {
  padding: 80px 8%;
}

.gallery-page h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.gallery-intro {
  max-width: 700px;
  font-size: 16px;
  margin-bottom: 60px;
  color: #555;
}

/* EACH SECTION */

.gallery-section {
  margin-bottom: 80px;
}

.gallery-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* PHOTOS + VIDEOS */

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* UPRISING EFFECT */

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.map-point {
  position: absolute;
  padding: 6px 10px;
  font-size: 12px;
  background: #1f2a44;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.map-point:hover {
  transform: translate(-50%, -60%);
  background: #b89b5e;
}
.jodhpur-pin {
  background: #b89b5e;
  color: #1f2a44;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Pin head */
.jodhpur-pin::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #b89b5e;
}

.map-destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.map-destinations a {
  padding: 10px 18px;
  border: 1px solid #1f2a44;
  border-radius: 30px;
  text-decoration: none;
  color: #1f2a44;
  font-size: 14px;
  transition: all 0.3s ease;
}

.map-destinations a:hover {
  background: #1f2a44;
  color: #fff;
  transform: translateY(-4px);
}

/* MAJOR DESTINATIONS SECTION */

.major-destinations {
  padding: 100px 8%;
  text-align: center;
  background: #fff;
}

.major-destinations h2 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1f2a44;
}

.dest-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* BUTTONS */

.destination-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.destination-buttons a {
  padding: 14px 22px;
  border: 1px solid #1f2a44;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  color: #1f2a44;
  transition: all 0.3s ease;
  background:#1f2a44;
  color:#ffffff;
}

.destination-buttons a:hover {
  background: #b89b5e;
  color: #1f2a44;
  transform: translateY(-4px);
}

/* ===== GALLERY PAGE ===== */

.gallery-page {
  padding: 100px 8%;
}

.gallery-page h1 {
  font-size: 56px;
  margin-bottom: 80px;
  color: #1f2a44;
}

/* EACH VERTICAL BLOCK */

.gallery-block {
  margin-bottom: 120px;
}

.gallery-block h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1f2a44;
}

/* HOVER GALLERY */

.hover-gallery {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 40px;
}

.hover-gallery::-webkit-scrollbar {
  height: 0;
}

/* IMAGES */

.hover-gallery img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.4s ease;
}

/* MAIN HOVER (UPRISE) */

.hover-gallery img:hover {
  transform: translateY(-40px) scale(1.05);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  z-index: 5;
}

/* OTHER IMAGES MOVE DOWN */

.hover-gallery:hover img:not(:hover) {
  transform: translateY(14px) scale(0.96);
  opacity: 0.8;
}

/* MOBILE */

@media (max-width: 768px) {
  .hover-gallery img {
    width: 260px;
    height: 190px;
  }

  .hover-gallery img:hover {
    transform: translateY(-20px) scale(1.03);
  }
}

/* CAB SERVICE SECTION */

.cab-service {
  padding: 100px 8%;
  text-align: center;
}

.cab-service h2 {
  font-size: 56px;
  color: #1f2a44;
  margin-bottom: 20px;
}

.cab-intro {
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* CAB TYPES */

.cab-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.cab-card {
  padding: 30px;
  border-radius: 18px;
  background: #f6f2ea;
  transition: transform 0.3s ease;
}

.cab-card:hover {
  transform: translateY(-8px);
}

.cab-card h3 {
  margin-bottom: 10px;
  color: #1f2a44;
}

/* BOOKING FORM */

.cab-booking {
  padding: 100px 8%;
  background: #f9f7f3;
  text-align: center;
}

.booking-form {
  max-width: 700px;
  margin: 50px auto 0;
  display: grid;
  gap: 18px;
}

.booking-form input,
.booking-form select {
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.booking-form button {
  padding: 16px;
  background: #1f2a44;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.booking-form button:hover {
  background: #b89b5e;
  color: #1f2a44;
}
.cab-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.cab-card {
  background: #f6f2ea;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s ease;
}

.cab-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cab-card h3 {
  margin: 16px 0 6px;
  color: #1f2a44;
}

.cab-card p {
  font-size: 14px;
  color: #555;
  padding: 0 16px 20px;
}

.cab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* FLOATING CONTACT BUTTONS */

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  padding: 14px 20px;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

/* WhatsApp */

.float-btn.whatsapp {
  background: #25D366;
}

/* Email */

.float-btn.email {
  background: #1f2a44;
}

/* Hover */

.float-btn:hover {
  transform: translateY(-4px);
}

/* DESTINATION CARDS */

.destination-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.destination-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-card h3 {
  margin: 18px 0 10px;
  color: #1f2a44;
}

.destination-card a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #1f2a44;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.destination-card a:hover {
  background: #b89b5e;
  color: #1f2a44;
}
.gallery-back {
  padding: 30px 8% 0;
}

.gallery-back a {
  display: inline-block;
  text-decoration: none;
  color: #1f2a44;
  font-size: 14px;
  border: 1px solid #1f2a44;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.gallery-back a:hover {
  background: #1f2a44;
  color: #fff;
}

/* JOURNEY GALLERY */

.journey-gallery {
  padding: 100px 8%;
}

.journey-gallery h1 {
  font-size: 56px;
  margin-bottom: 12px;
  color: #1f2a44;
}

.gallery-intro {
  max-width: 700px;
  margin-bottom: 60px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* MASONRY LAYOUT */

.gallery-masonry {
  column-count: 3;
  column-gap: 28px;
}

.gallery-masonry img,
.gallery-masonry video {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 18px;
  break-inside: avoid;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER EFFECT */

.gallery-masonry img:hover,
.gallery-masonry video:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    column-count: 1;
  }
}
/* ===== GALLERY STYLING ===== */

.travel-gallery {
  padding: 100px 8%;
  text-align: center;
}

.gallery-header h1 {
  font-size: 56px;
  color: #1f2a44;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

/* LIGHTBOX */

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.lightbox-caption {
  color: #fff;
  margin-top: 16px;
  font-size: 18px;
  text-align: center;
}

.close-lightbox {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-lightbox:hover {
  color: #b89b5e;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}

.trip-contact {
  display: flex;
  min-height: 100vh;
}

.left {
  flex: 1;
  background: linear-gradient(135deg, #0f3057, #00587a);
  color: #fff;
  padding: 80px;
}

.left h1 {
  font-size: 42px;
}

.left ul {
  margin-top: 30px;
  padding-left: 0;
}

.left li {
  list-style: none;
  margin-bottom: 10px;
}

.right {
  flex: 1;
  background: #fff;
  padding: 60px;
}

/* ================= BACK TO HOME BUTTON (ISOLATED) ================= */
.back-home-btn {
  all: unset;              /* THIS LINE IS CRITICAL */
  display: inline-flex;
  align-items: center;

  padding: 10px 18px;
  margin: 20px 0 40px;

  background: #ffffff;
  border: 1px solid #1F2A44;
  border-radius: 6px;

  font-size: 14px;
  color: #1F2A44;
  text-decoration: none;
  cursor: pointer;

  position: relative;
  z-index: 10;
}

.back-home-btn:hover {
  background: #1F2A44;
  color: #ffffff;
}

/* === FORCE HERO ARROWS TO BE ICON-ONLY === */
.hero-arrow {
  all: unset;                  /* 🔑 resets ALL button styles */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  z-index: 20;
}

.hero-arrow.left {
  left: 24px;
}

.hero-arrow.right {
  right: 24px;
}

.hero-arrow:hover {
  color: #ffffff;
  transform: translateY(-50%) scale(1.15);
}
/* ========== PURE IMAGE GALLERY ========== */

.pure-gallery {
  padding: 80px 8%;
  background: #ffffff;
}

.pure-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* IMAGE STYLE */
.pure-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  background: #eaeaea;
}
/* DARK BLUE MENU ROW */
.site-header {
  background-color: #1F2A44; /* dark blue */
}

.navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.navigation a {
  color: #ffffff; /* white text */
}

.navigation a:hover {
  text-decoration: underline;
  color: #B89B5E; /* classy gold hover */
}
.site-header {
  background-color: #1F2A44;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
/* LOGO SECTION stays light */
.site-header {
  background-color: #F4EFE9;
}

/* MENU ROW ONLY */
.navigation {
  background-color: #1F2A44; /* dark blue */
  border-top: none;
  padding: 14px 0;
}

/* MENU TEXT */
.navigation a {
  color: #ffffff;
}

/* HOVER EFFECT */
.navigation a:hover {
  color: #B89B5E; /* gold */
  text-decoration: underline;
}
/* REMOVE HEADER SIDE PADDING EFFECT */
.site-header {
  padding-left: 0;
  padding-right: 0;
}

/* KEEP LOGO CENTERED */
.logo {
  padding: 10px 8%;
}

/* FULL-WIDTH MENU BAR */
.navigation {
  width: 100%;
  margin: 0;              /* removes bottom gap */
  padding: 14px 0;
  background-color: #1F2A44;
}

/* MENU TEXT */
.navigation a {
  color: #ffffff;
}

/* GOLD HOVER */
.navigation a:hover {
  color: #B89B5E;
}
/* REMOVE EXTRA SPACE UNDER HEADER */
.site-header {
  padding-bottom: 0;
}

/* ENSURE MENU HAS NO BOTTOM GAP */
.navigation {
  margin-bottom: 0;
}

/* HERO SHOULD TOUCH MENU */
.hero {
  margin-top: 0;
}
/* ================= CONTACT PAGE ================= */

.contact-page {
  padding: 120px 8%;
  background-color: #ffffff;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 14px;
}

.contact-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

/* LEFT INFO */
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.contact-info a {
  color: #1F2A44;
  text-decoration: underline;
}

.contact-note {
  margin-top: 30px;
  font-size: 15px;
  color: #666;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 15px;
  border: 1px solid rgba(0,0,0,0.25);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #1F2A44;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #111827;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 36px;
  }
}
/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 80px 8% 60px;
  background-color: #ffffff;
}

.services-header {
  max-width: 800px;
  margin-bottom: 40px;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* ROW */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}


/* REVERSE ROW */
.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

/* TEXT */
.service-text h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #1F2A44;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-btn:hover {
  background-color: #111827;
}

/* IMAGE */
.service-image img {
  width: 100%;
  max-width: 520px;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .services-header h2 {
    font-size: 36px;
  }

  .service-text h3 {
    font-size: 28px;
  }
}
.section-bg {
  background-color: #F4EFE9;
}

.services-section {
  padding: 120px 8%;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
}

.service-text h3 {
  font-size: 34px;
  margin-bottom: 16px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.service-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #1F2A44;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.service-btn:hover {
  background: #111827;
}

/* MOBILE */
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.services-header {
  padding: 100px 8% 40px;
  max-width: 800px;
}
.cab-link,
.cab-link * {
  text-decoration: none;
}
.network,
.routes,
.testimonials,
.about-page,
.destinations-page,
.contact-page,
.cab-service,
.services-section,
.major-destinations,
.rajasthan-map-section {
  padding: 60px 8%;
}
.network-header,
.routes-header,
.destinations-page-header,
.services-header {
  margin-bottom: 30px;
}
