/* ==========================================================================
   Adventure Nomad — Components CSS
   Shared components: nav, footer, buttons, cards, forms, cookie banner
   ========================================================================== */

/* --------------------------------------------------------------------------
   Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-bar a:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 180, 200, 0.12);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--teal);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--teal);
}

.nav-link.active::after {
  width: 100%;
}

/* Nav Book Now CTA */
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-teal);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 180, 200, 0.40);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger Button (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-hamburger:hover {
  background: var(--teal-light);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Menu */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  box-shadow: var(--shadow);
  padding: var(--space-4) var(--content-padding) var(--space-5);
  z-index: 99;
}

.nav-mobile-menu.is-open {
  display: block;
}

.nav-mobile-menu .nav-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 1rem;
}

.nav-mobile-menu .nav-link:last-child {
  border-bottom: none;
}

.nav-mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-top: var(--space-4);
  padding: 14px 22px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

/* Primary */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 180, 200, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary / outline */
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 12px 30px;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

/* Ghost (on dark backgrounds) */
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* Large variant */
.btn-lg {
  font-size: 1.05rem;
  padding: 17px 40px;
}

/* Small variant */
.btn-sm {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* --------------------------------------------------------------------------
   Booqable widget overrides
   -------------------------------------------------------------------------- */

.booqable-datepicker,
.booqable-product-button {
  color: var(--charcoal);
  max-width: 100%;
}

.booqable-datepicker *,
.booqable-product-button * {
  color: inherit;
}

.booqable-product-list-notice {
  color: var(--charcoal);
}

.booqable-product-list-notice.clickable {
  color: white;
}

/* --------------------------------------------------------------------------
   Floating Mobile "Book Now" Button
   -------------------------------------------------------------------------- */
.btn-float-mobile {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--teal);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0, 180, 200, 0.5);
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-float-mobile:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 40px rgba(0, 180, 200, 0.6);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal-mid);
}

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

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

/* Placeholder image (used until real photos available) */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 50%, var(--teal-deep) 100%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-4);
}

.card-body {
  padding: var(--space-5) var(--space-6);
}

.card-body h3 {
  margin-bottom: var(--space-3);
}

.card-body p {
  margin-bottom: var(--space-4);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

/* Review card variant */
.card-review {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: var(--space-6);
  backdrop-filter: blur(4px);
}

.card-review .stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-3);
}

.card-review .star {
  color: var(--gold);
  font-size: 1.1rem;
}

.card-review blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.card-review cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Fleet card variant */
.card-fleet {
  position: relative;
  overflow: hidden;
}

.card-fleet .card-img {
  aspect-ratio: 4 / 3;
}

.card-fleet .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5) var(--space-5) var(--space-5);
  background: linear-gradient(to top, rgba(26, 31, 46, 0.95) 0%, rgba(26, 31, 46, 0.5) 60%, transparent 100%);
  color: var(--white);
}

.card-fleet .card-overlay h3 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.card-fleet .card-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
}

/* --------------------------------------------------------------------------
   Section Labels
   -------------------------------------------------------------------------- */
/* Already defined in main.css as .label */

/* --------------------------------------------------------------------------
   Tag Pills
   -------------------------------------------------------------------------- */
.tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-deep);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.tag-dark {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Hero Sections
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 75vh;
}

.hero--sub {
  min-height: 50vh;
}

.hero--vehicle {
  min-height: 40vh;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 15, 30, 0.78) 0%,
    rgba(10, 15, 30, 0.25) 65%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-10) var(--content-padding);
}

.hero-content .label {
  color: var(--teal);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* Hero location badge */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Slider controls */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-slide.is-active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  display: none;
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.is-active {
  background: var(--white);
  width: 24px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   USP Strip
   -------------------------------------------------------------------------- */
.usp-strip {
  background: var(--charcoal);
  padding: var(--space-6) var(--content-padding);
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  text-align: center;
  min-width: 120px;
}

.usp-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 180, 200, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.usp-icon svg {
  width: 22px;
  height: 22px;
}

.usp-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   Availability / Booking Strip
   -------------------------------------------------------------------------- */
.availability-strip {
  background: var(--charcoal-mid);
  padding: var(--space-3) var(--content-padding);
}

.availability-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.availability-strip h3 {
  color: var(--white);
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Booqable widget wrapper */
.booking-widget-container {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}



/* --------------------------------------------------------------------------
   How It Works — Step Numbers
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.step {
  text-align: center;
  padding: var(--space-5);
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 56px;  /* padding-top (24px) + half circle height (32px) = midpoint of number circle */
  right: -24px;
  width: 48px;
  height: 2px;
  background: var(--teal-mid);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-teal);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: var(--space-3);
}

.step p {
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light variant (on white/off-white backgrounds) */
.faq-list--light .faq-item {
  border-bottom: 1px solid var(--light-grey);
}

.faq-list--light .faq-item:first-child {
  border-top: 1px solid var(--light-grey);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.faq-list--light .faq-trigger {
  color: var(--charcoal);
}

.faq-trigger:hover {
  color: var(--teal);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--teal);
}

.faq-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.is-open {
  max-height: 500px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: var(--space-5);
  line-height: 1.75;
}

.faq-answer ul {
  color: rgba(255, 255, 255, 0.75);
  margin: var(--space-3) 0 var(--space-3) var(--space-5);
  line-height: 1.75;
}

.faq-answer li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2);
}

.faq-answer a {
  color: var(--teal);
}

.faq-answer strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.faq-list--light .faq-answer p,
.faq-list--light .faq-answer ul,
.faq-list--light .faq-answer li {
  color: var(--warm-grey);
}

.faq-list--light .faq-answer strong {
  color: var(--charcoal);
}

.faq-list--light .faq-answer a {
  color: var(--teal-deep);
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--teal-deep);
  padding: var(--space-9) var(--content-padding);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto var(--space-6);
}

.cta-band-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Location / Map Section
   -------------------------------------------------------------------------- */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.location-map {
  background: var(--charcoal-mid);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}

.location-details {
  background: var(--charcoal);
  padding: var(--space-9) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-details .label {
  color: var(--teal);
}

.location-details h2 {
  color: var(--white);
  margin-bottom: var(--space-5);
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
}

.footer-upper {
  padding: var(--space-9) var(--content-padding);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.2rem;
  display: block;
  margin-bottom: var(--space-4);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
}

/* Footer lower strip */
.footer-lower {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-4) var(--content-padding);
}

.footer-lower-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--teal);
}

/* --------------------------------------------------------------------------
   Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-top: 2px solid var(--teal);
  padding: var(--space-5) var(--content-padding);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin: 0;
}

.cookie-text a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Info Box (e.g. EU travel note)
   -------------------------------------------------------------------------- */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-5) var(--space-6);
}

.info-box h4 {
  color: var(--teal-deep);
  margin-bottom: var(--space-2);
}

.info-box p {
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* --------------------------------------------------------------------------
   Price Display
   -------------------------------------------------------------------------- */
.price-display {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.price-display .price-unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-grey);
  margin-left: var(--space-2);
}

/* --------------------------------------------------------------------------
   Feature List (vehicle specs)
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-5);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 0.92rem;
  color: var(--warm-grey);
  line-height: 1.4;
  padding: var(--space-2) 0;
}

.feature-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

/* --------------------------------------------------------------------------
   Spec Pills (berths, length, height)
   -------------------------------------------------------------------------- */
.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.spec-pill {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 200, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* --------------------------------------------------------------------------
   Responsive — Mobile Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-upper {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

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

  .step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop links */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* Show floating mobile button */
  .btn-float-mobile {
    display: block;
  }

  /* Hero adjustments — center content vertically on mobile */
  .hero {
    align-items: center;
  }

  .hero-content {
    padding: var(--space-6) var(--content-padding);
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1,
  .hero-content .lead {
    text-align: left;
  }

  .hero-location {
    display: flex;
    width: fit-content;
  }

  .hero-content .label {
    text-align: left;
    display: block;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Location */
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 260px;
  }

  .location-details {
    padding: var(--space-7) var(--content-padding);
  }

  /* Footer */
  .footer-upper {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-lower-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CTA band */
  .cta-band-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-band-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Availability strip */
  .availability-strip {
    padding: var(--space-4) var(--content-padding);
    text-align: center;
  }

  .booking-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn-ghost {
    align-self: center;
  }

  .availability-inner {
    flex-direction: column;
    align-items: center;
  }

  .availability-strip h3 {
    white-space: normal;
  }

  /* Cookie banner */
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 65vh;
  }

  .hero--sub {
    min-height: 44vh;
  }

  .usp-list {
    flex-wrap: nowrap;
    gap: var(--space-3);
    padding: 0 var(--space-2);
  }

  .usp-item {
    flex: 1;
    min-width: 0;
    gap: var(--space-1);
  }

  .usp-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
  }

  .usp-icon svg {
    width: 16px;
    height: 16px;
  }

  .usp-item span {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }
}
