:root {
  --brand: #0ea5b7;
  --brand-dark: #0b6f8a;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f8fbfd;
  --card: #ffffff;
  --border: #e5eef3;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Keep enquiry modal hidden by default until explicitly opened via JS */
#myenq.modal,
#myenq {
  display: none !important;
}

#myenq.show,
#myenq.in {
  display: block !important;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: 86px;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #e6edf2;
}

.site-nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-brand img { max-height: 52px; width: auto; }
.site-nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.site-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  margin: 3px auto;
  border-radius: 2px;
}

.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav-main { display: flex; align-items: center; gap: 6px; }
.site-nav-actions { display: flex; align-items: center; }
.site-nav .nav-link {
  text-decoration: none !important;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: color .2s ease, border-color .2s ease;
  padding: 8px 10px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: var(--brand-dark);
  background: transparent;
  border-bottom-color: #86d7e2;
}

.site-nav .nav-item { position: relative; }

.caret-icon {
  margin-left: 6px;
  font-size: 11px;
  transition: transform .2s ease;
}

.dropdown.is-open .caret-icon { transform: rotate(180deg); }

.site-nav .dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1300;
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 16px 28px rgba(15, 23, 42, .12);
  border-radius: 12px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  min-width: 230px;
  top: calc(100% + 8px);
  left: 0;
}

.site-nav .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  font-size: 14px;
}

.site-nav .dropdown-menu li a:hover {
  background: #f4fcfe;
  color: var(--brand-dark);
}

.nav-cta { margin-left: 8px; padding: 10px 16px; }

.site-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(14, 165, 183, .25); }

.site-btn-ghost {
  background: #fff;
  color: var(--brand-dark) !important;
  border: 1px solid #bfe8ef;
}

.hero-modern {
  background: radial-gradient(circle at top right, #c8f4ff, #ffffff 48%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 26px;
  margin: 12px auto 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-modern h1 { font-size: 36px; margin: 0 0 10px; color: #0f172a; }
.hero-modern p { margin: 0 0 18px; color: var(--muted); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 18px;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: #e6f9fc;
  border: 1px solid #bdeef6;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats {
  display: grid;
  gap: 10px;
}

.stat-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(2, 38, 61, .08);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  color: #0f172a;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-strip .item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.quick-links-wrap { margin-top: -8px; margin-bottom: 26px; }
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-modern {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

.intro-modern-copy h2 {
  margin: 0 0 8px;
  font-size: 30px;
  color: #0f172a;
}

.intro-modern-copy p { margin: 0 0 16px; color: var(--muted); }

.intro-modern-media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.feature-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.feature-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none !important;
  color: #0f172a;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.feature-pill span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.camps-modern-head {
  text-align: center;
  max-width: 820px;
  margin: 8px auto 18px;
}

.camps-modern-head h2 {
  margin: 0 0 8px;
  font-size: 34px;
  color: #0f172a;
}

.camps-modern-head p {
  margin: 0;
  color: var(--muted);
}

.camps-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.camp-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.camp-card-modern img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.camp-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.camp-card-body h3 {
  margin: 0;
  font-size: 21px;
  color: #0f172a;
}

.camp-card-body p {
  margin: 0;
  color: var(--muted);
}

.camp-card-body ul {
  margin: 0;
  padding-left: 18px;
  color: #334155;
}

.camp-card-body li { margin-bottom: 4px; }

.camp-card-body a {
  margin-top: auto;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
}

.camp-card-body a:hover { text-decoration: underline; }

.activities-modern-head {
  text-align: center;
  max-width: 780px;
  margin: 8px auto 18px;
}

.activities-modern-head h2 {
  margin: 0 0 8px;
  font-size: 32px;
  color: #0f172a;
}

.activities-modern-head p {
  margin: 0;
  color: var(--muted);
}

.activities-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.activity-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-decoration: none !important;
  color: inherit;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.activity-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.13);
  border-color: #b5e3eb;
}

.activity-card-modern h3 {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.activity-card-modern p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.rafting-modern-head {
  text-align: center;
  max-width: 780px;
  margin: 8px auto 18px;
}

.rafting-modern-head h2 {
  margin: 0 0 8px;
  font-size: 32px;
  color: #0f172a;
}

.rafting-modern-head p {
  margin: 0;
  color: var(--muted);
}

.rafting-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.rafting-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-decoration: none !important;
  color: inherit;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.rafting-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.13);
  border-color: #b5e3eb;
}

.rafting-card-modern h3 {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.rafting-card-modern p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.quick-link-card {
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.quick-link-card h3 { margin: 0 0 6px; color: #0f172a; font-size: 20px; }
.quick-link-card p { margin: 0; color: var(--muted); }
.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 28px rgba(15, 23, 42, 0.12);
  border-color: #b5e3eb;
}

.promo,
.bar,
.nblock {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  background: var(--card) !important;
}

.promo:hover { transform: translateY(-3px); transition: 0.25s ease; }

.pa-heading h1,
.pa-heading h2,
.pa-heading h3,
.container h1,
.container h2,
.container h3 {
  line-height: 1.25;
}

.footer-modern {
  margin-top: 36px;
  background: #0b1220;
  color: #d2dae6;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-modern a { color: #d2dae6; text-decoration: none; }
.footer-modern a:hover { color: #fff; }

.footer-modern .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-modern h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #fff;
}

.footer-modern ul { list-style: none; margin: 0; padding: 0; }
.footer-modern li { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* Remove legacy pseudo-text (e.g., "AS") before modern section headings */
.intro-modern-copy h1::before,
.intro-modern-copy h2::before,
.intro-modern-copy h3::before,
.activities-modern-head h1::before,
.activities-modern-head h2::before,
.activities-modern-head h3::before,
.activities-modern-grid h3::before,
.rafting-modern-head h1::before,
.rafting-modern-head h2::before,
.rafting-modern-head h3::before,
.rafting-modern-grid h3::before,
.camps-modern-head h1::before,
.camps-modern-head h2::before,
.camps-modern-head h3::before,
.camps-modern-grid h3::before,
.quick-links-grid h3::before,
.hero-modern h1::before,
.hero-modern h2::before,
.hero-modern h3::before,
.intro-modern-copy h1:before,
.intro-modern-copy h2:before,
.intro-modern-copy h3:before,
.activities-modern-head h1:before,
.activities-modern-head h2:before,
.activities-modern-head h3:before,
.activities-modern-grid h3:before,
.rafting-modern-head h1:before,
.rafting-modern-head h2:before,
.rafting-modern-head h3:before,
.rafting-modern-grid h3:before,
.camps-modern-head h1:before,
.camps-modern-head h2:before,
.camps-modern-head h3:before,
.camps-modern-grid h3:before,
.quick-links-grid h3:before,
.hero-modern h1:before,
.hero-modern h2:before,
.hero-modern h3:before {
  content: none !important;
  display: none !important;
}

@media (max-width: 992px) {
  .site-nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #e6edf2;
    border-top: none;
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    display: none;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
    gap: 8px;
  }
  .site-nav-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }
  .site-nav-actions {
    width: 100%;
  }
  .site-nav .nav-link { width: 100%; border-bottom: 0; border-radius: 8px; }
  .site-nav .nav-link:hover,
  .site-nav .nav-link.is-active {
    border-bottom-color: transparent;
    background: #eefbfd;
  }
  .site-nav .nav-item { width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-left: 0; }
  .site-nav .dropdown-menu {
    position: static;
    background: #fff !important;
    min-width: 100%;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .site-nav.is-open { display: flex; }
  .intro-modern { grid-template-columns: 1fr; }
  .intro-modern-copy h2 { font-size: 24px; }
  .feature-pill-grid { grid-template-columns: 1fr 1fr; }
  .activities-modern-grid { grid-template-columns: 1fr 1fr; }
  .activities-modern-head h2 { font-size: 27px; }
  .rafting-modern-grid { grid-template-columns: 1fr 1fr; }
  .rafting-modern-head h2 { font-size: 27px; }
  .camps-modern-grid { grid-template-columns: 1fr 1fr; }
  .camps-modern-head h2 { font-size: 28px; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .footer-modern .inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-modern h1 { font-size: 28px; }
  .feature-pill-grid { grid-template-columns: 1fr; }
  .activities-modern-grid { grid-template-columns: 1fr; }
  .rafting-modern-grid { grid-template-columns: 1fr; }
  .camps-modern-grid { grid-template-columns: 1fr; }
  .camp-card-modern img { height: 210px; }
  .footer-modern .inner { grid-template-columns: 1fr; }
}
