:root {
  --blue-dark: #0d2f6e;
  --blue-mid: #1a56b0;
  --blue-light: #3a8fd4;
  --blue-sky: #5db8f0;
  --orange: #f97316;
  --orange-light: #fb923c;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-900: #0f172a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 3px;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13, 47, 110, 0.12);
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate-600);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.3s;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  color: var(--blue-dark);
  background: linear-gradient(
    135deg,
    rgba(26, 86, 176, 0.1),
    rgba(249, 115, 22, 0.1)
  );
}

.nav-links a.active {
  color: var(--blue-dark);
  background: linear-gradient(
    135deg,
    rgba(26, 86, 176, 0.15),
    rgba(249, 115, 22, 0.15)
  );
  font-weight: 700;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.logo-text .sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate-600);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--orange));
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--blue-mid);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--slate-100);
  color: var(--blue-dark);
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: 2px solid var(--slate-200);
}

.btn-call:hover {
  background: var(--blue-dark);
  color: white;
  border-color: var(--blue-dark);
}
.btn-call i {
  color: var(--blue-mid);
  transition: color 0.3s;
}
.btn-call:hover i {
  color: var(--orange);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.85rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: var(--slate-100);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 47, 110, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 30px 24px;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.mobile-nav a i {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--orange);
  flex-shrink: 0;
}

.mobile-nav a:hover {
  color: white;
  padding-left: 6px;
}

.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-actions a {
  justify-content: center;
  border-bottom: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 1rem;
}

.mobile-nav-actions .m-call {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-actions .m-call:hover {
  background: rgba(255, 255, 255, 0.2);
  padding-left: 14px;
}

.mobile-nav-actions .m-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  color: white;
}

.mobile-nav-actions .m-wa i {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.mobile-nav-actions .m-wa:hover {
  padding-left: 14px;
}

/* ===== HERO ===== */
#hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1577086664693-894d8405334a?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}*/

#hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/home-banner-02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 47, 110, 0.88) 0%,
    rgba(13, 47, 110, 0.55) 45%,
    rgba(13, 47, 110, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  line-height: 1.7;
}

.brand-name {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  margin-top: -8px;
  text-transform: uppercase;
}

.brand-varun {
  color: #ffffff;
}

.brand-tours {
  color: var(--orange);
}

.brand-amp {
  color: var(--blue-sky);
}

.brand-travels {
  color: var(--orange-light);
}
.welcome-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.badge i.green {
  color: #4ade80;
}
.badge i.orange {
  color: var(--orange);
}
.badge i.blue {
  color: var(--blue-sky);
}

/* Booking Widget */
.booking-widget {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(13, 47, 110, 0.25);
  border-top: 4px solid var(--orange);
}

.booking-widget h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-widget h3 i {
  color: var(--orange);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-light);
  font-size: 0.9rem;
}

.input-wrap input,
.input-wrap select,
.input-wrap input[type="datetime-local"] {
  width: 100%;
  padding: 12px 14px 12px 38px;
  background: var(--slate-50);
  border: 2px solid var(--slate-200);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--slate-900);
  outline: none;
  transition: all 0.3s;
  appearance: none;
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(26, 86, 176, 0.08);
}

.form-spacer {
  margin: 30px 0;
}

.btn-quote {
  margin: auto;
  padding: 15px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: white;
  border: none;
  border-radius: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(13, 47, 110, 0.3);
  letter-spacing: 0.03em;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 47, 110, 0.4);
}

/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 176, 0.1),
    rgba(249, 115, 22, 0.1)
  );
  color: var(--blue-mid);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 86, 176, 0.15);
}

.section-header h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.section-header h2 span {
  color: var(--orange);
}
.section-header p {
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SERVICES ===== */
#services-section {
  padding: 90px 0;
  background: linear-gradient(145deg, #e8f0fe 0%, #fff3e8 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #e8f0fe 100%);
  border-radius: 20px;
  padding: 32px 24px;
  border: 2px solid var(--slate-100);
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--orange));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.service-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #dbeafe 100%);
  border-color: rgba(26, 86, 176, 0.2);
  box-shadow: 0 20px 50px rgba(13, 47, 110, 0.12);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.35s;
}

.si-blue {
  background: rgba(26, 86, 176, 0.1);
  color: var(--blue-mid);
}
.si-orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}
.si-sky {
  background: rgba(93, 184, 240, 0.15);
  color: var(--blue-light);
}
.si-dark {
  background: rgba(13, 47, 110, 0.08);
  color: var(--blue-dark);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: white;
}

.service-card h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--slate-600);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 12px;
  color: var(--orange);
}

/* ===== WHY US ===== */
#why-choose-us {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    #0d3580 50%,
    var(--blue-mid) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

#why-choose-us::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.why-text h2 span {
  color: var(--orange);
}
.why-text > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-feature {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  transition: all 0.3s;
}

.why-feature:hover .feature-icon {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.feature-text h4 {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  border: 6px solid rgba(255, 255, 255, 0.07);
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ===== FLEET ===== */
#fleet-section {
  padding: 90px 0;
  background: var(--slate-50);
}

.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.fleet-header h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.fleet-header p {
  color: var(--slate-600);
}

.fleet-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  background: white;
  border: 2px solid var(--slate-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--blue-dark);
}

.arrow-btn:hover {
  background: var(--blue-dark);
  color: white;
  border-color: var(--blue-dark);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--slate-200);
  transition: all 0.35s;
}

.fleet-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 20px 50px rgba(13, 47, 110, 0.12);
  transform: translateY(-4px);
}

.fleet-img {
  height: 180px;
  overflow: hidden;
  background: var(--slate-100);
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.fleet-card:hover .fleet-img img {
  transform: scale(1.05);
}

.fleet-body {
  padding: 24px;
}

.fleet-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.fleet-body h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.badge-avail {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.badge-green {
  background: rgba(74, 222, 128, 0.15);
  color: #16a34a;
}
.badge-orange2 {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}

.fleet-body .sub-text {
  color: var(--slate-400);
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--slate-600);
}

.fleet-specs span i {
  color: var(--blue-mid);
}

.btn-select {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--blue-mid);
  color: var(--blue-mid);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-select:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: white;
  border-color: transparent;
}

/* ===== ROUTES ===== */
/* 123 */

.route-content {
  display: none;
}
.route-content.active-content {
  display: block;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.route-item:hover {
  background: rgba(255, 255, 255, 0.18);
  padding-right: 22px;
  color: white;
}

.route-item.active-route {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--orange);
  color: white;
}

.route-item.active-route i {
  color: var(--orange);
}

.route-item i {
  color: var(--orange);
}

.routes-content h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.routes-content p {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* 123 */

#routes-section {
  padding: 90px 0;
  background: white;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.routes-panel {
  background: linear-gradient(160deg, var(--blue-dark), var(--blue-mid));
  border-radius: 24px;
  padding: 36px;
  color: white;
}

.routes-panel h2 {
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
}

.route-item:hover {
  background: rgba(255, 255, 255, 0.18);
  padding-right: 22px;
}
.route-item i {
  color: var(--orange);
}

.routes-content h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.routes-content p {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.info-card {
  border-radius: 16px;
  padding: 24px;
}

.info-card.blue {
  background: rgba(26, 86, 176, 0.06);
  border: 1px solid rgba(26, 86, 176, 0.12);
}
.info-card.orange {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.info-card h4 {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card h4 i.blue-i {
  color: var(--blue-mid);
}
.info-card h4 i.orange-i {
  color: var(--orange);
}
.info-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
#reviews-section {
  padding: 90px 0;
  background: var(--slate-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--slate-100);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(26, 86, 176, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(26, 86, 176, 0.15);
  box-shadow: 0 15px 40px rgba(13, 47, 110, 0.08);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
}

.review-card p {
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(26, 86, 176, 0.1);
}
.reviewer h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  color: var(--blue-dark);
  font-size: 0.95rem;
}
.reviewer span {
  font-size: 0.8rem;
  color: var(--slate-400);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(160deg, var(--blue-dark) 0%, #b2bbcf 100%);
  color: white;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-link:hover {
  background: #1d4c9c;
  color: white;
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: rgba(255, 255, 255, 0.08);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
}

.contact-item i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item i.wa {
  color: #25d366;
}
.contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 100px;
  filter: brightness(1.1);
}
.footer-logo .brand {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
}
.footer-logo .sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--orange) 0%, #e85d04 100%);
  padding: 24px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 4px;
}

/*  */

.fleet-slider-wrapper {
  overflow: hidden;
}

.fleet-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.fleet-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--slate-200);
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}

.fleet-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 20px 50px rgba(13, 47, 110, 0.12);
  transform: translateY(-4px);
}

.fleet-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-200);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.fleet-dot.active {
  background: var(--blue-mid);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .fleet-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .fleet-card {
    flex: 0 0 calc(100%);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px;
  }
  .booking-widget {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  #hero-section {
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  nav {
    height: 62px;
  }
  .logo img {
    height: 42px;
  }
  .logo-text .brand {
    font-size: 1.1rem;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Booking Card ── */
.vt-booking-card {
  background: white;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(13, 47, 110, 0.12);
  overflow: hidden;
  border-top: 4px solid var(--orange);
}

.vt-booking-inner {
  padding: 40px 36px;
}

.vt-booking-inner h4 {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vt-booking-inner h4 i {
  color: var(--orange);
}

.vt-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vt-full {
  grid-column: 1 / -1;
}

.vt-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vt-form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-900);
    text-transform: uppercase;
  letter-spacing: 0.07em;
}

.vt-form-group input,
.vt-form-group select,
.vt-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--slate-50);
  border: 2px solid var(--slate-200);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  color: var(--slate-900);
  outline: none;
  transition: all 0.3s;
  appearance: none;
  resize: vertical;
}

.vt-form-group input:focus,
.vt-form-group select:focus,
.vt-form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(26, 86, 176, 0.08);
}

.vt-submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: linear-gradient(135deg, var(--orange), #e85d04);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.vt-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

/* MODAL */

.vt-booking-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vt-modal-content {
  background: #fff;
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  animation: fadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.vt-close-btn {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 25px;
  height: 25px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.vt-close-btn:hover {
  background: #ff4d4d;
  color: #fff;
}

.vt-modal-content::-webkit-scrollbar {
  width: 6px;
}

.vt-modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.vt-enquiry-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dark);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: 2px solid var(--blue-dark);
}

.vt-enquiry-call:hover {
  background: var(--slate-100);
  color: var(--blue-dark);
  border: 2px solid var(--slate-100);
}
