/* ============================================
   LUXURY CHAUFFEUR SERVICE - Premium Theme
   ============================================ */

/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

/* === CSS Variables === */
:root {
  --color-black: #0a0a0a;
  --color-dark: #1a1a1a;
  --color-darker: #111111;
  --color-charcoal: #2a2a2a;
  --color-gray: #888888;
  --color-light-gray: #cccccc;
  --color-off-white: #f5f5f0;
  --color-white: #ffffff;
  --color-gold: #dac87c; /* logo color */
  --color-gold-light: #dfc373;
  --color-gold-dark: #a88a3a;
  --color-accent: #dac87c; /* logo color */
  --color-overlay: rgba(10, 10, 10, 0.7);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-elegant: "Cormorant Garamond", Georgia, serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.25);

  --max-width: 1400px;
  --section-padding: 120px 0;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-off-white);
  background-color: var(--color-black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  color: var(--color-gray);
  font-style: italic;
  max-width: 600px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 2rem 0;
}

.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.text-center .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

/* === Navigation === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--color-gold);
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-brand .nav-logo-img {
  height: 72px;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-off-white);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.8rem !important;
  border: 1px solid var(--color-gold) !important;
  color: var(--color-gold) !important;
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: var(--transition-fast);
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

/* Responsive hero: desktop / mobile variants */
.hero-mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-desktop-only {
    display: none !important;
  }
  .hero-mobile-only {
    display: block !important;
  }
  video.hero-mobile-only {
    display: block !important;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-light-gray);
  font-style: italic;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: var(--color-gold);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* === Page Hero (smaller for sub-pages) === */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.page-hero .hero-content {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero + .section {
  padding-top: 3rem;
}

/* Compact hero for booking/wizard pages (50% shorter than normal page-hero) */
.page-hero.page-hero--compact {
  height: 25vh;
  min-height: 200px;
}

.page-hero--compact .hero-content {
  text-align: center;
}

/* === Booking Hero-Form Merged === */
.booking-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.booking-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.7) 30%,
    rgba(10, 10, 10, 0.92) 55%,
    rgba(10, 10, 10, 0.98) 75%
  );
}

.booking-hero-overlay {
  display: none;
}

.booking-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
}

.booking-hero-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-hero-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.booking-hero-header .hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.booking-hero-header .hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-light-gray);
  margin-top: 0.5rem;
}

.booking-form-area {
  max-width: 860px;
  margin: 0 auto;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-white:hover {
  background: var(--color-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* === Sections === */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--color-dark);
}

.section-darker {
  background: var(--color-darker);
}

/* === Welcome / About Preview === */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-image {
  position: relative;
  overflow: hidden;
}

.welcome-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.welcome-image:hover img,
.welcome-image:hover video {
  transform: scale(1.05);
}

.welcome-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 1px solid var(--color-gold);
  border-left: 1px solid var(--color-gold);
  z-index: 2;
}

.welcome-content {
  padding: 20px 0;
}

.welcome-content p {
  color: var(--color-light-gray);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* === Car Cards / Fleet Grid === */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

.car-card {
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 168, 76, 0.2);
}

.car-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.08);
}

.car-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(10, 10, 10, 0.85);
  padding: 6px 16px;
  backdrop-filter: blur(10px);
}

.car-card-body {
  padding: 30px;
}

.car-card-brand {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.car-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.car-card-desc {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.car-card-availability {
  font-size: 0.78rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.car-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.car-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
}

.car-card-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-gray);
  font-weight: 400;
}

.car-card-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.car-card-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.car-card:hover .car-card-link::after {
  transform: translateX(4px);
}

/* === Car Detail Page === */
.car-detail {
  padding: 80px 0;
}

.car-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.car-detail-image {
  position: relative;
  overflow: hidden;
}

.car-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.car-detail-info .car-brand {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.car-detail-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.car-detail-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.car-detail-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gray);
}

.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 2rem 0;
}

.car-spec {
  background: var(--color-dark);
  padding: 20px 24px;
}

.car-spec-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 6px;
}

.car-spec-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
}

.car-description {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.car-description p {
  color: var(--color-light-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* === Car Image Gallery / Carousel === */
.car-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.car-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
}

.car-gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  will-change: transform;
}

.car-gallery-slide {
  min-width: 100%;
  height: 100%;
}

.car-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  line-height: 1;
}

.car-gallery-btn:hover {
  background: rgba(var(--color-gold-rgb, 212, 175, 55), 0.8);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.car-gallery-prev {
  left: 16px;
}

.car-gallery-next {
  right: 16px;
}

.car-gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 2;
}

.car-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.car-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.car-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.car-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 2px;
}

.car-gallery-thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.car-gallery-thumb:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.3);
}

.car-gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-gold);
}

.car-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CTA Section === */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--color-dark);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--color-gold);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.cta-content p {
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-elegant);
  font-style: italic;
}

/* === Booking Form === */
.booking-section {
  padding: 80px 0;
}

.booking-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-intro .section-label {
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.booking-intro-text {
  color: var(--color-light-gray);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.booking-success-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Step Indicators */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.booking-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}

.booking-steps .step.clickable {
  cursor: pointer;
}

.booking-steps .step.clickable:hover .step-number {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.booking-steps .step.clickable:hover span {
  color: var(--color-gold);
}

.booking-steps .step span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  transition: color 0.3s;
}

.booking-steps .step.active span {
  color: var(--color-gold);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-gray);
  transition: all 0.3s;
}

.step.active .step-number {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
}

.step-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 0.6rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.step-line.active {
  background: rgba(201, 168, 76, 0.4);
}

/* Wizard Steps */
.wizard-step {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.wizard-step.active {
  display: block;
  animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-step-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.wizard-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-align: center;
}

.wizard-subtitle {
  color: var(--color-gray);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 2rem;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.wizard-nav-alt {
  text-align: center;
  padding-top: 1rem;
}

/* Form Base */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: var(--transition-smooth);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray);
}

.form-group input[type="time"] {
  color-scheme: dark;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23c9a84c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--color-dark);
  color: var(--color-white);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Route Selector */
.route-selector {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 1rem;
}

.route-field {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.route-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.85rem;
}

.route-icon.pickup-icon {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
}

.route-icon.dropoff-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-light-gray);
}

.route-field-inner {
  flex: 1;
}

label .required {
  color: #e74c3c;
  font-weight: 700;
}

.route-field-inner label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.route-field-inner select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: var(--transition-smooth);
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23c9a84c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  padding-right: 3rem;
}

.route-field-inner select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.route-field-inner select option {
  background: var(--color-dark);
  color: var(--color-white);
}

.route-connector {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 20px;
}

.route-dots {
  width: 2px;
  height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-gold) 0px,
    var(--color-gold) 4px,
    transparent 4px,
    transparent 8px
  );
}

.route-distance {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
}

/* Route Map */
.route-map {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.route-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.route-map--fallback {
  height: auto;
  background: transparent;
  border: none;
}

.route-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  color: var(--color-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.route-map-link:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-white);
}

.route-map-link svg {
  opacity: 0.7;
}

/* Passenger Selector */
.passenger-selector {
  margin-bottom: 1.5rem;
  text-align: center;
}

.passenger-selector label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.pax-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.pax-btn {
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pax-btn:hover:not(:disabled) {
  background: rgba(201, 168, 76, 0.15);
}

.pax-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pax-display {
  min-width: 60px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.passenger-selector .error-message {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: none;
}

.passenger-selector.has-error .pax-control {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}

.passenger-selector.has-error .error-message {
  display: block;
}

/* Vehicle Cards Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.vehicle-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vehicle-card.selected {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow:
    0 0 0 1px var(--color-gold),
    0 8px 24px rgba(201, 168, 76, 0.15);
}

.vehicle-card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-card-img img {
  transform: scale(1.05);
}

.vehicle-card-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.vehicle-card-body {
  padding: 1rem 1.1rem 1.1rem;
}

.vehicle-card-brand {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.15rem;
}

.vehicle-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.vehicle-card-meta {
  display: flex;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-bottom: 0.6rem;
}

.vehicle-card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-white);
}

.vehicle-card-price small {
  font-size: 0.7rem;
  color: var(--color-gray);
  font-family: var(--font-body);
}

.vehicle-card-type {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.vehicle-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.vehicle-card.selected .vehicle-card-check {
  opacity: 1;
  transform: scale(1);
}

/* Price Summary */
.price-summary {
  margin-top: 1.5rem;
}

.price-summary-inner {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.price-summary-row.total {
  padding-top: 0.8rem;
}

.price-summary-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-gray);
}

.price-summary-row.total .price-summary-label {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.9rem;
}

.price-summary-val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
}

.price-summary-row.total .price-summary-val {
  font-size: 1.6rem;
  color: var(--color-white);
}

.price-summary-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin: 0.3rem 0;
}

.price-summary-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--color-gray);
  margin-top: 0.8rem;
}

/* Booking Summary (Step 4) */
.booking-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.booking-summary h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.summary-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 0.8rem;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 0;
}

.summary-item.highlight {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 1rem;
  margin-top: 0.3rem;
}

.summary-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.summary-item.highlight .summary-label {
  color: var(--color-gold);
}

.summary-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-white);
}

.summary-item.highlight .summary-value {
  font-size: 1.4rem;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 3rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--color-light-gray);
}

/* Validation Errors */
.field-validation-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

.validation-summary-errors ul {
  list-style: none;
  padding: 1.5rem;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.validation-summary-errors li {
  color: #e74c3c;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

/* Input error state */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}

.form-group.has-error label {
  color: #e74c3c;
}

.form-group .error-message {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

.route-field.has-error .route-field-inner select {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}

.route-field .error-message {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  display: none;
}

.route-field.has-error .error-message {
  display: block;
}

.vehicle-grid.has-error {
  border: 2px solid rgba(231, 76, 60, 0.5);
  border-radius: 12px;
  padding: 0.5rem;
}

.vehicle-grid .error-message {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  display: none;
  grid-column: 1 / -1;
}

.vehicle-grid.has-error .error-message {
  display: block;
}

/* Booking responsive */
@media (max-width: 700px) {
  .wizard-step-content {
    padding: 1.5rem;
  }
  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
  }
  .summary-grid,
  .summary-contact {
    grid-template-columns: 1fr;
  }
  .booking-steps {
    gap: 0;
  }
  .step-line {
    width: 20px;
    margin: 0 0.3rem;
  }
  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .booking-steps .step span {
    font-size: 0.6rem;
  }
  .booking-hero > .container {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  .route-field {
    gap: 0.75rem;
  }
  .route-icon {
    margin-top: 1.55rem;
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .route-field-inner label {
    font-size: 0.65rem;
  }
  .route-field-inner select {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    padding-right: 2.5rem;
    background-position: right 0.9rem center;
  }
  .step-line {
    width: 14px;
    margin: 0 0.2rem;
  }
}

/* === About Page === */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p,
.about-content .rich-text p {
  color: var(--color-light-gray);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-content h2,
.about-content h3 {
  color: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* === Legal / Company Info Section === */
.legal-section {
  position: relative;
  background: var(--color-dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.legal-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--color-gold);
}

.legal-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.legal-divider {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}

.legal-text {
  color: var(--color-gray);
  font-size: 0.82rem;
  line-height: 2.2;
  letter-spacing: 0.02em;
  text-align: center;
}

.rich-text {
  color: var(--color-light-gray);
  line-height: 1.8;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rich-text ul,
.rich-text ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.rich-text li {
  margin-bottom: 0.5rem;
}

.rich-text img {
  margin: 2rem 0;
}

.rich-text blockquote {
  border-left: 2px solid var(--color-gold);
  padding: 1rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-off-white);
}

/* === Footer === */
.site-footer {
  background: var(--color-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brochure-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
}

.footer-brochure-link:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-tc-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
}

.footer-tc-link:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--color-gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold);
}

.footer-contact a {
  color: var(--color-gray);
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: var(--color-gray);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-gray);
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

/* === Why Choose Us Section === */
.why-choose-section {
  background: var(--color-dark);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-choose-card {
  text-align: center;
  padding: 50px 30px 40px;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-choose-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.why-choose-card:hover::before {
  opacity: 1;
  width: 60px;
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-gold);
}

.why-choose-icon svg {
  width: 100%;
  height: 100%;
}

.why-choose-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.why-choose-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.why-choose-desc {
  font-size: 0.88rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* === Testimonials === */
.testimonials-section {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 35px 35px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-light-gray);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 28px 0;
  flex: 1;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), #e8d5a3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-black);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-white);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--color-gray);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* === Card Slider (mini carousel in car cards) === */
.card-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.card-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-slider-slide {
  position: relative;
  display: block;
  min-width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.card-slider-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(10, 10, 10, 0.7);
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(6px);
  border-radius: 0;
}

.car-card:hover .card-slider-btn {
  opacity: 1;
}

.card-slider-btn:hover {
  background: rgba(201, 168, 76, 0.85);
  color: var(--color-black);
}

.card-slider-prev {
  left: 10px;
}

.card-slider-next {
  right: 10px;
}

.card-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.card-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.card-slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* === Stats / Features (legacy) === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-black);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
}

/* === Filter tabs === */
.fleet-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.05);
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .welcome-grid,
  .car-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .fleet-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .car-specs-grid {
    grid-template-columns: 1fr;
  }

  .car-gallery-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .car-gallery-prev {
    left: 8px;
  }

  .car-gallery-next {
    right: 8px;
  }

  .car-gallery-thumb {
    width: 60px;
    height: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 35px 20px 30px;
  }

  .why-choose-stat {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .card-slider-btn {
    opacity: 1;
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .wizard-nav {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }

  .wizard-nav .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 600px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* === Placeholder images (no-image fallback) === */
.no-image {
  background: linear-gradient(
    135deg,
    var(--color-charcoal) 0%,
    var(--color-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* WhatsApp button class removed — now uses same <p> + <a> style as phone/email */

/* === Textarea styling === */
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
  resize: vertical;
  min-height: 100px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group textarea::placeholder {
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* ============================================
   SERVICE PILLARS (Homepage)
   ============================================ */
.service-pillars {
  padding: var(--section-padding);
  text-align: center;
}

.service-pillars h2 {
  margin-bottom: 0.6rem;
}

.service-pillars .section-subtitle {
  color: var(--color-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 48px 32px 40px;
  text-align: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(218, 200, 124, 0.08);
  color: var(--color-gold);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.pillar-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.pillar-link:hover {
  color: var(--color-gold-light);
  gap: 10px;
}

/* ============================================
   EXCURSIONS PAGE
   ============================================ */
.excursion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.excursion-card {
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.excursion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    #c9956b,
    var(--color-gold-light)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.excursion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(218, 200, 124, 0.15);
}

.excursion-card:hover::before {
  opacity: 1;
}

.excursion-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.excursion-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.excursion-card:hover .excursion-card-image img {
  transform: scale(1.08);
}

.excursion-card-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.excursion-card-duration svg {
  color: var(--color-gold);
}

.excursion-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.excursion-card-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9956b;
  margin-bottom: 8px;
}

.excursion-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.excursion-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.excursion-card-name a:hover {
  color: var(--color-gold);
}

.excursion-card-desc {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.excursion-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.excursion-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold);
}

.excursion-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.excursion-card-link:hover {
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
}

/* ============================================
   EXCURSION DETAIL PAGE
   ============================================ */
.excursion-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.excursion-detail-gallery {
  border-radius: 12px;
  overflow: hidden;
}

.excursion-detail-info {
  position: sticky;
  top: 120px;
}

.excursion-detail-category {
  display: inline-block;
  background: rgba(218, 200, 124, 0.1);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.excursion-detail-desc {
  color: var(--color-light-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.excursion-quick-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 2rem;
}

.excursion-quick-info h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.excursion-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
}

.excursion-info-item:last-child {
  border-bottom: none;
}

.excursion-info-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.excursion-info-item .info-label {
  color: var(--color-gray);
  min-width: 80px;
}

.excursion-info-item .info-value {
  color: var(--color-white);
  font-weight: 500;
}

.excursion-highlights {
  margin-bottom: 2rem;
}

.excursion-highlights h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.excursion-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.excursion-highlight-tag {
  background: rgba(218, 200, 124, 0.08);
  border: 1px solid rgba(218, 200, 124, 0.15);
  color: var(--color-gold-light);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Excursion hero meta tags */
.excursion-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.excursion-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 6px;
  line-height: 1.4;
}

.excursion-hero-tag svg {
  color: var(--color-gold);
}

.excursion-hero-price {
  background: rgba(218, 200, 124, 0.15);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

/* Full description section */
.excursion-full-description {
  padding: var(--section-padding);
}

.excursion-full-description h2 {
  margin-bottom: 2rem;
}

.excursion-full-description .rte-content {
  max-width: 900px;
  color: var(--color-light-gray);
  font-size: 1.05rem;
  line-height: 1.9;
}

.excursion-full-description .rte-content p {
  margin-bottom: 1.5rem;
}

.excursion-full-description .rte-content h2,
.excursion-full-description .rte-content h3 {
  color: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Related excursions */
.related-excursions {
  padding: var(--section-padding);
  padding-top: 60px;
  background: rgba(255, 255, 255, 0.01);
}

.related-excursions h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================
   EXCURSION PRICING SECTION
   ============================================ */
.excursion-pricing {
  margin-top: 1rem;
  text-align: center;
}

.excursion-pricing .section-title {
  margin-bottom: 0.5rem;
}

.excursion-pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  width: 300px;
  text-align: center;
}

.pricing-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.pricing-card-type-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
  display: block;
  margin-bottom: 0.3rem;
}

.pricing-card-type {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold);
  margin: 0;
}

.pricing-card-features {
  flex: 1;
  text-align: left;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-light-gray);
}

.pricing-feature.included svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature.excluded {
  color: var(--color-gray);
  text-decoration: line-through;
}

.pricing-feature.excluded svg {
  color: #e74c3c;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-price {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.pricing-card-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
}

.pricing-card-extra-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-gray);
  letter-spacing: 0.03em;
}

.pricing-card-extra-time svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Additional Info Grid */
.excursion-additional-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.excursion-info-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.excursion-info-detail svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.excursion-info-detail-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.excursion-info-detail-value {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-light-gray);
  margin-top: 0.2rem;
  line-height: 1.5;
}

/* ============================================
   PARTNERS SECTION (About Page)
   ============================================ */
.partners-section {
  padding: var(--section-padding);
  background: var(--color-dark);
  text-align: center;
}

.partners-section h2 {
  margin-bottom: 0.5rem;
}

.partners-section .gold-divider {
  margin: 0 auto 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.partner-item:hover {
  border-color: var(--color-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.partner-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

.partner-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-white);
}

.partner-item:hover .partner-name {
  color: var(--color-gold);
}

/* ============================================
   FLOATING WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.55),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
}

.whatsapp-fab {
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
  animation: none;
}

/* ============================================
   BOOKING MODE TOGGLE
   ============================================ */
.booking-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 4px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-toggle-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.booking-toggle-btn:hover {
  color: var(--color-white);
}

.booking-toggle-btn.active {
  background: rgba(218, 200, 124, 0.12);
  color: var(--color-gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.booking-toggle-btn svg {
  flex-shrink: 0;
}

/* ============================================
   TERMS & CONDITIONS CHECKBOX
   ============================================ */
.tc-agreement {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.tc-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-light-gray);
  line-height: 1.5;
  user-select: none;
  transition: color 0.3s ease;
}

.tc-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  cursor: pointer;
  flex-shrink: 0;
  transition: outline 0.3s ease;
}

.tc-checkbox-label a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tc-checkbox-label a:hover {
  color: var(--color-gold-light);
}

.tc-agreement .error-message {
  display: none;
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.tc-agreement.has-error {
  background: rgba(231, 76, 60, 0.06);
  border-color: rgba(231, 76, 60, 0.3);
}

.tc-agreement.has-error .error-message {
  display: block;
}

.tc-agreement.has-error .tc-checkbox-label {
  color: #e74c3c;
}

.tc-agreement.has-error .tc-checkbox-label input[type="checkbox"] {
  outline: 2px solid #e74c3c;
  outline-offset: 1px;
}

/* Turnstile captcha widget */
.turnstile-wrapper {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.turnstile-wrapper .error-message {
  display: none;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.turnstile-wrapper.has-error .error-message {
  display: block;
}

.turnstile-wrapper.has-error .cf-turnstile {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   CUSTOM ARRANGEMENT FORM
   ============================================ */
.custom-whatsapp-alt {
  text-align: center;
  margin-top: 2rem;
}

.custom-whatsapp-divider {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 2rem;
}

.custom-whatsapp-divider::before,
.custom-whatsapp-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.custom-whatsapp-divider::before {
  right: calc(50% + 100px);
}

.custom-whatsapp-divider::after {
  left: calc(50% + 100px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #25d366;
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ============================================
   CONTENT PAGE (Terms & Conditions, etc.)
   ============================================ */
.content-page-body .rte-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--color-light-gray);
  font-size: 1.02rem;
  line-height: 1.85;
}

.content-page-body .rte-content h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-page-body .rte-content h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-page-body .rte-content p {
  margin-bottom: 1.25rem;
}

.content-page-body .rte-content ul,
.content-page-body .rte-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-page-body .rte-content li {
  margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .excursion-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .excursion-detail-info {
    position: static;
  }

  .excursion-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar-card {
    padding: 32px 24px 28px;
  }

  .excursion-grid {
    grid-template-columns: 1fr;
  }

  .excursion-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .excursion-pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }

  .excursion-additional-info {
    flex-direction: column;
    align-items: center;
  }

  .excursion-info-detail {
    width: 100%;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .booking-toggle {
    max-width: 100%;
  }

  .booking-toggle-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .custom-whatsapp-divider::before,
  .custom-whatsapp-divider::after {
    width: 30px;
  }

  .custom-whatsapp-divider::before {
    right: calc(50% + 80px);
  }

  .custom-whatsapp-divider::after {
    left: calc(50% + 80px);
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .partner-item {
    padding: 16px 12px;
  }

  .partner-item img {
    width: 60px;
    height: 60px;
  }

  .excursion-card-image {
    height: 180px;
  }

  .booking-toggle-btn svg {
    display: none;
  }
}

/* ============================================
   ABOUT PAGE — CAROUSEL GALLERY
   ============================================ */

.about-carousel-section {
  overflow: hidden;
  padding-bottom: 30px;
}

.about-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 70px;
}

.about-carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
}

.about-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-carousel-slide {
  flex: 0 0 calc(33.333% - 11px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.about-carousel-slide:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px rgba(218, 200, 124, 0.15);
}

.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-carousel-slide:hover img {
  transform: scale(1.06);
}

.about-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-carousel-btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.about-carousel-prev {
  left: 8px;
  padding-right: 2px;
}

.about-carousel-next {
  right: 8px;
  padding-left: 2px;
}

.about-carousel-counter {
  text-align: center;
  margin-top: 20px;
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

/* Google Reviews badge */

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.google-reviews-badge:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(218, 200, 124, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.google-reviews-badge-icon {
  flex-shrink: 0;
}

.google-reviews-badge-stars {
  display: flex;
  gap: 1px;
  line-height: 1;
}

.google-reviews-badge-star {
  color: #fbbc05;
  font-size: 1rem;
}

.google-reviews-badge-star.half {
  background: linear-gradient(
    90deg,
    #fbbc05 50%,
    rgba(255, 255, 255, 0.25) 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.google-reviews-badge-star.empty {
  color: rgba(255, 255, 255, 0.25);
}

.google-reviews-badge-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .google-reviews-badge {
    padding: 8px 16px;
    gap: 8px;
    font-size: 0.8rem;
  }

  .google-reviews-badge-star {
    font-size: 0.85rem;
  }

  .google-reviews-badge-text {
    font-size: 0.78rem;
  }
}

/* Gallery lightbox (shared by showcase + about) */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2;
}

.gallery-lightbox-close:hover {
  opacity: 1;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-prev {
  left: 24px;
}

.gallery-lightbox-next {
  right: 24px;
}

.gallery-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-light-gray);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* Showcase page gallery grid */

.showcase-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.showcase-gallery .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-smooth);
}

.showcase-gallery .gallery-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px rgba(218, 200, 124, 0.15);
}

.showcase-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.showcase-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.showcase-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 700px) {
  .about-carousel-slide {
    flex: 0 0 calc(50% - 8px);
  }

  .about-carousel {
    padding: 0 48px;
  }

  .about-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .gallery-lightbox-prev {
    left: 12px;
  }

  .gallery-lightbox-next {
    right: 12px;
  }

  .showcase-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .about-carousel-slide {
    flex: 0 0 calc(100% - 0px);
  }

  .about-carousel {
    padding: 0 40px;
  }

  .about-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .about-carousel-prev {
    left: 4px;
  }

  .about-carousel-next {
    right: 4px;
  }
}

/* ============================================
   SHOWCASE / GALLERY PAGE
   ============================================ */

.showcase-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.showcase-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.showcase-cta-buttons .btn svg {
  flex-shrink: 0;
}

.showcase-gallery {
  padding: 80px 0 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--color-charcoal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gallery-lightbox-close:hover {
  opacity: 1;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-prev {
  left: 20px;
}

.gallery-lightbox-next {
  right: 20px;
}

.gallery-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
  }

  .showcase-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .gallery-lightbox-prev {
    left: 10px;
  }

  .gallery-lightbox-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item {
    border-radius: 4px;
  }
}
