﻿:root {
  --bg: #070c18;
  --bg-alt: #0f1b36;
  --surface: #f7f9fd;
  --surface-strong: #ffffff;
  --ink: #101828;
  --muted: #5f6b81;
  --line: rgba(16, 24, 40, .12);
  --brand: #f2b84f;
  --brand-2: #f06d4e;
  --accent: #53d3c9;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-lg: 0 24px 48px rgba(8, 14, 34, .22);
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% -10%, #1e2f57, var(--bg) 45%), var(--bg);
}
h1, h2, h3, h4 {
  margin: 0 0 .7rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.02em;
}
p { color: var(--muted); line-height: 1.72; margin: 0 0 .9rem; }
a { color: inherit; text-decoration: none; }

.bg-orb {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(38px);
  opacity: .25;
  animation: float 11s ease-in-out infinite;
}
.orb-one { background: #ff8f70; top: -140px; right: -80px; }
.orb-two { background: #00d8ce; bottom: -180px; left: -100px; animation-delay: -4s; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 11, 24, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  color: #fff;
  font-weight: 800;
  letter-spacing: .11em;
  font-size: .9rem;
}
.nav nav { display: flex; flex-wrap: wrap; gap: .9rem; }
.nav nav a {
  color: #d6e1ff;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  transition: .28s ease;
}
.nav-logout-form {
  margin: 0;
  display: inline-flex;
}
.nav-logout-btn {
  color: #d6e1ff;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: .28s ease;
  font: inherit;
}
.nav nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.nav-logout-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.hero,
.page-hero {
  margin-top: 1rem;
  color: #fff;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero { padding: 4.8rem 0 4.2rem; }
.page-hero { padding: 3.8rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
  align-items: end;
}
.eyebrow {
  margin-bottom: .8rem;
  color: #f7da95;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .15em;
  font-size: .75rem;
}
h1 { font-size: clamp(2rem, 4vw, 3.35rem); max-width: 16ch; }
.lead { color: #e4ecff; max-width: 58ch; }
.hero-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }

.kpi-panel {
  background: rgba(10, 17, 36, .7);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.kpi-panel h3 { margin-bottom: .9rem; }
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.kpi-grid article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .75rem;
}
.kpi-grid strong { display: block; font-size: 1.2rem; }
.kpi-grid span { color: #d7e4ff; font-size: .82rem; }

.section {
  margin: 1.5rem auto;
  background: linear-gradient(180deg, #fff, var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 16px 32px rgba(10, 17, 36, .1);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .55s ease;
}
.card .pad { padding: 1rem; }
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 109, 78, .38);
  box-shadow: 0 22px 36px rgba(10, 17, 36, .17);
}
.card:hover img { transform: scale(1.06); }
.card-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.12) 100%);
}
.flat {
  background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%);
}
.cards-lift .card:nth-child(2) { animation-delay: .08s; }
.cards-lift .card:nth-child(3) { animation-delay: .16s; }

.chip {
  display: inline-block;
  margin: 0 0 .65rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #72530b;
  background: #ffefc8;
  border: 1px solid #f4d99c;
  border-radius: 999px;
  padding: .27rem .55rem;
}
.meta { color: #39455e; font-size: .9rem; }
.price { font-size: 1.5rem; color: #b16200; font-weight: 800; }
.text-link {
  font-weight: 700;
  color: #123ea7;
  position: relative;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width .22s ease;
}
.text-link:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: .76rem 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1e1e1e;
  transition: transform .24s ease, box-shadow .24s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(240, 109, 78, .3);
}
.btn.ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.26);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: .7rem;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform .3s ease, filter .3s ease;
}
.gallery-grid img:first-child {
  grid-row: span 2;
  height: 100%;
  min-height: 368px;
}
.gallery-grid img:hover { transform: translateY(-4px) scale(1.01); filter: saturate(1.1); }

.split { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.narrow { max-width: 760px; }
.panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.1rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.feature-strip article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  padding: 1rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.feature-strip article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(10, 17, 36, .13);
}

input, textarea, select {
  width: 100%;
  border: 1px solid #c9d2e4;
  border-radius: 10px;
  padding: .65rem .7rem;
  margin-top: .25rem;
  margin-bottom: .4rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: #2d6cdf;
  box-shadow: 0 0 0 4px rgba(45,108,223,.12);
  outline: none;
}
label { display: block; font-weight: 700; margin-top: .7rem; }

.messages { margin-top: .8rem; }
.message {
  border-radius: 10px;
  padding: .65rem .9rem;
  margin-bottom: .5rem;
}
.message.success { background: #e8fbef; color: #165c3f; }
.message.error { background: #ffefef; color: #9e1b1b; }

/* =================================================================
   LOGIN PAGE
   ================================================================= */
.login-page .topbar { background: rgba(6, 11, 24, .92); }
.login-page .bg-orb { display: none; }
.login-page main { padding: 0; }
.login-page .footer { display: none; }

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left showcase panel */
.login-showcase {
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1200&q=80')
    center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.login-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 15, 35, .3) 0%,
    rgba(8, 15, 35, .75) 60%,
    rgba(8, 15, 35, .92) 100%
  );
}
.login-showcase-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.login-showcase-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: .6rem;
  background: linear-gradient(135deg, #f2b84f, #f0a050);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.login-showcase-content > p {
  color: #c5d4f0;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 1.5rem;
}
.login-showcase-stats {
  display: flex;
  gap: 2rem;
}
.login-showcase-stats div {
  display: flex;
  flex-direction: column;
}
.login-showcase-stats strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.login-showcase-stats span {
  font-size: .78rem;
  color: #a0b4d8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}

/* Right form panel */
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fc 100%);
  padding: 2rem;
}
.login-form-container {
  width: 100%;
  max-width: 420px;
}

/* Header */
.login-header {
  margin-bottom: 1.8rem;
}
.login-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a3a6e, #2d6cdf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px rgba(45, 108, 223, .25);
}
.login-header h1 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: .45rem;
}
.login-header p {
  color: #5a6a8a;
  font-size: .88rem;
  line-height: 1.55;
}

/* Error message */
.login-error {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.login-error svg { flex-shrink: 0; color: #dc2626; }

/* Form fields */
.login-form .form-field {
  margin-bottom: 1.1rem;
}
.login-form label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #3a4a6a;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
  margin-top: 0;
}
.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8a9abd;
  pointer-events: none;
}
.login-form input {
  width: 100%;
  padding: .75rem .8rem .75rem 2.8rem;
  border: 1px solid #d0d8ea;
  border-radius: 10px;
  font-size: .95rem;
  background: #fff;
  color: #1a2a4a;
  transition: border-color .2s, box-shadow .2s;
  margin: 0;
}
.login-form input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}
.login-form input:focus {
  outline: none;
  border-color: #2d6cdf;
  box-shadow: 0 0 0 4px rgba(45, 108, 223, .1);
}
.login-form input:focus + .input-icon,
.login-form input:focus ~ .input-icon {
  /* icon is before input, use sibling inside wrap */
}

/* Submit button */
.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  background: linear-gradient(135deg, #1a3a6e, #2d6cdf);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow .25s, transform .2s;
  margin-top: .5rem;
}
.login-btn:hover {
  box-shadow: 0 10px 28px rgba(45, 108, 223, .35);
  transform: translateY(-1px);
}
.login-btn:active {
  transform: translateY(0);
}
.login-btn svg {
  transition: transform .2s;
}
.login-btn:hover svg {
  transform: translateX(3px);
}

/* Footer note */
.login-footer {
  margin-top: 1.5rem;
  text-align: center;
}
.login-footer p {
  color: #7a8aaa;
  font-size: .84rem;
}
.login-footer a {
  color: #2d6cdf;
  font-weight: 700;
}

/* Login responsive */
@media (max-width: 900px) {
  .login-wrapper {
    grid-template-columns: 1fr;
  }
  .login-showcase {
    min-height: 240px;
    padding: 2rem;
  }
  .login-showcase-content h2 { font-size: 1.4rem; }
  .login-showcase-stats { gap: 1.5rem; }
  .login-showcase-stats strong { font-size: 1.3rem; }
}
@media (max-width: 600px) {
  .login-showcase {
    min-height: 200px;
    padding: 1.5rem;
  }
  .login-form-side { padding: 1.5rem 1rem; }
  .login-header h1 { font-size: 1.4rem; }
  .login-showcase-stats { gap: 1rem; }
}

.footer {
  margin-top: 2rem;
  padding: 2rem 0 2.4rem;
  color: #dbe8ff;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.footer p { color: #b8c9ea; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child { grid-row: span 1; min-height: 180px; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font-size: 1.6rem;
  cursor: pointer;
  padding: .35rem .5rem;
  line-height: 1;
  border-radius: 6px;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.12); }

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 0;
  }
  .nav-toggle { display: block; }
  .nav nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: .15rem;
    padding: .5rem 0;
  }
  .nav nav.is-open { display: flex; }
  .nav nav a,
  .nav nav .menu-trigger {
    padding: .6rem .75rem;
    border-radius: 8px;
    font-size: .95rem;
  }
  .menu-dropdown { width: 100%; }
  .menu-dropdown:hover .menu-panel,
  .menu-dropdown:focus-within .menu-panel { display: none; }
  .menu-panel {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 0 0 1rem !important;
    background: transparent !important;
    margin-top: .2rem;
  }
  .menu-dropdown.is-open .menu-panel { display: flex !important; flex-direction: column; }
  .menu-panel a {
    padding: .45rem .75rem !important;
    font-size: .9rem !important;
  }
  .split { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .section { padding: 1.3rem; }
  .hero, .page-hero { border-radius: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

.feature-strip.single { grid-template-columns: 1fr; margin-top: .8rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}
.filter-chip {
  border: 1px solid #d6deec;
  background: #f8fbff;
  color: #1f355e;
  border-radius: 999px;
  padding: .42rem .8rem;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.filter-chip:hover {
  transform: translateY(-2px);
  border-color: #a7bbdf;
  box-shadow: 0 8px 16px rgba(22, 40, 72, .12);
}
.filter-chip.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #234681, #1f7b8a);
}

.tour-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .75rem;
}
.tour-form p { margin-bottom: .6rem; }

@media (max-width: 760px) {
  .tour-form .form-grid { grid-template-columns: 1fr; }
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.stats-strip article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .9rem;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
}
.stats-strip strong {
  display: block;
  font-size: 1.35rem;
  color: #1d3d70;
}
.stats-strip span {
  color: #4b5d78;
  font-size: .88rem;
}

.plan-card .plan-points {
  margin: .6rem 0 0;
  padding-left: 1rem;
}
.plan-card .plan-points li {
  margin-bottom: .35rem;
  color: #324763;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: .8rem;
  border-bottom: 1px solid #e7edf6;
}
.comparison-table th {
  background: #f3f7ff;
  color: #1e355c;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.member-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.member-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform .26s ease, box-shadow .26s ease;
}
.member-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 17, 36, .16);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.testimonial-name {
  font-weight: 800;
  color: #1e2f4b;
  margin-bottom: .2rem;
}

.membership-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
}

@media (max-width: 920px) {
  .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .membership-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .member-gallery { grid-template-columns: 1fr; }
}

.menu-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  background: rgba(11, 20, 38, .96);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: .35rem;
  box-shadow: 0 20px 34px rgba(5, 10, 22, .35);
  z-index: 40;
  margin-top: 8px;
}
.menu-panel::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}
.menu-panel a {
  color: #dce7ff;
  border-radius: 8px;
  padding: .46rem .62rem;
  font-size: .88rem;
}
.menu-panel a:hover {
  background: rgba(255,255,255,.12);
  color: #ffffff;
}
.menu-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: .4rem 0;
}
.menu-dropdown:hover .menu-panel,
.menu-dropdown:focus-within .menu-panel {
  display: flex;
}

.top-gallery {
  margin-top: 1rem;
}
.experience-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .6rem;
}
.experience-wall img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}
.experience-wall img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 24px rgba(10, 17, 36, .16);
  filter: saturate(1.08);
}

.contact-showcase {
  background:
    radial-gradient(circle at 0% 0%, rgba(83, 211, 201, .16), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(240, 109, 78, .18), transparent 40%),
    linear-gradient(140deg, #0b1428 0%, #101f3d 100%);
  border: 1px solid rgba(140, 173, 232, .28);
  box-shadow: 0 20px 36px rgba(6, 12, 24, .38);
}
.contact-layout {
  align-items: stretch;
}
.contact-highlights {
  margin-top: .8rem;
  display: grid;
  gap: .45rem;
}
.contact-layout h2,
.contact-layout > div > p {
  color: #e6efff;
}
.contact-highlights p {
  margin: 0;
  border: 1px solid rgba(140, 173, 232, .35);
  background: rgba(12, 25, 49, .72);
  color: #cfddfb;
  border-radius: 12px;
  padding: .65rem .75rem;
}
.contact-highlights p strong {
  color: #ffffff;
}
.contact-form-panel {
  background: rgba(9, 21, 42, .86);
  border: 1px solid rgba(126, 165, 232, .42);
  box-shadow: 0 14px 30px rgba(6, 12, 24, .45);
}
.contact-form-panel label {
  color: #dbe8ff;
  font-weight: 700;
}
.contact-form-panel input,
.contact-form-panel textarea,
.contact-form-panel select {
  background: rgba(5, 14, 30, .72);
  border: 1px solid rgba(129, 165, 230, .48);
  color: #eef4ff;
}
.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
  color: #9fb6df;
}
.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
  border-color: #5ea0ff;
  box-shadow: 0 0 0 4px rgba(57, 131, 255, .2);
}
.contact-form-panel .btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #f2b84f, #f06d4e);
  color: #1a1210;
  font-size: 1rem;
}
.contact-form-panel .btn:hover {
  box-shadow: 0 14px 26px rgba(240, 109, 78, .35);
}

@media (max-width: 1040px) {
  .experience-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .experience-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.experience-slider {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0b1427;
  box-shadow: 0 14px 28px rgba(8, 14, 34, .18);
}

.slider-viewport {
  position: relative;
  height: min(60vw, 540px);
  min-height: 320px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.slider-slide figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #eff5ff;
  font-weight: 600;
  background: linear-gradient(130deg, rgba(4, 9, 20, .82), rgba(18, 34, 66, .62));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: .6rem .8rem;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(8, 14, 28, .68);
  color: #f5f7ff;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 4;
  transition: background .22s ease, transform .22s ease;
}
.slider-btn:hover {
  background: rgba(22, 40, 74, .88);
  transform: translateY(-50%) scale(1.05);
}
.slider-btn.prev { left: .85rem; }
.slider-btn.next { right: .85rem; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: .85rem;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 4;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.48);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.slider-dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

@media (max-width: 760px) {
  .slider-viewport {
    min-height: 240px;
    height: 55vw;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
  .slider-slide figcaption {
    font-size: .86rem;
    bottom: .7rem;
  }
}

.outdoor-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.outdoor-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.outdoor-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
}
.outdoor-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform .28s ease, box-shadow .28s ease;
}
.outdoor-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(10, 17, 36, .18);
}

.outdoor-highlights {
  margin: .7rem 0 0;
  padding-left: 1.1rem;
}
.outdoor-highlights li {
  margin-bottom: .45rem;
  color: #334861;
}

@media (max-width: 980px) {
  .outdoor-copy-grid { grid-template-columns: 1fr 1fr; }
  .outdoor-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .outdoor-copy-grid { grid-template-columns: 1fr; }
  .outdoor-gallery { grid-template-columns: 1fr; }
}
