html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky navbar */
}

:root {
  --primary-orange: #ff7b00;
  --primary-orange-light: #ffb347;
  --white: #ffffff;
  --bg-light: #f7f9fc;
  --text-dark: #1a1f36;
  --text-muted: #4f566b;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1f36;
  background-color: #f7f9fc;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* CUSTOM SELECTION COLOR */
::selection {
  background: #ff7b00;
  color: #111;
}
::-moz-selection {
  background: #ff7b00;
  color: #111;
}

/* ANIMATED GRADIENT BACKGROUND */




.font-display {
  font-family: 'Playfair Display', serif;
}
.text-orange {
  color: #ff7b00;
}

/* UTILS */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* LOCATION MARQUEE */
.location-marquee {
  background: linear-gradient(135deg, #ffb347, #ff7b00), url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.15"/%3E%3C/svg%3E'); /* Theme orange gradient with noise */
  color: #fff;
  padding: clamp(12px, 2vw, 24px) 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  z-index: 1; /* Below the car and hero-content but above the fade */
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transform: translate3d(-50%, -50%, 0) rotate(-1.5deg); /* hardware acceleration for smooth rotated edges */
  backface-visibility: hidden; /* prevents jagged edges on rotation */
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  gap: 40px;
  width: max-content;
  will-change: transform;
}

.marquee-content span {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.marquee-content span:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.marquee-star {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.marquee-content span:hover .marquee-star {
  transform: scale(1.25) rotate(15deg);
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}



/* Base Headings */
h1, h2, h3, h4, h5, h6, .logo-text {
  font-family: 'Playfair Display', serif;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f7f9fc;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffb347, #ff7b00);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e66a00;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 90vh; 
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
  z-index: 10;
  background: transparent;
}

/* BACKGROUND IMAGE LAYER - Now using internal mask to prevent over-fading the car */
.hero-bg-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/bg1-hero.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  /* Mask only the background image, keeping the car on top solid */
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Atmospheric overlay for readability - Behind the car */
.hero-bg-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  z-index: 1;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: #ffe0b2;
  top: -200px;
  left: -200px;
}
.shape-2 {
  width: 700px;
  height: 700px;
  background: #ffd54f;
  bottom: -200px;
  right: -100px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 20px auto 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 8px 5%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(255, 123, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: #111;
  text-decoration: none;
}
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #1a1f36;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ff7b00;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover, .nav-links a.active {
  color: #ff7b00;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-actions .btn-primary {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #111;
  border: 1px solid rgba(255, 123, 0, 0.35);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-icon-wrap {
  display: none; /* Removed as per user request */
}
.nav-actions .btn-primary:hover {
  background: #fff;
  border-color: #ff7b00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.15);
}
.nav-actions .btn-primary:hover .btn-icon-wrap {
  transform: rotate(15deg) scale(1.1);
}
.nav-actions .btn-primary:hover {
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #fff;
  border-color: transparent;
}
.menu-toggle { display: none; }

/* HERO CONTENT SECTION */
.hero-content {
  position: relative;
  z-index: 10; /* Ensures content (and car) sits above the marquee */
  display: flex;
  flex-direction: column; /* Centered column layout */
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px 0 60px; /* Restored vertical padding */
  flex: 1;
}

/* HERO TEXT PORTION */
.hero-text {
  flex: none;
  width: 100%;
  max-width: 1100px;
  padding-right: 0;
  text-align: center;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #4f566b;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 32px;
  margin-left: auto; /* Centered */
  margin-right: auto;
  border: 1px solid rgba(255, 123, 0, 0.1);
}
.badge-icon {
  background: #ff7b00;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}


.hero-text h1 {
  font-size: clamp(28px, 4.2vw, 52px); /* Fluid typography */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #111;
  letter-spacing: -1.5px;
  white-space: nowrap; /* Keep in one line */
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-text h1 { white-space: normal; } /* Wrap on smaller screens */
}



.hero-text p {
  font-size: clamp(15px, 1.6vw, 19px); /* Fluid scale */
  color: #4f566b;
  margin-bottom: 32px;
  max-width: 850px; /* Wider auto-adjusting description */
  margin-left: auto;
  margin-right: auto;
}

.reviews {
  display: flex;
  align-items: center;
  justify-content: center; /* Center ratings */
  gap: 16px;
  margin-bottom: 40px;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }
.rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.stars {
  color: #f59e0b;
  font-size: 14px;
}
.rating-text span {
  font-size: 13px;
  color: #4f566b;
}

.cta-group {
  display: flex;
  align-items: center;
  justify-content: center; /* Center actions */
  gap: 20px;
  margin-bottom: 60px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.2);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffa01c, #e66a00);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 123, 0, 0.35);
  color: #fff !important;
}
.arrow { font-size: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-outline-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #25D366;
  padding: 15px 28px;
  border: 2px solid #25D366;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.1);
}
.btn-outline-whatsapp:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}
.btn-outline-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

/* HERO IMAGE CAR */
.hero-image {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.image-wrapper {
  position: relative;
  width: 90%;
  max-width: 800px; 
  margin: 0 auto;
}
.main-car {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 50; /* Bring to very top as requested */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: contrast(1.1) drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  /* Removed clipping mask to keep tires prominent */
  filter: contrast(1.05) drop-shadow(0 25px 40px rgba(0,0,0,0.15));
}

@keyframes carFloat {
  0% { transform: perspective(1000px) rotateY(-5deg) scale(1.15) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-5deg) scale(1.15) translateY(-15px); }
  100% { transform: perspective(1000px) rotateY(-5deg) scale(1.15) translateY(0); }
}
.main-car:hover {
  transform: translateY(-5px) scale(1.02); /* Slight lift on hover */
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 20px 5%;
  }
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .hero-text h1 { font-size: 40px; }
  .reviews, .cta-group { justify-content: center; }
  .menu-toggle { display: flex; flex-direction: column; gap: 4px; cursor: pointer; }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: #111; }
  .logo-text { display: none; } /* Hide text on mobile to save space */
  .logo-img { height: 50px; }
  
  .image-wrapper { width: 100%; max-width: 100%; padding: 0 2%; }
}

/* ----------- CONTINUOUS GRADIENT FLOW ----------- */
.sections-gradient-flow {
  /* CURATED WARM ATMOSPHERIC GRADIENT: Matches bg1-hero and flows seamlessly across sections */
  background: linear-gradient(
    180deg,
    #ffffff 0%,        /* Hero Top */
    #fcecc9 85vh,      /* Pure white background behind the car hero */
    #c2d2eb 100vh,     /* Stats - Warm morning glow (starts below hero) */
    #fff7ec 1500px,    /* Services */
    #fef9f5 2500px,    /* Destinations */
    #f8f9fc 3500px,    /* Fleet */
    #fbba91 4500px,    /* Steps */
    #fdfdfd 5500px,    /* Testimonials */
    #f9f6f2 6500px,    /* FAQ */
    #dcdeff 7500px,    /* Contact */
    #ffffff 100%       /* Footer */
  );
  position: relative;
  overflow: hidden;
}

.sections-gradient-flow > section {
  background: transparent !important;
}

/* ----------- NEW SECTIONS STYLING ----------- */
.section-padding { padding: 50px 5%; }
.pb-0 { padding-bottom: 0 !important; }
.bg-cream { background-color: #fffdfa; }
.bg-white { background-color: #ffffff; }
.container { max-width: 1200px; margin: 0 auto; }
.section-content-wrapper { position: relative; z-index: 2; }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }

/* ----------- NEW SECTION HEADERS (PILL BADGE) ----------- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border: 1px solid #eaeaea;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.section-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #ffb347; 
  border-radius: 50%;
  display: inline-block;
}

.section-title { 
  font-size: 48px; 
  color: #111; 
  margin-bottom: 0; 
  font-weight: 800; 
  line-height: 1.15;
  letter-spacing: -1px;
}
.section-subtitle { 
  font-size: 16px; 
  color: #6b7280; 
  margin-top: 15px;
}

@media (max-width: 768px) {
  .section-title { font-size: 34px; letter-spacing: -0.5px; }
}

/* ABOUT US SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
}
.main-about-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  min-height: 520px;
}
.glass-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
  max-width: 250px;
}
.play-btn {
  width: 50px;
  height: 50px;
  background: #ffb347;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.4);
}
.badge-text span {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  display: block;
  margin-top: 5px;
}
.mini-avatars {
  display: flex;
}
.mini-avatars img, .mini-avatars .more-count {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: #f0f0f0;
}
.mini-avatars img:first-child, .mini-avatars .more-count:first-child {
  margin-left: 0;
}
.mini-avatars .more-count {
  background: #ff7b00;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 30px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 30px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: #fffdfa;
  border: 2px solid #ffefe0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7b00;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
  font-weight: 700;
}
.feature-text p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}
.about-action {
  display: flex;
  align-items: center;
  gap: 30px;
}
.founder-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.founder-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.founder-text h5 {
  font-size: 16px;
  color: #111;
  margin-bottom: 2px;
  font-weight: 700;
}
.founder-text span {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .glass-badge { bottom: -20px; left: 50%; transform: translateX(-50%); width: 250px; }
  .about-action { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* FLEET RESPONSIVE REFINEMENTS */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards on tablet as requested */
  }
}

@media (max-width: 768px) {
  .cars-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0 30px 0;
    margin: 0 -5%; /* Negative margin to allow card to bleed to edges */
    padding-left: 5%;
    padding-right: 5%;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE */
  }
  .cars-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .fleet-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* HOW IT WORKS SPACING FIX */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start; /* Better alignment for long accordion */
}
@media (max-width: 991px) {
  .how-it-works-grid {
    gap: 40px;
  }
}
.hw-steps-list {
  margin-top: 20px;
}
.hw-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.main-hw-img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  border-radius: 20px;
}
.hw-glass-panel {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(30, 20, 10, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hw-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 25px;
}
.google-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.google-icon-wrapper svg { width: 20px; height: 20px; }
.hw-rating-text { display: flex; flex-direction: column; }
.stars-val { color: #fff; font-weight: 700; font-size: 16px; line-height: 1.2; }
.reviews-count { color: #d1d5db; font-size: 11px; margin-top: 2px; }
.hw-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 10px;
}
.phone-icon-circle {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid #ffb347;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb347;
  flex-shrink: 0;
}
.hw-phone-text { display: flex; flex-direction: column; }
.phone-label { color: #d1d5db; font-size: 11px; }
.phone-val { color: #fff; font-weight: 700; font-size: 15px; margin-top: 2px; }

.hw-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 40px;
}
.hw-steps-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.hw-step-item {
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hw-step-item:hover { background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-color: #ffb347; }
.hw-step-title { font-size: 16px; color: #111; font-weight: 600; }
.hw-step-title strong { font-weight: 800; margin-right: 8px; color: #111; }
.hw-step-arrow { color: #6b7280; font-size: 18px; font-weight: 600; }

.hw-footer-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6b7280;
}
.hw-footer-note img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.hw-footer-note p { margin: 0; }
.hw-footer-note a { color: #ffb347; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 991px) {
  .how-it-works-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-glass-panel { flex-direction: column; align-items: flex-start; gap: 20px; padding: 25px; }
  .hw-rating { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-right: 0; padding-bottom: 20px; width: 100%; }
  .hw-phone { padding-left: 0; }
}

/* TESTIMONIALS / WHY US */
.testimonial-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.card-grid {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 30px;
}

.review-card {
  width: 380px; /* Fixed width for marquee consistency */
  flex-shrink: 0;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px; /* Force uniform height */
}

/* Marquee Animation */
.card-grid.marquee-active {
  animation: marqueeScroll 40s linear infinite;
}

.card-grid:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } /* -50% because we duplicate items */
}

@media (max-width: 768px) {
  .review-card {
    width: 300px;
    padding: 30px;
  }
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.quote-mark {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 100px;
  color: #ffb347;
  opacity: 0.1;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.review-card .stars {
  color: #f59e0b;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 2px;
}
.quote-text {
  font-size: 15px;
  color: #4f566b;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 80px;
  position: relative;
  z-index: 2;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
  margin-top: auto; /* Push to bottom for alignment */
  padding-top: 20px;
  border-top: 1px solid #f9fafb;
}
.avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewer-info h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 2px;
}
.reviewer-info span {
  font-size: 13px;
  color: #6b7280;
}

/* HOW IT WORKS (STEPS) */
.steps-section {
  position: relative;
  background-image: url('../assets/images/steps_bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Light overlay to make text readable proper */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
  z-index: -1;
}


.fleet-section {
  background: #ffffff;
  padding: 50px 5% 100px; /* Reduced top padding from 100px to 50px */
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.fleet-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid #f0f1f3;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.fleet-card.featured {
  border: 2px solid #ff7b00;
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(255, 123, 0, 0.12);
}

.fleet-card.featured:hover {
  transform: scale(1.04) translateY(-12px);
  box-shadow: 0 30px 70px rgba(255, 123, 0, 0.18);
}

.fleet-img-wrap {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.bg-economy { background-color: #e3f2fd; }
.bg-popular { background-color: #fff3e0; }
.bg-premium { background-color: #f3e5f5; }

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.08); /* Reduced for subtler premium feel */
}

.fleet-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  background: rgba(26, 31, 54, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;
}

.fleet-card-badge.orange { 
  background: linear-gradient(135deg, #ff7b00, #ffb347);
  box-shadow: 0 6px 15px rgba(255, 123, 0, 0.3);
}

.fleet-info {
  padding: 35px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
}

.fleet-price-badge {
  display: inline-block;
  background: rgba(255, 123, 0, 0.08);
  color: #ff7b00;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid rgba(255, 123, 0, 0.15);
}

.fleet-info h3 {
  font-size: 26px;
  color: #1a1f36;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

.fleet-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4f566b;
  font-weight: 600;
  background: #f8fafc;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.spec-icon {
  display: flex;
  align-items: center;
  color: #ff7b00;
  opacity: 0.9;
}

.fleet-card-desc {
  font-size: 14px;
  color: #4f566b;
  margin-bottom: 30px;
  line-height: 1.6;
  flex: 1;
}

.fleet-btn {
  width: 100%;
  background: #ffffff;
  color: #1a1f36;
  padding: 12px 12px 12px 28px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.fleet-btn .btn-icon-wrap {
  background: #f8fafc;
  color: #ff7b00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.fleet-btn:hover {
  background: #1a1f36;
  color: #ffffff;
  border-color: #1a1f36;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(26, 31, 54, 0.2);
}

.fleet-btn:hover .btn-icon-wrap {
  background: #ff7b00;
  color: #ffffff;
  transform: rotate(15deg) scale(1.1);
}

.fleet-card:hover .fleet-btn {
  border-color: transparent;
  background: #ff7b00;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
}

.fleet-card:hover .fleet-btn .btn-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-card.featured {
    transform: none;
  }
}


/* ----------- ANIMATIONS ----------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-up.animate-active {
  opacity: 1;
  transform: translateY(0);
}

.zoom-reveal {
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.zoom-reveal.animate-active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Delay Helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Enhanced Card Micro-interactions */
.service-card, .fleet-card, .review-card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card:hover, .fleet-card:hover, .review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1) !important;
}

/* Tactile Button Press */
.btn-primary:active, .btn-outline-whatsapp:active {
  transform: scale(0.96) !important;
}

/* ----------- NEW STYLIZED FOOTER ----------- */
/* ============================================
   GLOBAL FOOTER SYSTEM
   ============================================ */
.footer-section { padding: 0; background: transparent; }
.footer-wrapper {
  background: linear-gradient(135deg, #0d1128 0%, #1a1f36 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(#ff7b00 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.04;
  pointer-events: none;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 80px 5% 40px;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-brand {
  flex: 1.2;
  max-width: 380px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo {
  height: 50px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.footer-logo-text h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin: 0;
  line-height: 1.2;
}

.footer-sub-brand {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.social-icon:hover {
  background: #ff7b00;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
  border-color: transparent;
}

.footer-links-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #ffb347;
  padding-left: 5px;
}

.footer-location {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 15px;
}

.footer-terms-link {
  margin-top: 15px;
  color: #ffb347 !important;
  font-weight: 600;
  display: inline-block;
}

.footer-seo-tags {
  padding: 40px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  z-index: 2;
}

.seo-tag-label {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.seo-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.seo-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.seo-tag:hover {
  color: #ffb347;
  background: rgba(255, 179, 71, 0.1);
  border-color: rgba(255, 179, 71, 0.2);
}

.footer-bottom {
  padding: 30px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .footer-main {
    flex-direction: column;
    padding: 60px 20px 40px;
    text-align: center;
    gap: 40px;
  }
  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-wrap { justify-content: center; }
  .footer-socials { justify-content: center; }
  .footer-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    text-align: left;
    width: 100%;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #ff7b00;
    margin: 10px auto;
  }
  .footer-bottom { padding: 20px 20px 100px; } /* Added space for bottom action bar if any */
}


/* --------- TERMS MODAL ----------- */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.6); 
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  position: relative;
  animation: modalFadeIn 0.3s ease-out forwards;
}
@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #111;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.close-modal:hover {
  color: #ff7b00;
}
.policy-section {
  display: flex;
  flex-direction: column;
}
.policy-header {
  background-color: #d1d3d4;
  padding: 15px 30px;
}
.policy-header h3 {
  color: #111;
  font-size: 24px;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.policy-body {
  background-color: #c22026; /* Deep Red from image */
  padding: 30px 30px 30px 60px;
}
.policy-body ul {
  color: #fff;
  margin: 0;
  padding: 0;
}
.policy-body li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.policy-body li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .policy-header { padding: 15px 20px; }
  .policy-body { padding: 20px 20px 20px 40px; }
}


/* ----------- FAQ SECTION ----------- */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
  border: 1px solid #f3f4f6;
}
.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-question:hover {
  color: #ff7b00;
}
.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: #ffb347;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fffaf0;
}
.faq-answer p {
  padding: 0 25px 20px 25px;
  color: #4f566b;
  margin: 0;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -60px; /* Pull under hero for seamless blend */
  background-color: #fffbf2 !important; /* Force matching color */
}

/* ----------- STATS REDESIGN ----------- */
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
}
.stat-number {
  background: linear-gradient(135deg, #ff7b00 0%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1.1;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.stat-text {
  color: #4f566b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 2vw, 16px);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ----------- CONTACT SECTION ----------- */
.contact-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.icon-circle {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff7b00;
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.1);
  border: 1px solid rgba(255, 123, 0, 0.05);
  transition: transform 0.3s ease;
}
.contact-method:hover .icon-circle {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #fff;
}
.contact-method h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
  font-weight: 700;
}
.contact-method a {
  text-decoration: none;
  color: #6b7280;
  font-size: 15px;
  transition: color 0.3s;
  font-weight: 500;
}
.contact-method a:hover {
  color: #ff7b00;
}

.contact-form-container {
  flex: 1.2;
  min-width: 350px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid #f3f4f6;
}
.form-header {
  margin-bottom: 30px;
  text-align: center;
}
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #111;
  margin-bottom: 5px;
}
.form-header p {
  font-size: 15px;
  color: #6b7280;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 16px;
  color: #a0aec0;
  pointer-events: none;
  transition: color 0.3s ease;
}

.input-wrapper textarea ~ .input-icon,
.input-wrapper .lucide-message-square-text {
  top: 18px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 16px 16px 16px 46px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #1a1f36;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #ff7b00;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 123, 0, 0.1);
}

.input-wrapper:focus-within .input-icon {
  color: #ff7b00;
}

.form-submit-btn, .contact-submit-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #111 !important;
  padding: 12px 12px 12px 30px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 123, 0, 0.35);
  font-weight: 800;
  font-size: 16px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}
.form-submit-btn .btn-icon-wrap, .contact-submit-btn .btn-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255, 123, 0, 0.1);
  color: #ff7b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.form-submit-btn:hover, .contact-submit-btn:hover {
  background: #fff;
  border-color: #ff7b00;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 123, 0, 0.2);
}
.form-submit-btn:hover .btn-icon-wrap, .contact-submit-btn:hover .btn-icon-wrap {
  background: #ff7b00;
  color: #fff;
}

/* Validation Styling */
.form-group input.input-error, .form-group textarea.input-error {
  border-color: #ef4444;
  background: #fef2f2;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
.input-wrapper.error-state .input-icon {
  color: #ef4444 !important;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

.error-message {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s;
}
.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Success UI Overlay */
.success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 10;
  padding: 40px;
}
.success-overlay.active {
  opacity: 1;
  visibility: visible;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transform: scale(0.5);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-overlay.active .success-icon {
  transform: scale(1);
}
.success-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #111;
  margin-bottom: 10px;
}
.success-overlay p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #ff7b00;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 123, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9998;
  pointer-events: none;
  transition: width 0.2s, height 0.2s;
}

/* =========================================
   OUR SERVICES ACROSS KUTCH - SECTION
========================================= */
.services-section {
  background: #ffffff;
  padding: 100px 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
  margin-top: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 30px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.04) 0%, rgba(255, 123, 0, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 123, 0, 0.1);
  border-color: #ffe0b2;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 62px;
  height: 62px;
  background: #fff6e5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  transform: scale(1.08);
}

.service-card-body {
  position: relative;
  z-index: 1;
}

.service-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s;
}

.service-card:hover .service-card-body h3 {
  color: #ff7b00;
}

.service-card-body p {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-section {
    padding: 60px 5%;
  }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9990;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav-links.active-mobile {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    right: 0;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 700;
    color: #1a1f36;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 85%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .nav-links.active-mobile a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a:active, .nav-links a.active {
    background: rgba(255, 123, 0, 0.1);
    color: #ff7b00;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.1);
  }

  .nav-actions .btn-primary {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.opened span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.opened span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.opened span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #111;
    transition: all 0.3s ease-in-out;
    display: block;
  }
}

/* SUNSET COLORS REDESIGN classes */

/* SUNSET COLORS REDESIGN classes */
.bg-sky-twilight {
  background: linear-gradient(180deg, #f7f9fc 0%, #e2eaf5 100%);
  position: relative;
}
.bg-sunset-lavender {
  background: linear-gradient(180deg, #e2eaf5 0%, #f1c677 100%);
  position: relative;
}
.bg-sunset-peach {
  background: linear-gradient(180deg, #f6e6ea 0%, #ffecdd 100%);
  position: relative;
}
.bg-sunset-gold {
  background: linear-gradient(180deg, #ffecdd 0%, #e7aa75 100%);
  position: relative;
}
.bg-sunset-white {
  background: linear-gradient(180deg, #f4dfcd 0%, #ffffff 100%);
  position: relative;
}
.bg-footer-twilight {
  background: linear-gradient(180deg, #f7f9fc 0%, #e2eaf5 100%);
  position: relative;
}

/* WAVE DIVIDERS REMOVED FOR UNIFIED FLOW */
/*
.custom-shape-divider-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 0;
}
.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.fill-lavender { fill: #e2eaf5; }
.fill-peach { fill: #f6e6ea; }
.fill-sand { fill: #ffecdd; }
.fill-sunrise { fill: #f4dfcd; }
.fill-white { fill: #ffffff; }
*/


/* Section content needs to be above the wave */
.section-content-wrapper {
  position: relative;
  z-index: 1;
}

/* =========================================
   UX & ACCESSIBILITY ENHANCEMENTS
========================================= */

/* 1. Mobile Action Bar */


/* 2. Form Refinement & Accessibility */
.btn-primary, .btn-outline-whatsapp, .fleet-btn {
  color: #111 !important; /* Proper contrast ratio against orange/green backgrounds */
  font-weight: 700;
}
.btn-primary:hover, .fleet-btn:hover {
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Submit Button Success Animation */
.booking-form button[type="submit"] {
  transition: all 0.3s ease;
}
.booking-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 123, 0, 0.5) !important;
}



/* 4. Fleet Hover Shadows & Price Badge */



/* --- HIGH-END PORTRAIT GALLERY SYSTEM --- */
.mixed-font-header {
  text-align: center;
  margin-bottom: 60px;
}
.mixed-font-header h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #1a1f36;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}
.font-italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: #ff7b00; /* Brand accent for the italics */
}
.mixed-font-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.portrait-gallery-relative {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.portrait-gallery-wrapper {
  padding: 20px 0;
  position: relative;
  flex: 1;
  overflow: hidden;
}

.portrait-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 0 40px; /* Reduced side padding since buttons are external */
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portrait-grid::-webkit-scrollbar {
  display: none;
}

.portrait-card {
  flex: 0 0 calc((100% - 50px) / 3); /* Exactly 3 cards with two 25px gaps */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Side Navigation Buttons */
.dest-nav-btn {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 40%; /* Position relative to cards */
  z-index: 10;
  transform: translateY(-50%);
}

.dest-nav-btn.prev { left: -15px; }
.dest-nav-btn.next { right: -15px; }

.dest-nav-btn:hover {
  background: #ff7b00;
  color: #fff;
  border-color: #ff7b00;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 123, 0, 0.3);
}

.dest-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 1200px) {
  .dest-nav-btn.prev { left: 0; }
  .dest-nav-btn.next { right: 0; }
}

@media (max-width: 1024px) {
  .portrait-card {
    flex: 0 0 calc((100% - 25px) / 2); /* 2 cards on tablet */
  }
}

@media (max-width: 768px) {
  .portrait-card {
    flex: 0 0 calc(100% - 40px); /* Show one card with hint of next */
  }
  .portrait-grid {
    gap: 15px;
    padding: 20px 20px 40px;
  }
  .dest-nav-btn {
    display: none; /* Swipe is better on mobile */
  }
}
.portrait-img-box {
  width: 100%;
  aspect-ratio: 10 / 13;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
}
.portrait-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.portrait-card:hover .portrait-img-box {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 123, 0, 0.15);
}
.portrait-card:hover img {
  transform: scale(1.1);
}
.portrait-info {
  padding: 0 10px;
}
.portrait-info .place-badge {
  display: inline-block;
  background: rgba(255, 123, 0, 0.1);
  color: #ff7b00;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.portrait-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1a1f36;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.portrait-card:hover .portrait-info h3 {
  color: #ff7b00;
}
.portrait-info p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .portrait-card {
    flex: 0 0 280px;
  }
  .mixed-font-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .portrait-grid {
    padding: 20px;
    gap: 20px;
  }
  .portrait-card {
    flex: 0 0 85%;
  }
  .portrait-img-box {
    border-radius: 32px;
  }
}




@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px;
    left: 20px !important;
    width: 54px;
    height: 54px;
    display: none !important; /* Managed by mobile action bar */
  }
  .back-to-top {
    bottom: 90px;
    right: 20px !important;
  }
}


.fleet-specs .spec-item {
  color: #111;
  font-weight: 600;
}

/* 5. Navigation & Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 10001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #111;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.opened span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.opened span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.opened span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links.active-mobile {
    right: 0;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
  }
}

/* NAVBAR TABLET REFINEMENT */
@media (min-width: 993px) and (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 15px;
  }
}

/* 6. Contact Section: Split Layout (Text Left + Form Right) */
/* Section is now inside .sections-gradient-flow — no separate background needed */

.contact-split-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
}

.contact-text-side {
  flex: 1;
  min-width: 280px;
  padding-top: 20px;
}

.contact-split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.csf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4f566b;
}

.csf-item span {
  color: #ff7b00;
  font-weight: 700;
  font-size: 16px;
}

.contact-form-side {
  flex: 1;
  min-width: 320px;
  max-width: 480px;
}

.contact-card-compact {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.contact-card-compact .form-field input,
.contact-card-compact .form-field select,
.contact-card-compact .form-field textarea {
  padding: 14px 18px;
  font-size: 14px;
  border-radius: 12px;
}

.contact-card-compact .contact-submit-btn {
  /* Inherits modern style, overrides specific padding if needed */
}

.contact-card-compact .contact-form-modern {
  gap: 14px;
}

.contact-card-compact .form-row {
  gap: 10px;
}

/* Contact Split Responsive */
@media (max-width: 768px) {
  .contact-split-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .contact-split-desc {
    max-width: 100%;
  }
  .contact-split-features {
    justify-items: center;
  }
  .contact-form-side {
    max-width: 100%;
    width: 100%;
  }
  .contact-card-compact {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.blob-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(80px);
  border-radius: 50%;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: #ffb347;
  opacity: 0.6;
}

.blob-2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -50px;
  background: #ff8c00;
  opacity: 0.4;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: #fff;
  opacity: 0.2;
}

.container-large {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.contact-card-wrapper {
  background: #ffffff;
  border-radius: 48px;
  display: flex;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  overflow: visible; /* Allow image to pop out slightly */
  min-height: 600px;
}

.contact-image-column {
  flex: 1.1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fdfdfd;
  border-radius: 48px 0 0 48px;
}

.contact-image-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-side-img {
  position: absolute;
  top: 50%;
  left: -40px; /* Slight overflow to the left */
  transform: translateY(-50%);
  width: calc(100% + 80px);
  height: 110%;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  background-color: #eee;
}

.contact-form-column {
  flex: 0.9;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title-wrap {
  margin-bottom: 40px;
}

.contact-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #1a1f36;
  margin-bottom: 15px;
  font-weight: 800;
}

.contact-main-desc {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 18px 24px;
  background: #f3f4f6;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1f36;
  font-weight: 500;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  cursor: pointer;
  padding-right: 48px;
}

/* Default/placeholder color for select */
.form-field select:invalid {
  color: #9ca3af;
}

.form-field input[type="date"] {
  color: #9ca3af;
}
.form-field input[type="date"]:focus,
.form-field input[type="date"]:valid {
  color: #1a1f36;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
  outline: none;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #fff !important;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-size: clamp(14px, 1.1vw, 17px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 20px auto 0;
  display: block;
  width: fit-content;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.25);
}

.contact-submit-btn:hover {
  background: #ff7b00;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
}

/* 7. Success Overlay v2 */
.success-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border-radius: 48px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.success-overlay-v2.active {
  opacity: 1;
  visibility: visible;
}

.success-icon-v2 {
  width: 80px;
  height: 80px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

/* Response for Tablet and Mobile */
@media (max-width: 1024px) {
  .contact-card-compact {
    padding: 30px;
    border-radius: 24px;
  }
  .contact-main-title {
    font-size: 28px !important;
  }
}

@media (max-width: 640px) {
  .contact-premium-section {
    padding: 50px 15px;
  }
  .contact-card-compact {
    padding: 24px;
  }
  .contact-main-title {
    font-size: 24px !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}



/* ============================================
   PLACES PAGE STYLES
   ============================================ */



/* Route Info Strip */
.route-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 25px;
}

.route-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f3f4f6;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #4f566b;
  border: 1px solid #e5e7eb;
}

.route-info-badge.route-info-price {
  background: linear-gradient(135deg, #ff7b00, #ffb347);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
}



/* ============================================
   FLEET SECTION & SLIDER
   ============================================ */
.fleet-section {
  position: relative;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-slider-controls {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.fleet-prev-btn, .fleet-next-btn {
  background: #fff;
  border: 1px solid #e5e7eb;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.fleet-prev-btn:hover, .fleet-next-btn:hover {
  background: var(--primary-orange);
  color: #fff;
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .fleet-slider-controls {
    display: flex;
  }

  .cars-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 5px 30px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  }

  .cars-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .fleet-card {
    min-width: 85%;
    scroll-snap-align: center;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .fleet-card {
    min-width: 92%;
  }
}

/* ============================================
   COMPANY TIMELINE
   ============================================ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 750px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, #ffb347, #ff7b00); opacity: 0.3; }
.timeline-item { display: flex; align-items: flex-start; gap: 30px; padding: 25px 0; position: relative; }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: #ff7b00; width: 60px; flex-shrink: 0; text-align: right; }
.timeline-dot { width: 16px; height: 16px; background: linear-gradient(135deg, #ffb347, #ff7b00); border-radius: 50%; flex-shrink: 0; margin-top: 4px; border: 3px solid #fff; box-shadow: 0 0 0 3px rgba(255,123,0,0.2); position: relative; z-index: 1; }
.timeline-content { flex: 1; background: #fff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 20px 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: all 0.3s; }
.timeline-content:hover { box-shadow: 0 8px 25px rgba(255,123,0,0.1); border-color: rgba(255,123,0,0.2); }
.timeline-content h4 { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; }

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.value-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.5); border-radius: 20px; padding: 35px 30px; text-align: center; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.value-emoji { font-size: 42px; margin-bottom: 18px; display: block; }
.value-card h3 { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: #6b7280; line-height: 1.7; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT / PLACES CTA BANNER
   ============================================ */
.about-cta-section { background: linear-gradient(135deg, #1a1f36 0%, #2d1b00 60%, #ff7b00 100%); padding: 70px 5%; }
.about-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.about-cta-text h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.about-cta-text p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 520px; }
.about-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
@media (max-width: 768px) { .about-cta-inner { flex-direction: column; text-align: center; } .about-cta-text h2 { font-size: 28px; } .about-cta-actions { justify-content: center; } }

/* ============================================
   ROUTE TABS BAR (Places Page)
   ============================================ */
.route-tabs-bar { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 2px solid #f0f0f0; padding: 0 5%; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.route-tab { padding: 16px 22px; font-size: 14px; font-weight: 600; color: #6b7280; text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; transition: all 0.3s; position: relative; bottom: -2px; }
.route-tab:hover, .route-tab.active { color: #ff7b00; border-bottom-color: #ff7b00; }

/* ============================================
   ROUTE INFO STRIP (Places Page)
   ============================================ */
.route-info-strip { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 20px 0; }
.route-info-badge { font-size: 12px; font-weight: 600; color: #4f566b; background: rgba(255,255,255,0.8); border: 1px solid #e5e7eb; border-radius: 20px; padding: 5px 13px; display: inline-flex; align-items: center; gap: 5px; }
.route-info-badge.route-info-price { background: linear-gradient(135deg, #ffefe0, #fff5e6); color: #e66a00; border-color: rgba(255,123,0,0.2); font-weight: 700; }

/* ============================================
   BEST TIME TO VISIT CARDS
   ============================================ */
.best-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.best-time-card { background: #f9fafb; border-radius: 18px; padding: 30px 25px; border: 2px solid #f0f0f0; text-align: center; transition: all 0.3s; }
.best-time-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.best-time-featured { background: linear-gradient(135deg, #fff8f0, #fff3e0); border-color: rgba(255,123,0,0.3); }
.btc-season { font-size: 26px; font-weight: 800; font-family: 'Playfair Display', serif; color: #111; margin-bottom: 10px; }
.best-time-card h4 { font-size: 18px; color: #111; margin-bottom: 10px; font-weight: 700; }
.best-time-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 15px; }
.btc-tag { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.btc-tag.good { background: #dcfce7; color: #166534; }
.btc-tag.best { background: linear-gradient(135deg, #ffb347, #ff7b00); color: #fff; }
@media (max-width: 768px) { .best-time-grid { grid-template-columns: 1fr; } }

/* ============================================
   GLOBAL FOOTER POLISH
   ============================================ */




/* ============================================
   CTA BANNER CARD (About & Places)
   ============================================ */
.cta-banner-wrapper {
  padding: 100px 5%;
  position: relative;
  background-image: url('../assets/images/rann_sunset.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1); 
}

.cta-info-card {
  background: rgba(255, 255, 255, 0.35); /* Frosty white glass */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  color: #1a1f36; /* Dark readable text on light glass */
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  max-width: 1200px;
  margin: 0 auto;
}

.cta-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,123,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 20px;
  color: #1a1f36 !important;
  position: relative;
  z-index: 1;
}

.cta-info-card p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: #fff !important;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-info-card {
    padding: 60px 25px;
    border-radius: 30px;
  }
  .cta-btn-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* TERMS MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 10100; /* Above navbar */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  padding-top: 60px;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 60px auto;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 90%;
  max-width: 700px;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #9ca3af;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.03);
}

.close-modal:hover {
  color: #ff7b00;
  background: rgba(255, 123, 0, 0.1);
  transform: rotate(90deg);
}

/* POLICY CONTENT STYLING */

.policy-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #111;
  margin-bottom: 15px;
}

.policy-body ul {
  list-style: none;
  padding: 0;
}

.policy-body li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.policy-body li::before {
  content: "•";
  color: #ff7b00;
  font-weight: bold;
  position: absolute;
  left: 0;
}
/* ============================================
   FLOATING ELEMENTS (WHATSAPP & BACK TO TOP)
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px; /* Moved to left as requested */
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.85); /* Matches navbar glassmorphism */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--primary-orange); /* Theme orange icon */
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Softer shadow for light design */
  padding: 0;
}



.back-to-top .progress-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top .progress-circle-bar {
  stroke: var(--primary-orange);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.back-to-top .progress-circle-track {
  stroke: rgba(255, 123, 0, 0.1); /* Subtle orange track for light theme */
}


.back-to-top .arrow-up {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.back-to-top .arrow-up svg {
  width: 24px;
  height: 24px;
  stroke-width: 4px; /* Bold chevron */
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}


.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 123, 0, 0.2);
  background-color: #fff;
}

.back-to-top:hover .arrow-up {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 85px; left: 20px; }
  .back-to-top { width: 50px; height: 50px; bottom: 85px; right: 20px; }
  .back-to-top.show { bottom: 85px; }
}


/* ============================================
   TOUR DISCOVERY HUB (Places Page)
   ============================================ */
.tour-filter-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.tour-tabs {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow-x: auto;
  max-width: 95%;
  scrollbar-width: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.tour-tabs::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
  .tour-filter-wrapper {
    padding: 0 15px;
  }
  .tour-tabs {
    justify-content: flex-start;
    padding: 8px 15px;
  }
}

.tour-tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #4f566b;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tour-tab:hover {
  background: rgba(255, 123, 0, 0.1);
  color: var(--primary-orange);
}

.tour-tab.active {
  background: var(--primary-orange);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.tour-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 123, 0, 0.2);
}

.tour-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tour-code {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-orange);
  background: rgba(255, 123, 0, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.tour-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 1px;
}

.tour-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1f36;
}

.tour-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
  font-weight: 500;
}

.tour-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-route, .tour-dist {
  font-size: 13px;
  color: #4f566b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-route::before { content: "📍"; }
.tour-dist::before { content: "🛣️"; }

.tour-places {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.tour-places h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1f36;
}

.tour-places ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.tour-places ul::-webkit-scrollbar {
  width: 6px;
}

.tour-places ul::-webkit-scrollbar-thumb {
  background: rgba(111, 111, 111, 0.2);
  border-radius: 10px;
}

.tour-places li {
  font-size: 13px;
  color: #4f566b;
  background: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
}

.two-col-list {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px !important;
}

.tour-more-info {
  margin-top: 15px;
  font-size: 13px;
  color: var(--primary-orange);
  font-style: italic;
}

.tour-book-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-top: 30px;
}

.tour-book-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .two-col-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RE-DESIGNED ABOUT PAGE
   ============================================ */
.split-heritage-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.heritage-text {
  flex: 1.2;
  min-width: 320px;
}

.heritage-text p {
  font-size: 18px;
  color: #4f566b;
  line-height: 1.8;
  margin-top: 20px;
}

.heritage-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.h-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 5px;
}

.h-stat p {
  font-size: 14px;
  font-weight: 600;
  color: #1a1f36;
  margin: 0;
}

.heritage-image-box {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.heritage-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.experience-badge span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.experience-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-orange);
}

/* Founder Spotlight */
.founder-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.founder-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 30px;
}

.founder-bio h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
}

.founder-title {
  color: var(--primary-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.founder-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: #4f566b;
  margin-bottom: 30px;
  position: relative;
}

.founder-quote::before {
  content: "“";
  font-size: 80px;
  color: rgba(255, 123, 0, 0.1);
  position: absolute;
  top: -40px;
  left: -30px;
}

.founder-signature {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 991px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .founder-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .split-heritage-layout {
    gap: 40px;
  }
  .experience-badge {
    right: 20px;
    bottom: 20px;
  }
}

/* ========================================================= */
/* --- USER REQUESTED MOBILE & RESPONSIVE FIXES OVERRIDES --- */
/* ========================================================= */

/* Fix horizontal scroll issue */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Ensure images are broadly responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Specific fix for elements causing overflow like marquee */
.location-marquee {
  max-width: 100vw;
}

/* -- STATS 2x2 GRID ON MOBILE -- */
@media (max-width: 768px) {
  .stats-section .container.section-content-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 15px !important;
    justify-content: center !important;
  }
  .stats-section .stat-item {
    min-width: 0 !important;
    flex: none !important;
  }
}

/* -- CAR FLEET SLIDER NAV BUTTONS (CENTER SIDES) -- */
.fleet-section .container.section-content-wrapper {
  position: relative;
}
.fleet-slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}
.fleet-slider-controls button {
  pointer-events: auto;
  background: #ff7b00;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
  transition: all 0.3s ease;
  position: static !important;
  float: none !important;
}
.fleet-slider-controls button:hover {
  background: #e66a00;
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .fleet-slider-controls {
    width: calc(100% + 40px);
    left: -20px;
  }
}
@media (max-width: 768px) {
  .fleet-slider-controls {
    top: 22% !important; /* Shifts the button significantly higher, dead center of the car image */
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
  .cars-grid {
    padding-left: 5vw !important; 
    padding-right: 5vw !important;
    scroll-padding: 0 5vw !important; /* ensures snapping anchors flush with this improved padding */
  }
}

/* -- DESTINATIONS GALLERY FADE AND BUTTONS -- */
.portrait-gallery-relative {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.portrait-gallery-wrapper {
  width: 100%;
  overflow: hidden;
  /* Fading effect on the left and right */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.portrait-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px calc(50% - 150px); 
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.portrait-grid::-webkit-scrollbar {
  display: none;
}
.portrait-card {
  scroll-snap-align: center;
  flex: 0 0 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.8;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.portrait-card:hover {
  transform: scale(1);
  opacity: 1;
}
.dest-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: #ff7b00;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
  transition: all 0.3s ease;
}
.dest-nav-btn.prev {
  left: 5px;
}
.dest-nav-btn.next {
  right: 5px;
}
.dest-nav-btn:hover {
  background: #e66a00;
  transform: translateY(-50%) scale(1.1);
}
.portrait-img-box {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}
.portrait-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portrait-info {
  padding: 20px;
  text-align: center;
  background: #fff;
}
.place-badge {
  display: inline-block;
  background: #fff3e0;
  color: #ff7b00;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}
.portrait-info h3 {
  font-size: 22px;
  color: #111;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.portrait-info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .portrait-grid {
    padding: 20px calc(50% - 150px);
  }
}

/* -- MOBILE MENU DROPDOWN FIX -- */
@media (max-width: 992px) {
  .nav-links {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 5% !important;
    left: 5% !important;
    width: 90% !important;
    height: auto !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    padding: 25px 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    transform: translateY(-20px) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    border: 1px solid rgba(255, 123, 0, 0.1) !important;
  }
  .nav-links.active-mobile {
    transform: translateY(0) !important;
  }
  .nav-links a {
    transform: translateY(-10px) !important;
    width: auto !important;
    padding: 10px 15px !important;
  }
  .nav-links.active-mobile a {
    transform: translateY(0) !important;
  }
  .nav-links a:active, .nav-links a.active {
    background: transparent !important;
    box-shadow: none !important;
    color: #ff7b00 !important;
  }
}

/* ========================================================= */
/* --- HERO BUTTONS ALIGNMENT & GLASSMORPHISM FIX --- */
/* ========================================================= */
.cta-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    width: 100%;
    justify-content: center;
}
.cta-group .btn-primary, .cta-group .btn-outline-whatsapp {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    border-radius: 50px !important;
    padding: 14px 15px !important;
    font-size: clamp(14px, 3.5vw, 16px) !important;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/* Glassmorphism applying to WhatsApp */
.btn-outline-whatsapp {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(37, 211, 102, 0.6) !important;
    color: #1a1f36 !important; 
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Glassmorphism applying to Primary Button */
.btn-primary {
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.8), rgba(255, 123, 0, 0.8)) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 32px 0 rgba(255, 123, 0, 0.15) !important;
}

@media (max-width: 450px) {
    .cta-group {
        flex-wrap: wrap; /* On very small screens, let them stack if they must */
    }
    .cta-group .btn-primary, .cta-group .btn-outline-whatsapp {
        max-width: 100%;
    }
}

/* ========================================================= */
/* --- FOOTER COMPACTNESS & RESPONSIVE TEXT --- */
/* ========================================================= */
@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr !important; /* Forces 2 columns to halve the vertical length */
    gap: 30px 15px !important;
    text-align: left !important;
  }
  .footer-col h4 {
    font-size: clamp(16px, 4vw, 18px) !important;
    margin-bottom: 12px !important;
  }
  .footer-col h4::after {
    display: none !important; /* Removes explicit underlines that cause vertical clutter on mobile */
  }
  .footer-col a {
    font-size: clamp(13px, 3.5vw, 15px) !important;
    margin-bottom: 8px !important;
  }
  .footer-description {
     font-size: clamp(13px, 3.5vw, 15px) !important;
     margin-bottom: 20px !important;
  }
  .footer-logo-text h3 {
     font-size: clamp(20px, 5vw, 24px) !important;
  }
  .footer-main {
      padding: 50px 30px !important; /* Increased side padding for elegant spacing on both sides */
      position: relative !important; /* establish positioning context here */
  }
}
@media (max-width: 380px) {
  .footer-links-grid {
    grid-template-columns: 1fr !important; /* Stack only if screen is narrower than 380px */
  }
}

/* ========================================================= */
/* --- FOOTER BOTTOM SPACING & SOCIAL ICON ALIGNMENT --- */
/* ========================================================= */
@media (max-width: 768px) {
  .footer-bottom {
    padding: 20px 30px 30px !important;
    text-align: center !important; /* keep copyright perfectly centered */
  }
  
  .footer-brand {
    position: static !important;
  }
  
  /* Place the Instagram logo dynamically inside the empty space to the right of Contact Info */
  .footer-socials {
    position: absolute !important;
    bottom: 50px !important; /* matches bottom padding of footer-main so it aligns precisely with the bottom of the column */
    right: 30px !important;  /* perfectly aligned with the screen side spacing */
    z-index: 10 !important;
    display: flex !important;
    margin: 0 !important;
  }
}



