/* ===== Variables — Dark blue + Light orange (Indian vibe) ===== */
:root {
  /* Light orange — primary accent (contrasts with dark blue) */
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fb923c;
  --primary-bg: rgba(249, 115, 22, 0.12);
  --cta: #ea580c;
  --cta-hover: #c2410c;
  --cta-light: rgba(249, 115, 22, 0.15);
  --accent: #fbbf24;
  --accent-light: rgba(251, 191, 36, 0.15);
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  /* Dark blue — base for headers, strip, sections */
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --strip-blue: #0f172a;
  --strip-blue-light: #1e293b;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 10px 30px rgba(234, 88, 12, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Montserrat', sans-serif;
  --top-strip-height: 44px;
  --header-height: 100px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary-bg);
  color: var(--dark);
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

/* Inner page main content (below fixed header) */
.page-content {
  padding-top: 0;
  padding-bottom: 80px;
  min-height: 60vh;
}

/* Page hero — inner pages (title banner) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  padding: 56px 0 48px;
  margin-top: calc(var(--top-strip-height) + var(--header-height));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero .breadcrumb a:hover {
  color: var(--primary);
}

.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 6px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-hero .page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Top strip (dark blue) + Header ===== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header-wrapper.scrolled {
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.top-strip {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.top-strip-marquee {
  overflow: hidden;
  width: 100%;
  min-height: var(--top-strip-height);
  padding: 10px 0;
}

.top-strip-track {
  display: flex;
  width: max-content;
  animation: top-strip-marquee 35s linear infinite;
}

.top-strip-track:hover {
  animation-play-state: paused;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px 32px;
  padding: 0 48px;
  flex-shrink: 0;
}

.top-strip-sep {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.5rem;
  user-select: none;
}

.top-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

a.top-strip-item:hover {
  opacity: 0.9;
  color: var(--white);
  text-decoration: underline;
}

.top-strip-item i {
  font-size: 0.9rem;
  opacity: 0.95;
}

@keyframes top-strip-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo img {
  height: 100px;
  width: auto;
  max-width: 600px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.current {
  color: var(--primary);
  font-weight: 600;
}

.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-has-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav-dropdown li {
  border-bottom: none;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  min-height: auto;
}

.nav-dropdown a:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* ===== Hero (video background + form) ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--top-strip-height) + var(--header-height) + 40px) 0 80px;
  overflow: hidden;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e3a5f 65%, rgba(249, 115, 22, 0.2) 100%);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Full-cover video: always fill hero regardless of aspect ratio */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  object-fit: cover;
  filter: saturate(1.35);
}

/* When viewport is wider than 16:9, scale by width so height covers */
@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
  }
}

/* When viewport is taller than 16:9, scale by height so width covers */
@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: 177.78vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.4) 0%, rgba(249, 115, 22, 0.12) 50%, rgba(234, 88, 12, 0.08) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--primary);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span,
.hero-title br {
  display: block;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .btn {
  padding: 14px 24px;
}

/* Hero form — compact */
.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  width: 100%;
}

.hero-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.hero-form-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.4;
}

.hero-form .hero-form-row,
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  min-width: 0;
}

.hero-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-form-label-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.hero-form-row .hero-form-label {
  min-width: 0;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  font-family: var(--font);
  font-size: 0.875rem;
  padding: 10px 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease;
  display: block;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: var(--text-light);
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-form-row input {
  width: 100%;
  box-sizing: border-box;
}

.hero-form .btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}

.btn-cta:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  animation: bounce 2s infinite;
}

/* Hero wave — wavy bottom, animated */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave-inner {
  display: flex;
  width: 200%;
  animation: hero-wave-move 6s linear infinite;
}

.hero-wave-inner svg {
  flex: 0 0 50%;
  width: 50%;
  height: 50px;
  display: block;
}

.hero-wave-fill {
  fill: var(--white);
}

@keyframes hero-wave-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
  .hero-inner {
    justify-content: center;
  }
  .hero-form {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: calc(var(--top-strip-height) + var(--header-height) + 24px) 0 72px;
  }
  .hero-form-row {
    grid-template-columns: 1fr;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== Stats bar ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 32px 0;
  margin-top: -50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
}

/* ===== Section common ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.light .section-badge,
.section-header.light .section-title,
.section-header.light .section-desc {
  color: var(--white);
}

.section-header.light .section-desc {
  opacity: 0.9;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.light .section-badge {
  color: var(--primary);
}

/* ===== Featured — Car Rentals ===== */
.featured-rentals {
  padding: 100px 0;
  background: var(--white);
}

.rentals-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.rental-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.rental-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.2);
  transform: translateY(-6px);
}

.rental-card-featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
}

.rental-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.rental-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rental-card:hover .rental-card-image img {
  transform: scale(1.06);
}

.rental-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
}

.rental-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rental-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.rental-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.rental-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.rental-features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rental-features i {
  color: var(--cta);
  font-size: 0.85rem;
}

.rental-card-body .btn {
  margin-top: auto;
}
.rental-card-body .btn + .btn {
  margin-top: 10px;
}

@media (max-width: 992px) {
  .rentals-showcase {
    grid-template-columns: 1fr;
  }
}

/* ===== Featured — Tour Packages ===== */
.featured-packages {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.package-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(249, 115, 22, 0.3);
}

.package-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-card-image img {
  transform: scale(1.06);
}

.package-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
}

.package-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.package-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.package-card-body .btn {
  margin-top: auto;
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, rgba(255, 247, 237, 0.6) 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.about-content .section-badge {
  margin-bottom: 12px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-content .btn {
  margin-top: 8px;
}

@media (max-width: 992px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-content .section-title {
    text-align: center;
  }
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

/* Services carousel (index): horizontal slider, same card design */
.services-carousel-wrap {
  position: relative;
  margin: 0 -4px;
}

.services-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  container-type: inline-size;
  container-name: services-carousel;
}

.services-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.services-carousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 4px 4px 12px;
}

.services-carousel-track .service-card {
  flex: 0 0 calc((100cqw - 56px) / 3);
  min-width: 280px;
  scroll-snap-align: start;
}

@container services-carousel (max-width: 640px) {
  .services-carousel-track .service-card {
    flex: 0 0 calc(100cqw - 8px);
    min-width: 0;
  }
}

@container services-carousel (max-width: 992px) and (min-width: 641px) {
  .services-carousel-track .service-card {
    flex: 0 0 calc((100cqw - 28px) / 2);
    min-width: 260px;
  }
}

.services-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.services-carousel-btn:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

.services-carousel-prev {
  left: -8px;
}

.services-carousel-next {
  right: -8px;
}

@media (max-width: 640px) {
  .services-carousel-prev { left: 4px; }
  .services-carousel-next { right: 4px; }
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.services-grid .service-card {
  flex: 0 0 calc((100% - 2 * 28px) / 3);
  min-width: 280px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(249, 115, 22, 0.08);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.service-card-img {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-img:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-img .service-icon {
  margin-bottom: 14px;
}

.service-card-img h3 {
  margin-bottom: 8px;
}

.service-card-body .btn {
  margin-top: 12px;
}

/* ===== Single service page (dedicated service detail) ===== */
.service-page {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}

.service-page-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.service-page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
}

.service-page-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-page-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.service-page-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-page-features li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-page-cta {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: calc(var(--top-strip-height) + var(--header-height) + 24px);
}

.service-page-cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}

.service-page-cta p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-page-cta .btn {
  width: 100%;
  margin-bottom: 10px;
}

.service-page-cta .btn:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-page-inner {
    grid-template-columns: 1fr;
  }
  .service-page-cta {
    position: static;
  }
}

@media (max-width: 992px) {
  .services-grid .service-card {
    flex: 0 0 calc((100% - 28px) / 2);
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .services-grid .service-card {
    flex: 0 0 100%;
    min-width: 0;
  }
}

/* ===== Why Us ===== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-4px);
}

.why-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== Destinations ===== */
.destinations {
  padding: 100px 0;
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.dest-card-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dest-card-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Destinations list (Famous Religious & Cultural) ===== */
.destinations-list {
  padding: 100px 0;
  background: var(--gray-50);
}

.dest-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.dest-list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.dest-list-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.2);
  transform: translateY(-6px);
}

.dest-list-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.dest-list-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dest-list-card:hover .dest-list-card-image img {
  transform: scale(1.06);
}

.dest-list-card-caption {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.dest-list-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
  padding: 24px 24px 16px;
  flex: 1;
}

.dest-list-card-desc + div {
  padding: 0 24px 24px;
}

.dest-list-card-desc + div .btn {
  margin-top: 0;
}

@media (max-width: 992px) {
  .dest-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dest-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Fleet ===== */
.fleet {
  padding: 100px 0;
  background: var(--gray-50);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
}

.fleet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.fleet-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  padding: 20px 20px 6px;
  margin: 0;
}

.fleet-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 0 20px 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--primary);
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-name {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact / Get a quote ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, rgba(255, 247, 237, 0.4) 100%);
}

.contact-section-header {
  margin-bottom: 56px;
}

.contact-section-header .section-badge {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.contact-card:not(.contact-card-address) {
  cursor: pointer;
}

.contact-card:not(.contact-card-address):hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(249, 115, 22, 0.12);
  transform: translateY(-4px);
}

.contact-card:not(.contact-card-address):hover .contact-icon {
  background: var(--primary);
  color: var(--white);
}

.contact-card-address {
  cursor: default;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.contact-card-detail {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
  max-width: 100%;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .contact-section-header {
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 28px 24px;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr;
  gap: 44px 28px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  min-width: 0;
}

.footer-brand-col .footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-brand:hover {
  opacity: 0.95;
}

.footer-brand:hover img {
  opacity: 0.95;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 280px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 18px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  word-break: break-all;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.footer-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-btn-wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer-bottom {
  padding: 24px 0 28px;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.6;
}

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 8px 0 0;
  line-height: 1.6;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--white);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .footer {
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-btn {
    flex: 1;
    min-width: 140px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header {
    background: var(--white);
    backdrop-filter: none;
  }

  .header .nav {
    padding: 0 16px;
    height: 64px;
  }

  .logo {
    max-width: calc(100% - 52px);
  }

  .logo img {
    height: 50px;
    max-width: 260px;
  }

  /* ----- Mobile nav panel: flush under header, no gap ----- */
  .nav-links {
    position: fixed;
    top: calc(var(--top-strip-height) + 62px);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0 0 16px;
    gap: 0;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
    max-height: calc(100vh - var(--top-strip-height) - 62px);
    overflow-y: auto;
    z-index: 101;
    border-radius: 0;
    border-top: none;
  }

  .nav-links.active {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
    overflow: visible;
  }

  .nav-links > li:first-child > a {
    padding-top: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    min-height: 48px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
  }

  .nav-links a:hover,
  .nav-links a.current {
    color: var(--primary);
  }

  .nav-has-dropdown > a {
    justify-content: space-between;
  }

  .nav-has-dropdown > a::after {
    margin-left: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .nav-has-dropdown.active-dropdown > a::after {
    transform: rotate(180deg);
  }

  /* Submenu: force visible when open (override any desktop/global rules) */
  .nav-dropdown {
    position: static !important;
    display: none !important;
    transform: none !important;
    min-width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-has-dropdown.active-dropdown .nav-dropdown {
    display: block !important;
  }

  .nav-dropdown li {
    border-bottom: 1px solid var(--gray-200);
    list-style: none;
  }

  .nav-dropdown li:last-child {
    border-bottom: none;
  }

  .nav-dropdown a {
    display: flex !important;
    align-items: center;
    padding: 14px 16px 14px 24px;
    min-height: 48px;
    font-size: 0.9rem !important;
    font-weight: 500;
    color: var(--text) !important;
    line-height: 1.4;
    border-bottom: none;
    background: transparent;
    white-space: normal;
  }

  .nav-dropdown a:hover {
    color: var(--primary) !important;
    background: var(--primary-bg);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    position: relative;
    z-index: 102;
  }

  body.menu-open {
    overflow: hidden;
  }

  .top-strip-marquee {
    padding: 8px 0;
    min-height: 40px;
  }

  .top-strip-inner {
    gap: 16px 24px;
    padding: 0 32px;
  }

  .top-strip-item {
    font-size: 0.8rem;
  }

  .top-strip-item i {
    font-size: 0.8rem;
  }

  .top-strip-track {
    animation-duration: 25s;
  }

  :root {
    --header-height: 64px;
  }

  .hero {
    padding: calc(var(--top-strip-height) + 64px + 24px) 16px 60px;
    min-height: 60vh;
  }

  .hero-inner {
    justify-content: center;
    padding: 0;
  }

  .hero-form {
    max-width: 100%;
    width: 100%;
    padding: 18px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .featured-rentals,
  .featured-packages,
  .about,
  .services,
  .why-us,
  .destinations,
  .fleet,
  .testimonials,
  .contact {
    padding: 56px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }

  .float-wa {
    bottom: 20px;
    right: 16px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .nav {
    padding: 0 14px;
  }

  .logo {
    max-width: calc(100% - 48px);
  }

  .logo img {
    height: 44px;
    max-width: 220px;
  }

  .top-strip-inner {
    gap: 12px 20px;
    padding: 0 24px;
  }

  .top-strip-item span {
    font-size: 0.75rem;
  }

  .hero {
    padding: calc(var(--top-strip-height) + 64px + 16px) 14px 48px;
    min-height: 55vh;
  }

  .hero-form-title {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .rental-card-body,
  .package-card-body {
    padding: 18px;
  }

  .footer-grid {
    gap: 28px 24px;
    padding-bottom: 28px;
  }

  .footer-heading {
    font-size: 0.8rem;
  }

  .footer-nav a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .service-card-body,
  .why-card,
  .contact-card {
    padding: 24px 18px;
  }

  .about-inner {
    gap: 28px;
  }

  .about-image {
    height: 260px;
  }
}

/* ===== Floating WhatsApp CTA ===== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.float-wa:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.float-wa i {
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .float-wa span {
    display: none;
  }
  .float-wa {
    padding: 14px;
    bottom: 16px;
    right: 14px;
  }
  .float-wa i {
    font-size: 1.5rem;
  }
}
