/* ============================================
   WHITE ODISHA TRAVELS — Design System
   Brand Colors: Purple #5B21B6 | Green #16A34A | Amber #D97706
   ============================================ */

/* ---- Google Fonts moved to layout head for performance ---- */

/* ---- Design Tokens (CSS Variables) ---- */
:root {
  /* Primary — Purple (from logo background) */
  --primary: #5B21B6;
  --primary-container: #7C3AED;
  --on-primary: #ffffff;
  --on-primary-container: #ede9fe;
  --primary-fixed: #ddd6fe;
  --primary-fixed-dim: #c4b5fd;
  --on-primary-fixed: #2e1065;
  --on-primary-fixed-variant: #4c1d95;

  /* Secondary — Green (from logo car/circle) */
  --secondary: #16A34A;
  --secondary-container: #22C55E;
  --on-secondary: #ffffff;
  --on-secondary-container: #14532d;
  --secondary-fixed: #bbf7d0;
  --secondary-fixed-dim: #86efac;

  /* Tertiary — Amber (from logo chevrons) */
  --tertiary: #D97706;
  --tertiary-container: #F59E0B;
  --on-tertiary: #ffffff;
  --on-tertiary-container: #78350f;
  --tertiary-fixed: #fde68a;
  --tertiary-fixed-dim: #fcd34d;

  /* Surface Hierarchy */
  --surface: #f7f7fb;
  --surface-bright: #f7f7fb;
  --surface-dim: #d8d8dc;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f3f3f8;
  --surface-container: #ededf2;
  --surface-container-high: #e7e7ec;
  --surface-container-highest: #e1e1e6;
  --surface-variant: #e1e1e6;
  --surface-tint: #5B21B6;

  /* On Surface */
  --on-surface: #1a1625;
  --on-surface-variant: #44375a;
  --on-background: #1a1625;
  --background: #f7f7fb;

  /* Outline */
  --outline: #7c7090;
  --outline-variant: #cfc6e1;

  /* Error */
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --on-error: #ffffff;
  --on-error-container: #93000a;

  /* Inverse */
  --inverse-surface: #2d2a35;
  --inverse-on-surface: #eff0f3;
  --inverse-primary: #c4b5fd;

  /* Typography */
  --font-headline: 'Noto Serif', serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5.5rem;
  --space-5xl: 7.5rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-editorial: 0 20px 40px rgba(91, 33, 182, 0.05);
  --shadow-ambient: 0 20px 40px rgba(25, 28, 30, 0.06);
  --shadow-hero: 0 24px 48px rgba(25, 28, 30, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--on-surface);
  background-color: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--primary-fixed);
  color: var(--on-primary-fixed);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ---- Material Symbols ---- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.material-symbols-filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---- Typography Scale ---- */
.font-headline { font-family: var(--font-headline); }
.font-body { font-family: var(--font-body); }
.font-label { font-family: var(--font-label); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  color: var(--on-surface);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-xl { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; }
.display-md { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
.headline-lg { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
.headline-md { font-size: 1.75rem; font-weight: 700; }
.title-lg { font-size: 1.375rem; font-weight: 600; font-family: var(--font-body); }
.body-lg { font-size: 1.125rem; line-height: 1.8; }
.body-md { font-size: 1rem; line-height: 1.7; }
.label-md { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-label); }
.label-sm { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-label); }

/* ---- Color Utilities ---- */
.text-primary { color: var(--primary) !important; }
.text-primary-container { color: var(--primary-container) !important; }
.text-on-surface { color: var(--on-surface) !important; }
.text-on-surface-variant { color: var(--on-surface-variant) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-tertiary { color: var(--tertiary) !important; }

.bg-surface { background-color: var(--surface) !important; }
.bg-surface-low { background-color: var(--surface-container-low) !important; }
.bg-surface-high { background-color: var(--surface-container-high) !important; }
.bg-surface-highest { background-color: var(--surface-container-highest) !important; }
.bg-surface-lowest { background-color: var(--surface-container-lowest) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-container { background-color: var(--primary-container) !important; }
.bg-primary-fixed { background-color: var(--primary-fixed) !important; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: linear-gradient(90deg, #5B21B6 0%, #7C3AED 35%, #16A34A 70%, #D97706 100%);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: #ffffff;
  z-index: 1060;
  position: relative;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar a:hover {
  opacity: 0.8;
  color: #ffffff;
}

.topbar .topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.3);
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
}

.topbar .topbar-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar .topbar-icon img,
.topbar .topbar-icon svg {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .topbar { font-size: 0.7rem; padding: 0.4rem 0; }
  .topbar .topbar-left { display: none !important; }
  .topbar .topbar-right { justify-content: center !important; width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar-curator {
  background: linear-gradient(90deg, #3B0E8C, #5B21B6, #7C3AED, #16A34A);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  padding: 0.85rem 0;
  transition: all 0.4s ease;
  z-index: 1050;
}

.navbar-curator.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-curator .navbar-brand {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.navbar-curator .nav-link {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  margin: 0 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-curator .nav-link:hover {
  color: #ffffff;
}

.navbar-curator .nav-link.active {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid #ffffff;
}

.btn-cta-primary {
  background: #ffffff;
  color: #C13311;
  border: none;
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
  transform: scale(1.03);
  color: #C13311;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* Mobile menu */
.navbar-curator .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-lg);
  color: #fff;
}

.navbar-curator .navbar-toggler .material-symbols-outlined {
  color: #fff;
}

/* Force collapse until 1100px */
@media (max-width: 1100px) {
  .navbar-expand-lg .navbar-toggler {
    display: inline-flex !important;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
    width: 100%;
    order: 3;
  }
  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }
  .navbar-expand-lg .btn-cta-primary {
    display: none !important; /* Hide the CTA outside on medium screens */
  }
  .navbar-curator .navbar-brand {
    flex: 1;
  }
}

@media (max-width: 1100px) {

  .navbar-curator .navbar-collapse {
    background: linear-gradient(135deg, #3B0E8C, #5B21B6, #16A34A);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: 0.5rem;
  }
  .navbar-curator .nav-link {
    color: rgba(255,255,255,0.9);
    margin: 0.25rem 0;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
  }
  .navbar-curator .nav-link:hover,
  .navbar-curator .nav-link.active {
    background: rgba(255,255,255,0.15);
    border-bottom: none;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 25, 23, 0.4), rgba(28, 25, 23, 0.2), transparent);
}

.hero-section .hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.hero-section h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.05;
}

.hero-section .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

.btn-hero {
  background: var(--primary-container);
  color: var(--on-primary-container);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(155, 47, 0, 0.2);
}

.btn-hero:hover {
  transform: scale(1.05);
  color: var(--on-primary-container);
  box-shadow: 0 16px 32px rgba(155, 47, 0, 0.3);
}

/* Page hero (non full-screen) */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(247, 249, 251, 0) 0%, rgba(247, 249, 251, 1) 100%);
}

/* Text-only hero */
.text-hero {
  padding-top: 10rem;
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .text-hero {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
}

/* ============================================
   HERO SLIDER — Horizontal Track Style
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  /* Full viewport height minus topbar+navbar (~100px) */
  height: calc(100vh - 0px);
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: #1c1917;
  display: block;
}

/* The moving track — holds slides side by side */
.hero-slider .slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* Each slide */
.hero-slider .slide-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slider .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* No zoom animation — clean and fast */
  transition: none;
}

/* ---- Arrow Buttons ---- */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  outline: none;
  padding: 0;
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.hs-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.hs-prev { left: 1.5rem; }
.hs-next { right: 1.5rem; }

/* ---- Dots ---- */
.hs-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.hs-dot.active {
  background: #fff;
  border-color: #fff;
  width: 32px;
  border-radius: 5px;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 991px) {
  .hero-slider {
    height: 70vw;   /* Aspect-ratio based: keeps images uncropped */
    min-height: 320px;
    max-height: 600px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 56vw;
    min-height: 260px;
    max-height: 420px;
  }
  .hs-arrow {
    width: 38px;
    height: 38px;
  }
  .hs-prev { left: 0.6rem; }
  .hs-next { right: 0.6rem; }
  .hs-dots { bottom: 1rem; }
  .hs-dot { width: 8px; height: 8px; }
  .hs-dot.active { width: 24px; }
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(225, 191, 181, 0.2);
  box-shadow: 0 20px 40px rgba(172, 52, 0, 0.05);
}

/* ============================================
   EDITORIAL CARDS
   ============================================ */
.editorial-card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-editorial);
}

.editorial-card:hover {
  box-shadow: var(--shadow-hero);
}

.editorial-card .card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.editorial-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.editorial-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-curator {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: var(--on-primary);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(155, 47, 0, 0.2);
}

.btn-primary-curator:hover {
  transform: scale(1.02);
  color: var(--on-primary);
  box-shadow: 0 12px 28px rgba(155, 47, 0, 0.3);
}

.btn-outline-curator {
  background: var(--surface-container-lowest);
  color: var(--primary);
  border: 1px solid rgba(225, 191, 181, 0.3);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-curator:hover {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

.btn-text-curator {
  background: transparent;
  color: var(--primary);
  border: none;
  border-bottom: 2px solid var(--primary);
  padding: 0.25rem 0;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-text-curator:hover {
  gap: 1rem;
  color: var(--primary-container);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
  padding: 7.5rem 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

.section-label {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: var(--font-label);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 640px;
}

.tonal-section-low { background: var(--surface-container-low); }
.tonal-section-white { background: var(--surface-container-lowest); }
.tonal-section-surface { background: var(--surface); }

/* ============================================
   DESTINATION / BENTO GRID
   ============================================ */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
}

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

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent, transparent);
}

.destination-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.destination-card .card-info .glass-card {
  padding: 1.25rem;
}

.destination-card .card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.destination-card .card-info p {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
}

/* Bento grid */
.bento-grid {
  display: grid;
  gap: 1.5rem;
  height: 700px;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: 7fr 5fr;
    grid-template-rows: 1fr 1fr;
  }
  .bento-grid .bento-main {
    grid-row: 1 / -1;
  }
}

@media (max-width: 767px) {
  .bento-grid {
    height: auto;
    grid-template-columns: 1fr;
  }
  .bento-grid .bento-main {
    height: 280px;
  }
  .bento-grid .d-flex.flex-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .bento-grid .destination-card.flex-fill {
    height: 160px;
  }
}

/* ============================================
   FEATURE / WHY US CARDS
   ============================================ */
.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-item .feature-icon {
  background: var(--surface-container-lowest);
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-item .feature-icon .material-symbols-outlined {
  font-size: 1.75rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--on-surface-variant);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
  text-align: center;
}

.testimonial-section .quote-icon {
  font-size: 3rem;
  color: var(--primary-container);
}

.testimonial-section blockquote {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(194, 65, 12, 0.2);
  padding: 3px;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-block {
  position: relative;
}

.service-block .service-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.service-block .service-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(155, 47, 0, 0.1);
  border-radius: var(--radius-xl);
  transform: translate(1rem, 1rem);
  z-index: -1;
  transition: transform 0.4s ease;
}

.service-block:hover .service-img-wrapper::after {
  transform: translate(1.5rem, 1.5rem);
}

.service-block .service-img-wrapper img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  transition: transform 0.7s ease;
}

.service-block:hover .service-img-wrapper img {
  transform: scale(1.02);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--surface-container-low);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon .material-symbols-outlined {
  font-size: 1.75rem;
  color: var(--primary);
}

/* Service compact card */
.service-compact-card {
  background: var(--surface-container-low);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-compact-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

/* ============================================
   FLEET / CAR RENTAL CARDS
   ============================================ */
.fleet-card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-editorial);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.fleet-card:hover {
  box-shadow: var(--shadow-hero);
}

.fleet-card.featured {
  border: 2px solid rgba(194, 65, 12, 0.2);
  transform: scale(1.03);
  z-index: 5;
  position: relative;
}

.fleet-card .fleet-img {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

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

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

.fleet-card .fleet-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--primary-container);
  color: var(--on-primary);
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fleet-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.fleet-card .price-row span:last-child { font-weight: 700; }

.fleet-card .btn-fleet {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  margin-top: auto;
  background: var(--surface-container-low);
  color: var(--primary);
  border: none;
  transition: all 0.3s ease;
}

.fleet-card:hover .btn-fleet,
.fleet-card.featured .btn-fleet {
  background: var(--primary);
  color: var(--on-primary);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-container-low);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 28, 30, 0.6), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(1rem);
  transition: all 0.5s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item .gallery-info .glass-card {
  padding: 1rem;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  cursor: pointer;
}

.blog-card .blog-img-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
  position: relative;
}

.blog-card .blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-card .blog-img-wrapper .blog-date {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.875rem;
}

.blog-card .blog-category {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card h4 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.blog-card:hover h4 {
  color: var(--primary);
}

.blog-card .blog-excerpt {
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Featured blog card */
.featured-blog {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
}

.featured-blog .featured-blog-img {
  height: 100%;
  min-height: 400px;
}

.featured-blog .featured-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-form .form-control,
.booking-form .form-select {
  background: var(--surface-container-low);
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  color: var(--on-surface);
  transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  box-shadow: 0 0 0 2px var(--primary);
  background: var(--surface-container-lowest);
}

.booking-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  margin-bottom: 0.5rem;
}

/* Destination selection cards */
.destination-select-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.destination-select-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-select-card:hover img {
  transform: scale(1.1);
}

.destination-select-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
}

.destination-select-card .dest-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
}

.destination-select-card .dest-info .label-md { opacity: 0.8; }
.destination-select-card .dest-info .dest-name { font-size: 1.25rem; font-weight: 700; }

.destination-select-card.selected {
  outline: 2px solid var(--primary);
}

.destination-select-card .check-mark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.destination-select-card.selected .check-mark { opacity: 1; }

/* Package cards */
.package-card {
  background: var(--surface-container-lowest);
  border: 1px solid rgba(225, 191, 181, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-card:hover { box-shadow: var(--shadow-ambient); }

.package-card.selected {
  border-color: var(--primary);
}

.package-card .package-price {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Summary panel */
.summary-panel {
  position: sticky;
  top: 6rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--surface-container-low);
  border: none;
  border-radius: var(--radius-full);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.contact-form textarea.form-control {
  border-radius: var(--radius-2xl);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  box-shadow: 0 0 0 2px var(--primary);
  background: var(--surface-container-lowest);
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-info-card .info-icon {
  background: var(--primary-fixed);
  padding: 1rem;
  border-radius: var(--radius-xl);
  color: var(--primary);
}

.contact-info-card .info-icon .material-symbols-outlined {
  font-size: 1.75rem;
}

/* Map section */
.map-section {
  position: relative;
  height: 500px;
  background: var(--surface-container);
  overflow: hidden;
}

.map-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.7s ease;
}

.map-section:hover img {
  filter: grayscale(0%);
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-marker .marker-dot {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-primary);
  box-shadow: 0 0 0 12px rgba(155, 47, 0, 0.2);
  margin: 0 auto 0.5rem;
}

.map-marker .marker-label {
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-ambient);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Map overlay card */
.map-info-card {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  max-width: 350px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-curator {
  background: #fafaf9;
  border-top: 1px solid #e7e5e4;
}

.footer-curator .footer-brand {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
}

.footer-curator h5 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  color: #9a3412;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-curator a {
  color: #78716c;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.footer-curator a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.footer-curator .footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #78716c;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-curator .footer-contact .material-symbols-outlined {
  font-size: 1rem;
  color: #9a3412;
}

.footer-curator .social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: #e7e5e4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #57534e;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.footer-curator .social-icon:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.footer-curator .newsletter-input {
  display: flex;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e7e5e4;
}

.footer-curator .newsletter-input input {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  outline: none;
  background: transparent;
}

.footer-curator .newsletter-input button {
  background: #9a3412;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  transition: opacity 0.3s;
}

.footer-curator .newsletter-input button:hover { opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid rgba(231, 229, 228, 0.5);
  padding: 1.5rem 0;
  text-align: center;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  color: #78716c;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius-xl);
  padding: 5rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }
}

.cta-banner .cta-circle {
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  width: 24rem;
  height: 24rem;
  border: 40px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.cta-banner.dark-cta {
  background: #1c1917;
}

.cta-banner .btn-cta-light {
  background: var(--surface-container-lowest);
  color: var(--primary);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-banner .btn-cta-light:hover { opacity: 0.9; }

.cta-banner.container-cta {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-radius: var(--radius-2xl);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: var(--surface-container-low);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section .newsletter-circle {
  position: absolute;
  border-radius: var(--radius-full);
  background: rgba(155, 47, 0, 0.05);
}

.newsletter-section .newsletter-circle.top-right {
  top: -8rem;
  right: -8rem;
  width: 16rem;
  height: 16rem;
}

.newsletter-section .newsletter-circle.bottom-left {
  bottom: -6rem;
  left: -6rem;
  width: 12rem;
  height: 12rem;
}

.newsletter-section .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-section .newsletter-form input {
  background: var(--surface-container-lowest);
  border: none;
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.newsletter-section .newsletter-form input:focus {
  box-shadow: 0 0 0 2px var(--primary);
  outline: none;
}

/* ============================================
   CATEGORY FILTER PILLS
   ============================================ */
.filter-pill {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--surface-container-lowest);
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary-container);
  color: var(--on-primary-container);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.5rem;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-card .team-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-container);
  margin-bottom: 1.25rem;
  position: relative;
}

.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  filter: grayscale(0%);
}

.team-card .team-img .team-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-img .team-tag {
  opacity: 1;
}

/* ============================================
   STEP INDICATOR
   ============================================ */
.step-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-circle.active {
  background: var(--primary-fixed);
  color: var(--primary);
}

.step-circle.inactive {
  background: var(--surface-container-high);
  color: var(--on-surface);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scroll offset for fixed navbar */
[id] {
  scroll-margin-top: 140px;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: #fff;
}

.floating-btn.whatsapp {
  background: #25D366;
}

.floating-btn.call-btn {
  background: linear-gradient(135deg, #C13311, #9E3D3B);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.floating-btn .material-symbols-outlined {
  font-size: 1.7rem;
}

/* Pulse animation for WhatsApp */
.floating-btn.whatsapp::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  animation: floatPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 767px) {
  .floating-buttons { bottom: 1.25rem; right: 1rem; }
  .floating-btn { width: 50px; height: 50px; }
  .floating-btn.whatsapp::before { width: 50px; height: 50px; }
  .floating-btn svg { width: 24px; height: 24px; }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
  .section-padding { padding: 4rem 0; }
  .cta-banner { padding: 3rem 2rem; }
  .bento-grid { height: auto; }
  .fleet-card.featured { transform: none; }
  .map-info-card { display: none; }
  .hero-section h1 { font-size: 3rem; }
  .text-hero { padding-top: 9rem; }
  .page-hero { padding-top: 6rem; }
}

@media (max-width: 767px) {
  .section-padding { padding: 3rem 0; }
  .destination-card .card-info { padding: 1rem; }
  .newsletter-section { padding: 2.5rem 1.5rem; }
  .page-hero { height: 40vh; min-height: 300px; }
  .text-hero { padding-top: 8rem; }
}

/* ============================================
   SHIMMER PRELOADER & SKELETONS
   ============================================ */
@keyframes shimmer-sweep {
  0% { background-position: -1200px 0; }
  100% { background-position: 1200px 0; }
}

.shimmer-block {
  background: #f0f0f0;
  background-image: linear-gradient(
    90deg, 
    #f0f0f0 0%, 
    #f8f8f8 20%, 
    #f0f0f0 40%, 
    #f0f0f0 100%
  );
  background-repeat: no-repeat;
  background-size: 1200px 100%;
  animation: shimmer-sweep 2s infinite linear;
  border-radius: var(--radius-md);
}

.preloader-overlay {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
  overflow: hidden;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sk-nav { 
  height: 80px; 
  width: 100%; 
  background: linear-gradient(90deg, #3B0E8C, #5B21B6);
  display: flex;
  align-items: center;
  padding: 0 4rem;
  gap: 2rem;
}

.sk-nav-logo { height: 40px; width: 140px; border-radius: var(--radius-sm); opacity: 0.3; background: white; }
.sk-nav-item { height: 12px; width: 60px; border-radius: 4px; opacity: 0.2; background: white; }

.sk-content { 
  flex: 1;
  padding: 4rem;
  background: var(--surface);
}

.sk-hero { 
  height: 350px; 
  width: 100%; 
  border-radius: var(--radius-xl); 
  margin-bottom: 3rem;
  background: #e5e7eb;
}

.sk-line { height: 24px; width: 100%; max-width: 600px; margin-bottom: 1.5rem; border-radius: var(--radius-sm); background: #e5e7eb; }
.sk-line.short { width: 40%; max-width: 300px; }
.sk-line.msm { width: 70%; max-width: 450px; }

.sk-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
  margin-top: 4rem;
}

.sk-card { 
  height: 250px; 
  border-radius: var(--radius-lg); 
}

@media (max-width: 1100px) {
  .sk-grid { grid-template-columns: repeat(2, 1fr); }
  .sk-nav { padding: 0 1.5rem; }
  .sk-content { padding: 2rem 1.5rem; }
}

@media (max-width: 767px) {
  .sk-grid { grid-template-columns: 1fr; }
  .sk-hero { height: 250px; }
  .sk-nav-items { display: none; }
}

/* Image Loaders for active content */
.blog-img-wrapper, .featured-blog-img, .destination-card, .card-img-wrapper, .car-card-img {
  background: #f0f0f0;
  background-image: linear-gradient(90deg, #f0f0f0 0%, #f7f7f7 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: shimmer-sweep 2.5s infinite linear !important;
  position: relative;
  overflow: hidden;
}

.blog-img-wrapper img, .featured-blog-img img, .destination-card img, .card-img-wrapper img, .car-card-img img {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.blog-img-wrapper img.loaded, .featured-blog-img img.loaded, .destination-card img.loaded, .card-img-wrapper img.loaded, .car-card-img img.loaded {
  opacity: 1;
}

