:root {
  --color-primary: #c9a227;
  --color-primary-dark: #a8841a;
  --color-primary-light: #e8c85a;
  --color-accent: #1a2d4a;
  --color-accent-light: #2a4570;
  --color-navy: #0f1c30;
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-text: #2c2419;
  --color-text-muted: #5c5348;
  --color-border: #e5ddd2;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 36, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 36, 25, 0.1);
  --shadow-lg: 0 16px 48px rgba(44, 36, 25, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo:hover .logo-img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-highlight {
  color: var(--color-accent) !important;
  font-weight: 700 !important;
  background: rgba(201, 162, 39, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.nav-highlight:hover {
  background: var(--color-primary);
  color: var(--color-navy) !important;
}

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-navy);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2.5rem) 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 28, 48, 0.88) 0%,
    rgba(26, 45, 74, 0.75) 45%,
    rgba(15, 28, 48, 0.82) 100%
  );
}

.hero-indicators {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-indicator {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-indicator.is-active,
.hero-indicator:hover {
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.hero-tag-priority {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.badge-highlight {
  background: rgba(201, 162, 39, 0.35) !important;
  border-color: var(--color-primary) !important;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.hero-badges span {
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.hero-text {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 0.75rem;
}

.hero-text:last-of-type {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-navy);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-navy);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-accent);
}

.btn-outline-dark:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Self Drive Banner */
.self-drive-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-accent) 100%);
  color: #fff;
  padding: 4rem 0;
  border-top: 4px solid var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
}

.self-drive-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.self-drive-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
}

.self-drive-content p {
  opacity: 0.92;
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.self-drive-content .section-label {
  color: var(--color-primary-light);
}

.self-drive-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.self-drive-features li {
  font-size: 0.92rem;
  padding-left: 1.4rem;
  position: relative;
  opacity: 0.95;
}

.self-drive-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.self-drive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.self-drive-banner .btn-outline-dark {
  color: #fff;
  border-color: var(--color-primary);
}

.self-drive-banner .btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-navy);
  border-color: var(--color-primary);
}

.self-drive-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.self-drive-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.self-drive-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.self-drive-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.self-drive-card > p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.self-drive-card ul {
  list-style: none;
}

.self-drive-card li {
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.self-drive-card li:last-child {
  border-bottom: none;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.why-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  align-items: start;
  border: 2px solid var(--color-primary);
  background: linear-gradient(135deg, #fff 0%, #fdf9f0 100%);
  box-shadow: var(--shadow-md);
}

.service-card-featured .service-icon {
  grid-row: 1 / 3;
  font-size: 2.75rem;
  margin-bottom: 0;
}

.service-card-featured h3 {
  font-size: 1.35rem;
  color: var(--color-accent);
}

.service-card-featured ul {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.5rem;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Vehicle */
.vehicle-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.2fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

.vehicle-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%, rgba(201, 162, 39, 0.12) 0%, transparent 65%),
    linear-gradient(165deg, #0a1220 0%, var(--color-navy) 45%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: clamp(280px, 40vw, 400px);
}

.vehicle-badge {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.25rem);
  right: clamp(0.85rem, 2vw, 1.25rem);
  z-index: 2;
  background: var(--color-primary);
  color: var(--color-navy);
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.vehicle-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.vehicle-photo-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.25rem);
  min-height: clamp(160px, 28vw, 260px);
}

.vehicle-photo-wrap::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(75%, 320px);
  height: 18%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, transparent 72%);
  pointer-events: none;
}

.vehicle-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 440px);
  max-height: clamp(140px, 32vw, 240px);
  object-fit: contain;
  object-position: center bottom;
}

.vehicle-photo-wrap-interior {
  min-height: clamp(180px, 32vw, 280px);
}

.vehicle-photo-interior {
  width: 100%;
  max-width: 100%;
  max-height: clamp(160px, 34vw, 260px);
  object-fit: cover;
  object-position: center;
  border-radius: clamp(8px, 1.5vw, 12px);
}

.vehicle-caption {
  font-size: clamp(0.85rem, 2vw, 1rem);
  opacity: 0.9;
  margin-top: clamp(0.25rem, 1vw, 0.5rem);
  padding: 0 0.5rem;
}

.vehicle-video-frame {
  width: 100%;
  padding: clamp(0.45rem, 1.2vw, 0.65rem);
  background: linear-gradient(180deg, #2a2a2a 0%, #141414 100%);
  border-radius: clamp(10px, 2vw, 14px);
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.vehicle-video-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem 0.55rem;
  font-size: clamp(0.7rem, 1.6vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.video-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.7);
  flex-shrink: 0;
  animation: video-pulse 1.8s ease-in-out infinite;
}

@keyframes video-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.vehicle-video-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(6px, 1.5vw, 10px);
  overflow: hidden;
  background: #000;
}

.vehicle-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.vehicle-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.vehicle-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.vehicle-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.vehicle-slide-cover {
  object-fit: cover;
  object-position: center;
}

.vehicle-slide-contain {
  object-fit: contain;
  object-position: center;
  padding: clamp(0.25rem, 1vw, 0.5rem);
}

.vehicle-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: clamp(28px, 7vw, 36px);
  height: clamp(28px, 7vw, 36px);
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.vehicle-slider-btn:hover {
  background: rgba(201, 162, 39, 0.85);
  color: var(--color-navy);
}

.vehicle-slider-prev {
  left: clamp(0.35rem, 1.5vw, 0.6rem);
}

.vehicle-slider-next {
  right: clamp(0.35rem, 1.5vw, 0.6rem);
}

.vehicle-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.5rem 0.15rem;
}

.vehicle-dot {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.5vw, 0.75rem);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.vehicle-dot.is-active,
.vehicle-dot:hover {
  background: var(--color-primary);
  color: var(--color-navy);
  border-color: var(--color-primary);
}

.vehicle-video-screen iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.feature-list li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding-left: 1.4rem;
  position: relative;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.6rem;
  top: 0.45rem;
}

.vehicle-seater-note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1rem;
  margin-bottom: 1.75rem;
}

.vehicle-seater-note strong {
  color: var(--color-text);
}

.suitable-for h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* Destination photos */
.destination-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.destination-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.destination-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-photo:hover img {
  transform: scale(1.06);
}

.destination-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(15, 28, 48, 0.9));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.destination-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.destination-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

.destination-card ul {
  list-style: none;
}

.destination-card li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

.destination-card li:last-child {
  border-bottom: none;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.benefit-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s;
}

.benefit-item:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.benefit-highlight {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-navy) 100%);
  color: #fff;
  border-color: var(--color-primary);
}

.benefit-highlight:hover {
  border-color: var(--color-primary-light);
}

/* Service Areas (SEO) */
.seo-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.seo-intro strong {
  color: var(--color-text);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-area-group {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.service-area-group h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.service-area-group ul {
  list-style: none;
}

.service-area-group li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-area-group li:last-child {
  border-bottom: none;
}

/* Fare Calculator */
.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.calculator-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}

.calculator-form {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.calc-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.calc-field select,
.calc-field input[type="number"],
.calc-field input[type="date"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
}

.calc-field select:focus,
.calc-field input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

.calc-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.calc-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-primary);
}

.calc-field-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.calc-field-hidden {
  display: none;
}

.calc-rate-cards .rate-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--color-primary);
}

.calc-rate-cards .rate-card.calc-hidden {
  display: none;
}

.rate-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.rate-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.rate-card li {
  padding: 0.2rem 0;
}

.calculator-result-card {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.calc-divider {
  color: var(--color-border);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.calc-result-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 0.35rem;
}

.calc-total {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.calc-breakdown {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--color-border);
  color: var(--color-text-muted);
}

.calc-line:last-child {
  border-bottom: none;
}

.calc-line strong,
.calc-line .calc-line-value {
  color: var(--color-text);
  font-weight: 600;
}

.calc-line-note {
  font-size: 0.8rem;
  color: var(--color-primary-dark);
  font-style: italic;
  border-bottom: none;
  padding-top: 0.5rem;
}

.calc-policies {
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.25rem;
}

.calc-policies li {
  padding: 0.3rem 0;
}

.calc-whatsapp-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.15rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-navy) 100%);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 0.5rem;
}

.cta-sub {
  margin-bottom: 2rem !important;
}

.cta-section .btn-primary {
  background: var(--color-primary);
}

/* Contact */
.contact-banner {
  max-width: 720px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-primary);
}

.contact-banner img {
  width: 100%;
  height: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-card-wide {
  grid-column: span 3;
}

.contact-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-card a {
  color: var(--color-text);
}

.contact-card a:hover {
  color: var(--color-primary);
}

.cta-section .btn-primary {
  background: var(--color-primary);
  color: var(--color-navy);
}

.cta-section .btn-primary:hover {
  color: var(--color-navy);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
  .service-areas-grid {
    grid-template-columns: 1fr;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-result-card {
    position: static;
  }

  .destination-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .vehicle-grid,
  .self-drive-inner {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-template-columns: 1fr;
  }

  .service-card-featured .service-icon {
    grid-row: auto;
  }

  .service-card-featured ul {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .self-drive-features {
    grid-template-columns: 1fr;
  }

  .vehicle-showcase {
    min-height: auto;
  }

  .vehicle-photo {
    max-height: clamp(150px, 38vw, 220px);
  }

  .vehicle-video-screen {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 0.5rem;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-highlight {
    display: inline-block;
    margin: 0.25rem 0;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .destination-photos {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .destinations-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: span 1;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-indicators {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    gap: 0.5rem;
  }

  .hero-indicator {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .btn {
    width: 100%;
  }

  .vehicle-showcase {
    min-height: auto;
    padding: 1rem 0.75rem 1.25rem;
  }

  .vehicle-photo-wrap {
    min-height: 130px;
    padding: 0.25rem;
  }

  .vehicle-photo {
    max-height: 160px;
    max-width: 100%;
  }

  .vehicle-video-frame {
    margin-top: 0.85rem;
  }
}
