/* =========================
   PRICES PAGE
   ========================= */

/* ===== PAGE WIDTH LOCK ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
}

.page-prices {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.page-prices .navbar {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-prices .navbar.solid {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
}

/* On white pages, keep nav text/logo dark */
.page-prices .nav-links a {
  color: #000;
}

.page-prices .logo {
  filter: brightness(0) invert(0);
}

/* Make burger visible on white background */
@media (max-width: 950px) {
  .page-prices .menu-toggle span {
    background: #000;
  }
}

/* ===== MAIN LAYOUT ===== */
.prices-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 1.5rem 4rem;
  overflow-x: hidden;
}

/* ===== INTRO ===== */
.prices-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.prices-intro h1 {
  font-family: "Permanent Marker", cursive;
  font-size: 2.8rem;
  margin-bottom: 0.85rem;
}

.prices-intro p {
  line-height: 1.85;
  color: #222;
}

/* =========================
   PRICE LIST
   ========================= */

.prices-list {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.price-box {
  --stripW: 340px;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #f6f6f6;
  border-radius: 18px;
  overflow: hidden;
  padding: 0.9rem 1.5rem 0.9rem calc(var(--stripW) + 20px);
}

.price-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--stripW);
  height: 100%;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background: #f6f6f6;
}

.price-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.price-box h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  font-size: 1rem;
}

.price-row + .price-row {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.price-row span {
  color: #222;
}

.price-row strong {
  font-size: 1.05rem;
}

.price-note {
  font-size: 0.75rem;
  color: #444;
  margin: -1.1rem 0 0.6rem 0;
}

/* ===== VIEW TOUR BUTTON ===== */
.price-actions {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 0.9rem;
}

.price-view-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.price-view-btn:hover {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* =========================
   BOOKING & CANCELLATION POLICY
   ========================= */

.prices-policy {
  max-width: 820px;
  margin: 3rem auto 0;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.prices-policy h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.prices-policy ul {
  margin-left: 1.2rem;
}

.prices-policy li {
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

/* =========================
   CTA
   ========================= */

.prices-cta {
  margin-top: 3.5rem;
  background: #000;
  color: #fff;
  border-radius: 22px;
  padding: 2.4rem 1.6rem;
  text-align: center;
}

.prices-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.prices-cta p {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1.35rem;
}

.prices-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.prices-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.prices-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #000;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  width: 100%;
  max-width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1.8rem;
  margin-top: 4rem;
  overflow: hidden;
}

.footer-legal {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  line-height: 1.6;
  text-decoration: none;
  border-bottom: none;
  outline: none;
}

.footer-legal span,
.footer-legal a,
.footer-link {
  text-decoration: none;
  border-bottom: none;
  outline: none;
}

.footer-link {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.footer-link:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER PARTNERS
   ========================= */

.footer-partners {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 1.2rem;
  overflow: visible;
}

.footer-partners-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin: 0 0 0.75rem 0;
}

.footer-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  column-gap: 2rem;
  overflow: visible;
}

.footer-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.footer-logos img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: block;
}

.footer-logos img[alt="ION"] {
  height: 155px;
}

.footer-logos img[alt="SolarGuard"] {
  height: 72px;
}

.footer-logos img[alt="ROC Bike Customs"] {
  height: 38px;
}

.footer-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {
  html,
  body,
  .page-prices,
  main,
  section,
  .prices-main,
  .prices-list,
  .price-box,
  .prices-policy,
  .prices-cta,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    touch-action: pan-y;
  }

  .prices-main {
    padding: 120px 1rem 3.5rem;
  }

  .prices-intro {
    margin-bottom: 2.4rem;
  }

  .prices-intro h1 {
    font-size: 2.35rem;
  }

  .prices-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .price-box {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .price-strip {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 14px;
    margin: 0 auto 1rem;
  }

  .price-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .price-box h2 {
    font-size: 1.8rem;
  }

  .price-row {
    font-size: 0.95rem;
  }

  .price-actions {
    justify-content: center;
    margin-top: 0.8rem;
  }

  .price-view-btn {
    margin-left: 0;
    width: 100%;
    max-width: 260px;
  }

  .prices-policy {
    margin-top: 2.7rem;
  }

  .prices-policy h2 {
    font-size: 1.8rem;
  }

  .prices-policy ul {
    margin-left: 1rem;
  }

  .prices-cta {
    padding: 2rem 1rem;
  }

  .prices-cta h2 {
    font-size: 1.9rem;
  }

  .prices-btn {
    width: 100%;
    max-width: 260px;
  }

  .footer-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.75rem;
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .footer-legal {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .footer-legal .footer-break {
    display: block;
    height: 0;
  }

  .footer-legal .footer-sep {
    display: none;
  }
}

@media (min-width: 601px) {
  .footer-legal .footer-break {
    display: none;
  }

  .footer-legal .footer-sep {
    display: inline;
  }
}

/* ===== KEEP MOBILE FOOTER LOGO SIZES CONSISTENT ACROSS ALL PAGES ===== */
@media (max-width: 700px) {
  .site-footer .footer-logos img[alt="ION"] {
    height: 76px !important;
    max-height: none !important;
    max-width: 120px !important;
  }

  .site-footer .footer-logos img[alt="SolarGuard"] {
    height: 50px !important;
    max-height: none !important;
    max-width: 110px !important;
  }

  .site-footer .footer-logos img[alt="ROC Bike Customs"] {
    height: 28px !important;
    max-height: none !important;
    max-width: 120px !important;
  }
}