:root {
  --ink: #2c2c2c;
  --sand: #ce9e62;
  --sunset: #c1432e;
  --ocean: #4b6777;
  --sky: #ce9e62;
  --white: #ffffff;
  --muted: #4b6777;
  --line: rgba(44, 44, 44, 0.12);
  --pop-accent: #c1432e;
  --pop-deep: #4b6777;
    --bs-primary: #c1432e;
  --bs-primary-rgb: 193, 67, 46;
  --bs-primary-text-emphasis: #eadfd2;
  --bs-primary-bg-subtle: #4a1f17;
  --bs-primary-border-subtle: #8f3324;
  --bs-link-color: #4b6777;
  --bs-link-hover-color: #3d5562;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 0% -10%, rgba(193, 67, 46, 0.16), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(75, 103, 119, 0.16), transparent 55%),
    linear-gradient(180deg, #fffdf7 0%, #f7fbff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.brand-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

.top-nav {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(26, 31, 43, 0.08);
}

.top-nav .nav-link {
  color: var(--ink);
  font-weight: 700;
  margin: 0 0.4rem;
  transition: color 0.2s ease;
}

.top-nav .nav-link:hover,
.top-nav .nav-link:focus,
.top-nav .nav-link.is-active-nav {
  color: var(--ocean);
}

.top-nav .nav-link.is-active-nav {
  box-shadow: inset 0 -2px 0 0 var(--pop-accent);
}

.btn-main {
  background: var(--sunset);
  border: 0;
  color: var(--white);
  font-weight: 800;
  padding: 0.8rem 1.2rem;
  border-radius: 0.9rem;
  box-shadow: 0 12px 24px rgba(193, 67, 46, 0.28);
}

.btn-main:hover,
.btn-main:focus {
  background: #9f3423;
  color: var(--white);
}

.nav-spacer {
  height: 70px;
}

.cru-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-banner {
  background: linear-gradient(135deg, #c1432e 0%, #4b6777 100%);
  color: #ffffff;
}

.hero-banner .lead,
.hero .lead,
.cta-section p,
.cta-section h2 {
  color: #eef5ff;
}

.hero-banner-image,
.hero-vehicle-image {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.booking-hero-image,
.hero-rotator-image {
  transition: opacity 0.45s ease-in-out;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(193, 67, 46, 0.84), rgba(75, 103, 119, 0.82)), url('../images/CA-cover-shot.jpg') center/cover no-repeat;
  position: relative;
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 700;
}

.hero p {
  max-width: 600px;
  font-size: 1.1rem;
}

.content-hero {
  background: linear-gradient(135deg, #c1432e 0%, #4b6777 100%);
  color: #ffffff;
}

.content-hero .lead,
.content-hero h1,
.content-hero p {
  color: #ffffff;
}

.feature-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eadfd2;
  color: #c1432e;
  font-size: 1.4rem;
}

.service-item {
  background: #ffffff;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.cta-section {
  background: linear-gradient(135deg, #c1432e 0%, #4b6777 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 3rem;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.showcase-shell {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.12s;
}

.reveal.delay-2 {
  animation-delay: 0.24s;
}

.reveal.delay-3 {
  animation-delay: 0.36s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-card {
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.booking-card .form-control,
.booking-card .form-select,
.contact-card .form-control,
.contact-card textarea {
  border-radius: 12px;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: #4b6777;
  box-shadow: 0 0 0 0.2rem rgba(75, 103, 119, 0.18);
}

.ride-feature {
  border-radius: 16px;
  border: 1px solid rgba(75, 103, 119, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.contact-card {
  border: none;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.contact-point {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-point strong {
  display: block;
  color: #4b6777;
  margin-bottom: 0.2rem;
}

.contact-intro {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(193, 67, 46, 0.12);
  color: #2c2c2c;
  font-weight: 700;
}

.contact-cta {
  background: linear-gradient(135deg, #c1432e 0%, #4b6777 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
}

.info-card {
  border-radius: 16px;
  border: 1px solid #e9ecef;
}

.spotlight-list li {
  margin-bottom: 12px;
}

.spotlight-list-offset {
  margin-left: 1rem;
}

.hero-floating-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 650px;
}

.hero-floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.1;
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-floating-btn:hover,
.hero-floating-btn:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.hero-rotator-shell {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-rotator-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 1;
}

.hero-rotator-image.is-fading {
  opacity: 0.2;
}

.hero-rotator-caption {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  margin: 0;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(3px);
}

.destination-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin: 0.2rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.destination-grid {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.destination-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.destination-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eadfd2, #eadfd2);
  overflow: hidden;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-image-fit {
  object-fit: contain;
  padding: 0.35rem;
  background: #f5f1ea;
}

.destination-body {
  padding: 0.9rem 0.95rem 1rem;
}

.destination-name {
  font-weight: 800;
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
}

.destination-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.destination-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ocean);
  text-decoration: none;
}

.destination-link:hover,
.destination-link:focus {
  color: #3d5562;
  text-decoration: underline;
}

.route-status-panel {
  background: linear-gradient(135deg, rgba(193, 67, 46, 0.08), rgba(75, 103, 119, 0.08));
  border: 1px solid rgba(75, 103, 119, 0.18);
}

.route-status-badge {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.widget-showcase-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.widget-showcase-card.is-active {
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  transform: translateY(-6px);
}

.widget-tone-sunset {
  background: linear-gradient(140deg, rgba(193, 67, 46, 0.16), rgba(193, 67, 46, 0.04));
}

.widget-tone-ocean {
  background: linear-gradient(140deg, rgba(75, 103, 119, 0.16), rgba(75, 103, 119, 0.04));
}

.widget-tone-teal {
  background: linear-gradient(140deg, rgba(206, 158, 98, 0.16), rgba(206, 158, 98, 0.04));
}

.widget-stat-card {
  border: 0;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.widget-stat-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(75, 103, 119, 0.18);
  background: linear-gradient(135deg, rgba(193, 67, 46, 0.1), rgba(75, 103, 119, 0.1));
}

.widget-summary {
  background: linear-gradient(135deg, rgba(193, 67, 46, 0.08), rgba(75, 103, 119, 0.08));
  border-color: rgba(75, 103, 119, 0.18);
}

.widget-summary-count {
  background: #4b6777;
  color: #ffffff;
}

.widget-metric {
  background: #ffffff;
}

.widget-metric-accent {
  color: #4b6777;
}

.widget-checkpoint {
  background: rgba(148, 163, 184, 0.12);
}

.widget-checkpoint.is-ready {
  background: rgba(34, 197, 94, 0.12);
}

.contact-helper {
  background: linear-gradient(135deg, rgba(193, 67, 46, 0.1), rgba(75, 103, 119, 0.08));
  border: 1px solid rgba(75, 103, 119, 0.12);
}

.contact-helper-card {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-helper-card.is-active {
  box-shadow: 0 16px 36px rgba(75, 103, 119, 0.16);
  transform: translateY(-4px);
}

.widget-validation {
  color: #2c2c2c;
}

.widget-validation.is-valid {
  color: #15803d;
}

.widget-submit-state {
  background: rgba(251, 146, 60, 0.1);
}

.widget-submit-state.is-ready {
  background: rgba(34, 197, 94, 0.1);
}

.call-cta,
.whatsapp-cta {
  position: fixed;
  right: 16px;
  z-index: 9997;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  max-width: 148px;
  white-space: nowrap;
  background: #ffffff;
  color: #2c2c2c;
  border: 1px solid rgba(44, 44, 44, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.call-cta {
  bottom: 86px;
}

.whatsapp-cta {
  bottom: 24px;
  background: #eadfd2;
  color: #2c2c2c;
  border-color: rgba(75, 103, 119, 0.35);
}

.call-cta .call-icon,
.whatsapp-cta .wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.call-cta svg,
.whatsapp-cta svg {
  width: 13px;
  height: 13px;
  display: block;
  fill: currentColor;
}

.call-cta:hover,
.call-cta:focus,
.whatsapp-cta:hover,
.whatsapp-cta:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

body.pop-mode-excursion::before,
body.pop-mode-home::before {
  content: '';
  position: fixed;
  inset: -18% -10% auto auto;
  width: 42vw;
  height: 42vw;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 62%), linear-gradient(120deg, rgba(193, 67, 46, 0.2), rgba(75, 103, 119, 0.06));
  filter: blur(4px);
  animation: popDrift 16s ease-in-out infinite alternate;
}

.pop-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--pop-accent), var(--pop-deep));
  box-shadow: 0 0 14px rgba(75, 103, 119, 0.5);
}

.pop-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.68s ease, transform 0.68s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.pop-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pop-glow {
  position: relative;
  isolation: isolate;
}

.pop-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(193, 67, 46, 0.25), rgba(75, 103, 119, 0.2));
  z-index: -1;
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pop-glow:hover::before {
  opacity: 1;
}

.pop-float {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pop-float:hover {
  transform: translateY(-3px);
  box-shadow: var(--pop-shadow);
}

.pop-focus-ring {
  outline: none;
  box-shadow: 0 0 0 0.3rem rgba(193, 67, 46, 0.22);
}

.pop-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, var(--pop-accent), var(--pop-deep));
  mix-blend-mode: multiply;
  opacity: 0.75;
  transform: translate(-50%, -50%);
}

.hero-pop {
  will-change: transform;
}

.pop-cta-pulse {
  animation: popCtaPulse 2.4s ease-in-out infinite;
}

footer {
  background: #eadfd2;
  padding: 1.6rem 0;
}

@keyframes popDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-4vw, 3vh, 0) scale(1.07);
  }
}

@keyframes popCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(193, 67, 46, 0);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(193, 67, 46, 0.16);
  }
}

@media (max-width: 991px) {
  .hero-banner {
    text-align: center;
  }

  .hero-banner img {
    margin-top: 1rem;
  }
}

@media (max-width: 575px) {
  .call-cta,
  .whatsapp-cta {
    right: 10px;
    max-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }

  .call-cta {
    bottom: 78px;
  }

  .whatsapp-cta {
    bottom: 16px;
  }

  .call-cta span:last-child,
  .whatsapp-cta span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pop-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .booking-hero-image,
  .hero-rotator-image {
    transition: none;
  }
}
