/* ExploringLanka — Complete UI (2026) */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;

  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #eef2f6;
  --ink: #0b1220;
  --ink-soft: #3d4f63;
  --muted: #6b7c8f;
  --line: #dde4ec;

  --brand: #0d9488;
  --brand-dark: #0f766e;
  --brand-light: #ccfbf1;
  --accent: #ea580c;
  --accent-soft: #ffedd5;
  --gold: #ca8a04;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(11, 18, 32, 0.06);
  --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.12);
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

h1, h2, h3, .page-hero h1, .hero-content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.btn-primary, .btn-search, .btn-card {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover, .btn-search:hover, .btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.4);
}
.btn-whatsapp, .btn-green {
  background: #22c55e;
  color: #fff;
}
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-2px); }
.btn-light {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-light:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline { border: 2px solid var(--line); background: var(--surface); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* —— Header —— */
.site-header, .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.header-wrapper, .nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo, .footer-logo { width: auto; height: 44px; object-fit: contain; }
.logo img { height: 44px; width: auto; }
.main-nav, .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a, .nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active,
.nav-links a:hover, .nav-links a.active {
  color: var(--brand-dark);
  background: var(--brand-light);
}
.main-nav a::after { display: none; }
.header-actions, .nav-actions { display: flex; gap: 10px; align-items: center; }
.mobile-menu-btn, .hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  font-size: 22px;
}

/* Home-style navbar for all pages */
.site-header--travel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.site-header--travel.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8e8ec;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.site-header--travel .header-wrapper {
  height: var(--header-h);
}

.site-header--travel .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header--travel .logo-wordmark {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.site-header--travel .site-logo--img {
  display: none;
}

.site-header--travel.is-scrolled .logo-wordmark {
  display: none;
}

.site-header--travel.is-scrolled .site-logo--img {
  display: block;
}

.site-header--travel .main-nav a {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-weight: 600;
  font-size: 15px;
}

.site-header--travel .main-nav a:hover,
.site-header--travel .main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header--travel.is-scrolled .main-nav a {
  color: var(--ink-soft);
}

.site-header--travel.is-scrolled .main-nav a:hover,
.site-header--travel.is-scrolled .main-nav a.active {
  color: var(--ink);
  background: #f0f0f2;
}

.lang-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.site-header--travel.is-scrolled .lang-pill {
  border-color: #ddd;
  color: var(--ink);
}

.btn-login {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.site-header--travel.is-scrolled .btn-login {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.site-header--travel .mobile-menu-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.site-header--travel.is-scrolled .mobile-menu-btn {
  color: var(--ink);
  background: #f0f0f2;
  border-color: #e5e5ea;
}

.site-header--travel .site-logo--img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

/* —— Site loader (home) —— */
.luxury-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.luxury-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(7, 17, 31, 0.78), rgba(7, 17, 31, 0.42)),
    url('../assets/images/hero-3.png') center/cover no-repeat;
  filter: saturate(1.08) contrast(1.04);
  animation: loaderBgShift 12s ease-in-out infinite alternate;
}

@keyframes loaderBgShift {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

  position: relative;
  z-index: 1;
  width: min(460px, calc(100% - 32px));
  padding: 36px 34px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  backdrop-filter: blur(24px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

  position: relative;
  width: 138px;
  height: 138px;
  margin: 2px auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.15) 34%, rgba(255, 255, 255, 0) 70%);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
  animation: loaderFloat 4.2s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0) rotateX(12deg); }
  50% { transform: translateY(-7px) rotateX(12deg); }
}

  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 224, 161, 0.38), rgba(52, 224, 161, 0));
  filter: blur(8px);
}

  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.03);
}

  position: absolute;
  left: 31px;
  top: 59px;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(94, 234, 212, 0.95), rgba(249, 115, 22, 0.95), rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.55);
  transform: rotate(-18deg);
}

  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
  background: linear-gradient(180deg, #34e0a1, #0f766e);
}


  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  color: #fff;
  letter-spacing: -0.02em;
}

  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

  margin-top: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

  width: 100%;
  height: 8px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.loader-progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #34e0a1, #f5b942);
  transition: width 0.25s var(--ease);
}

  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}

  margin-top: 6px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

/* Compact spinner and meta layout for loader */
  width: 84px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
}

  width: 56px;
  height: 56px;
  margin: 8px auto 6px;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,255,255,0.95);
  animation: loaderSpin 1s linear infinite;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}


/* —— Home hero —— */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.home-hero {
  min-height: calc(100vh - var(--header-h));
  padding-bottom: 28px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  padding: 48px 0 56px;
  width: 100%;
}

.home-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.82) 70%, rgba(11, 18, 32, 0.95) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.45) 55%, transparent 100%);
}

.home-hero .hero-content {
  padding: 0;
  width: auto;
  margin: 0;
}

.home-hero .hero-content h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

.home-hero .hero-badge-modern {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats div {
  flex: 1;
  min-width: 100px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-search--card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  grid-template-columns: 1fr;
}

.hero-search--card .search-field {
  min-height: auto;
}

.hero-search__hint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 4px 0 0;
}

.hero-search--card .btn-search {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s, background 0.25s;
}

.hero-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand);
}

.home-trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-top: -1px;
}

.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-trust__grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.home-trust__grid span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
}

.home-categories {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.home-page .categories-section .category-card {
  min-height: 120px;
  font-size: 15px;
}

.home-page .destinations-section {
  background: var(--bg);
}

.home-page .tours-section {
  background: var(--surface);
}

.home-page .why-section {
  background: var(--bg);
}

.home-page .reviews-section {
  background: var(--surface);
}

.home-page .stats-section .stats-grid {
  padding: 0;
}

.home-page .stat-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 72px;
  }

  .hero-search--card {
    order: 2;
  }

  .home-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-trust__grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
  }
}
.hero-carousel { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s var(--ease), transform 8s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.5) 50%, rgba(11,18,32,0.25) 100%);
  z-index: 1;
}
.hero-particle-canvas, .page-hero-canvas, .hero-spline-shell { display: none !important; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.hero-badge-modern, .page-badge, .mini-label, .section-heading span, .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(13, 148, 136, 0.35);
  color: #99f6e4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-content h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  max-width: 14ch;
  margin-bottom: 20px;
}
.hero-content p {
  max-width: 540px;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.hero-buttons, .page-hero-actions, .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-search:not(.hero-search--card) {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}
.search-field, .field {
  padding: 12px 14px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.search-field label, .field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.search-field input, .search-field select,
.field input, .field select, .field textarea {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-weight: 600;
  color: var(--ink);
}
.hero-professional-note {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 520px;
}
.hero-professional-note strong { display: block; margin-bottom: 4px; }
.hero-professional-note span { font-size: 14px; color: rgba(255,255,255,0.7); }

/* —— Page hero —— */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  color: #fff;
  background: var(--ink) url("https://images.unsplash.com/photo-1588598198321-9735fd52455b?auto=format&fit=crop&w=1800&q=80") center/cover;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,18,32,0.9), rgba(15,118,110,0.75));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin: 12px 0 16px; }
.page-hero p { max-width: 560px; color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* —— Sections —— */
.section { padding: 80px 0; }
.section-soft { background: var(--surface-2); }
.section-heading, .section-head {
  margin-bottom: 40px;
  max-width: 640px;
}
.section-heading span { color: var(--brand-dark); background: var(--brand-light); border: none; }
.section-heading h2, .section-head h2, .section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--ink);
  margin-top: 12px;
}
.section-heading p, .section-subtitle { color: var(--muted); margin-top: 12px; }
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.see-all-link, .see-link { color: var(--brand); font-weight: 700; font-size: 15px; }
.see-all-link:hover { color: var(--accent); }

/* —— Category grid —— */
.category-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.category-card, .cat-card {
  padding: 24px 16px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.category-card h3 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--ink); }
.category-icon { display: none; }

/* —— Destination cards —— */
.destination-grid, .dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.destination-card, .dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.destination-card img, .dest-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease);
}
.destination-card:hover img { transform: scale(1.06); }
.destination-content, .dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(11,18,32,0.9) 0%, transparent 55%);
  color: #fff;
}
.destination-content h3, .dest-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.destination-content p { font-size: 14px; opacity: 0.85; margin-bottom: 10px; }
.destination-content a {
  font-weight: 700;
  font-size: 14px;
  color: #5eead4;
}

/* —— Tour cards —— */
.tour-grid, .activity-grid, .compact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tour-card, .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-image, .media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour-image img, .media img { width: 100%; height: 100%; }
.tour-badge, .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
}
.tour-badge.green { background: var(--brand); }
.tour-badge.blue { background: #3b82f6; }
.tour-badge.orange { background: #f59e0b; }
.heart-btn, .heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  font-size: 18px;
  box-shadow: var(--shadow);
}
.heart-btn.active, .heart.active { color: #ef4444; }
.tour-body { padding: 20px; }
.tour-category, .category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
}
.tour-body h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-description { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.rating { font-size: 14px; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.tour-meta { display: flex; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tour-footer strong { font-size: 1.35rem; color: var(--ink); }
.tour-footer small, .tour-footer span { font-size: 12px; color: var(--muted); display: block; }

/* —— Why / mission / features —— */
.why-grid, .mission-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card, .mission-card, .feature-card, .team-card, .route-card, .vehicle-card, .contact-card, .fleet-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s, transform 0.25s;
}
.why-card:hover, .mission-card:hover, .contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-card h3, .mission-card h3, .contact-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.mission-grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
.main-mission-card { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border: none; }
.main-mission-card h3, .main-mission-card p { color: #fff; }

/* —— Reviews —— */
.review-grid, .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.review-stars { color: var(--gold); margin-bottom: 14px; }
.review-user {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}
.review-user img, .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-user h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; }
.review-user span { font-size: 13px; color: var(--muted); }

/* —— Stats —— */
.stats-section {
  padding: 0;
  background: transparent;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 0;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.stat-card strong { display: block; font-size: 2.25rem; font-weight: 800; color: var(--brand); }
.stat-card span { font-size: 14px; color: var(--muted); margin-top: 6px; display: block; }
.stats { background: linear-gradient(135deg, var(--ink), var(--brand-dark)); border-radius: var(--radius-xl); padding: 40px; color: #fff; }

/* —— CTA —— */
.custom-cta, .cta, .transfer-cta, .fleet-cta {
  position: relative;
  margin: 0 auto 80px;
  width: min(var(--container), calc(100% - 40px));
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--ink) url("https://images.unsplash.com/photo-1546708973-b339540b5162?auto=format&fit=crop&w=1400&q=80") center/cover;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,18,32,0.88), rgba(13,148,136,0.7));
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2, .custom-cta h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 12px 0; }
.cta-content p { color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 24px; }
.cta-content > span { background: rgba(255,255,255,0.15); color: #fff; border: none; }

/* —— Forms —— */
.form-card, .transfer-form, .contact-form, .custom-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.form-group input, .form-group select, .form-group textarea,
.form-card input, .form-card select, .form-card textarea,
.transfer-form input, .transfer-form select, .transfer-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-error, .error-msg { color: #dc2626; font-size: 14px; font-weight: 600; margin: 12px 0; }

/* —— Layouts —— */
.about-story-layout, .transfer-quote-layout, .market-layout, .detail-layout, .contact-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}
.about-story-layout { grid-template-columns: 1fr 1fr; }
.about-story-image img { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 4/5; }
.transfer-quote-layout { grid-template-columns: 1fr 1.1fr; }
.market-layout { grid-template-columns: 280px 1fr; }
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.detail-layout { grid-template-columns: 1fr 360px; }
.booking-side { position: sticky; top: calc(var(--header-h) + 20px); }
.detail-box {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.about-highlight-box {
  margin-top: 20px;
  padding: 20px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.transfer-benefits { display: grid; gap: 16px; margin-top: 24px; }
.transfer-benefits div {
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.transfer-benefits strong { display: block; color: var(--brand-dark); margin-bottom: 4px; }
.transfer-benefits span { font-size: 14px; color: var(--muted); }

/* —— Fleet / vehicles —— */
.vehicle-grid, .route-grid, .fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-vehicle-card, .vehicle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fleet-image { aspect-ratio: 16/10; }

/* —— Footer —— */
.site-footer, .footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 40px;
}
.footer-brand p { margin: 16px 0; max-width: 280px; line-height: 1.7; }
.footer-column h3, .footer h4, .footer-newsletter h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-column a, .footer a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-column a:hover, .footer a:hover { color: #5eead4; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 700;
}
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

/* —— Modal —— */
.booking-modal, .modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(11, 18, 32, 0.6);
  backdrop-filter: blur(8px);
}
.booking-modal.show, .booking-modal.active, .modal.show {
  display: grid;
}
.booking-box, .modal-box {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close, .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  font-size: 24px;
  line-height: 1;
}
.modal-subtitle { color: var(--muted); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* —— Floating —— */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

/* —— Toast —— */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 3000;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* —— FAQ —— */
.faq details {
  padding: 20px 24px;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.faq summary { font-weight: 700; cursor: pointer; }

/* —— Filters / tours page —— */
.results-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.sort { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.check { display: flex; gap: 10px; align-items: center; margin: 10px 0; font-size: 14px; }
.filter-group { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.filter-group h4 { margin-bottom: 12px; font-size: 14px; }

/* —— Scroll reveal (keep JS working) —— */
.scroll-card { opacity: 1; transform: none; }
.hero-reveal { opacity: 1; transform: none; }

/* —— Responsive —— */
@media (max-width: 1024px) {
  .destination-grid, .dest-grid, .tour-grid, .activity-grid, .why-grid, .mission-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hero-search .btn-search { grid-column: 1 / -1; }
  .market-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-story-layout, .transfer-quote-layout, .detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 12px 0; }
  .header-wrapper {
    height: auto;
    padding: 0;
  }
  .site-logo { height: 40px; }
  .main-nav, .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 999;
    gap: 12px;
  }
  .main-nav.active, .nav-links.active { display: flex; }
  .main-nav a, .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }
  .mobile-menu-btn, .hamburger { display: grid; place-items: center; }
  .header-actions .btn:not(.mobile-menu-btn) { display: none; }
  .lang-pill { display: none; }
}

  .destination-grid, .tour-grid, .review-grid, .stats-grid, .vehicle-grid, .footer-grid,
  .category-scroll { grid-template-columns: 1fr; }
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .hero-search { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 0 56px; }
  .section { padding: 56px 0; }
  .custom-cta, .cta { padding: 40px 24px; }
}

/* —— Fleet —— */
.fleet-grid, .fleet-vehicle-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card, .fleet-vehicle-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fleet-vehicle-card.popular { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-light); }
.popular-label {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
}
.fleet-body { padding: 22px; }
.fleet-body h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 800; }
.fleet-model { color: var(--muted); font-size: 14px; margin: 6px 0 14px; }
.fleet-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.fleet-features span {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--bg);
  border-radius: 999px;
  color: var(--ink-soft);
}
.fleet-rate { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.fleet-rate strong { font-size: 1.25rem; color: var(--brand-dark); }
.fleet-badge { position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; background: var(--ink); color: #fff; }
.fleet-badge.green { background: var(--brand); }
.fleet-badge.blue { background: #3b82f6; }
.fleet-badge.dark { background: var(--ink); }
.fleet-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.fleet-hero-stats div {
  padding: 12px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.fleet-hero-stats strong { display: block; font-size: 1.25rem; }
.fleet-note {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* —— Contact —— */
.contact-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card a { color: var(--brand); font-weight: 700; margin-top: 8px; display: inline-block; }

/* —— Itinerary —— */
.itinerary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.itinerary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.itinerary-card img { aspect-ratio: 16/10; width: 100%; }
.itinerary-body { padding: 22px; }
.itinerary-body h3 { font-family: var(--font-sans); font-weight: 700; margin-bottom: 8px; }

/* —— Team / values —— */
.team-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card, .team-card { padding: 24px; background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line); }

/* —— Tour results —— */
.tour-result-card { /* inherits tour-card */ }
.tour-list { display: grid; gap: 24px; }
.tour-filters-section .sidebar { max-height: none; }

/* =====================================================
   Private Tours page (tours.html)
===================================================== */

.tours-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1546708973-b339540b5162?auto=format&fit=crop&w=1800&q=80");
}

.marketplace-section {
  background: var(--bg);
}

.marketplace-layout,
.market-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 32px;
  align-items: start;
}

.filter-sidebar,
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.filter-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.filter-header p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.filter-sidebar .filter-group,
.filter-sidebar .filter-group + .filter-group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.filter-sidebar .filter-group:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.filter-group label[for="tourSearchInput"] {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.filter-group input[type="text"],
.filter-group input:not([type="checkbox"]):not([type="range"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  outline: none;
}

.filter-group input[type="text"]:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}

.filter-group h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.checkbox-row,
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
}

.checkbox-row input,
.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.range-box {
  margin-top: 8px;
}

.range-box input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.results-area {
  min-width: 0;
}

.results-topbar,
.results-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.results-topbar h3,
.results-top h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.results-topbar p,
.results-top p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

#sortSelect,
.sort {
  min-width: 180px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

#sortSelect:focus {
  border-color: var(--brand);
}

.tour-grid.results-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tours-page .tour-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tours-page .tour-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tours-page .tour-footer {
  margin-top: auto;
}

.tours-page .custom-cta {
  margin-bottom: 48px;
}

/* Mobile: filters on top */
@media (max-width: 1024px) {
  .marketplace-layout,
  .market-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar,
  .sidebar {
    position: static;
    max-height: none;
  }

  .tour-grid.results-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1280px) {
  .tour-grid.results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Custom tour page */
.custom-page-hero {
  background-image: url("https://images.unsplash.com/photo-1566296314736-6eaac1ca0cb9?auto=format&fit=crop&w=1800&q=80");
}

.custom-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.custom-feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.custom-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.custom-feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.custom-feature-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.custom-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.custom-form-sidebar {
  padding: 28px;
  background: linear-gradient(160deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius-xl);
}

.custom-form-sidebar h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 12px 0;
  color: #fff;
}

.custom-form-sidebar .mini-label {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.custom-form-sidebar p { color: rgba(255,255,255,0.85); }

.planning-steps { margin-top: 24px; display: grid; gap: 16px; }

.planning-step {
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
}

.planning-step strong { display: block; margin-bottom: 4px; }

.custom-tour-form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .custom-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .custom-feature-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .fleet-grid, .contact-card-grid { grid-template-columns: repeat(2, 1fr); }
  .itinerary-grid { grid-template-columns: 1fr; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
