/* ==========================================================================
   Momentum Cycle — stylesheet
   Brand colours pulled from the original site: cyan accent, near-black ink
   ========================================================================== */

:root {
  --ink: #111013;
  --ink-soft: #2d2c2f;
  --grey: #424045;
  --grey-light: #6b6a70;
  --line: #e5e5e5;
  --paper: #ffffff;
  --paper-soft: #f7f7f8;
  --cyan: #5be1e6;
  --cyan-dark: #29b7bd;
  --cyan-ink: #063638;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 30px -12px rgba(17, 16, 19, 0.18);
  --shadow-sm: 0 4px 14px -6px rgba(17, 16, 19, 0.16);
  --max: 1160px;
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 16px; color: var(--grey); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cyan-dark);
  display: inline-block;
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--cyan);
  color: var(--cyan-ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--cyan-dark); box-shadow: var(--shadow); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--ink-soft); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: inherit;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { border-color: var(--cyan-dark); color: var(--cyan-dark); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--cyan);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 10, 0.55) 0%, rgba(6, 8, 10, 0.78) 100%);
}
.hero .container {
  position: relative;
  padding: 96px 24px 88px;
}
.hero.hero-sm .container { padding: 64px 24px 56px; }
.hero h1 { color: #fff; max-width: 780px; }
.hero p.lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  max-width: 640px;
}
.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs a:hover { color: var(--cyan); }

/* Sections ------------------------------------------------------------- */
section { padding: 72px 0; }
.section-soft { background: var(--paper-soft); }
.section-dark { background: var(--ink); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Grids & cards ---------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--cyan-ink);
  font-weight: 800;
  margin-bottom: 18px;
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(91, 225, 230, 0.16);
  color: var(--cyan-dark);
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.card h3, .card h4 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card .icon-badge { margin-bottom: 0; flex: none; }
.info-card h4 { margin-bottom: 4px; }
.info-card p { margin-bottom: 0; }

/* Pricing table ------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
table.pricing {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--paper);
}
table.pricing th, table.pricing td {
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}
table.pricing thead th {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
table.pricing tbody tr:last-child td { border-bottom: none; }
table.pricing tbody tr:hover { background: var(--paper-soft); }
table.pricing td.price { font-weight: 800; color: var(--ink); white-space: nowrap; }

/* Lists ------------------------------------------------------------ */
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--grey);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-dark);
  font-weight: 800;
}
.list-plain li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--grey);
}
.list-plain li:last-child { border-bottom: none; }

/* Route cards ------------------------------------------------------- */
.route-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  margin-bottom: 28px;
}
.route-card img { height: 100%; width: 100%; object-fit: cover; min-height: 260px; }
.route-card .route-body { padding: 32px; }
.route-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--grey-light);
  font-weight: 700;
}
.route-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tag {
  display: inline-block;
  background: rgba(91, 225, 230, 0.16);
  color: var(--cyan-ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 4px 8px 0 0;
}

/* FAQ accordion -------------------------------------------------------- */
.faq-group { margin-bottom: 40px; }
.faq-group h2 { margin-bottom: 20px; }
details.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--paper);
  overflow: hidden;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--cyan-dark);
  flex: none;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--grey);
}

/* Gallery ------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-soft);
  aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: contain; }

/* CTA band ------------------------------------------------------------ */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 0; }

/* Map ------------------------------------------------------------- */
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Contact form --------------------------------------------------------- */
.form-grid { display: grid; gap: 18px; }
.form-grid label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(91, 225, 230, 0.25);
}

/* Social icons --------------------------------------------------------- */
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.social-row a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--cyan-ink); }

/* Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
}
.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid p { color: rgba(255,255,255,0.6); }
.footer-grid a { color: rgba(255,255,255,0.72); }
.footer-grid a:hover { color: var(--cyan); }
.footer-grid li { margin-bottom: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: #fff; font-size: 1.1rem; margin-bottom: 14px; }
.footer-brand img { height: 34px; width: auto; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--cyan); }

/* WhatsApp floating button ---------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.6);
  font-size: 1.6rem;
}
.whatsapp-float:hover { transform: translateY(-2px); }

/* Utility -------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: var(--cyan-ink);
  padding: 10px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn-primary.desktop-only { display: none; }
}

@media (max-width: 860px) {
  .route-card { grid-template-columns: 1fr; }
  .route-card img { min-height: 200px; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-band .btn-row { justify-content: center; }
}

@media (max-width: 720px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  section { padding: 52px 0; }
  .hero .container { padding: 64px 24px 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
