:root {
  --bg: #050816;
  --bg-alt: #0b1120;
  --bg-soft: #111827;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --accent-alt: #38bdf8;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 50px rgba(15, 23, 42, 0.85);
  --shadow-subtle: 0 14px 30px rgba(15, 23, 42, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 22%, #020617 34%, #020617 50%, #020617 65%)
      fixed,
    linear-gradient(120deg, #020617 0%, #020617 40%, #020617 100%) fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #fbbf24, #f97316 45%, #db2777 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #020617;
  font-size: 1.05rem;
}

.logo-text {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  position: relative;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.main-nav a:hover {
  color: #f9fafb;
  background-color: rgba(15, 23, 42, 0.75);
}

.main-nav a.active {
  color: #f9fafb;
  background: radial-gradient(circle at 0 0, #22c55e 0, #22c55e 12%, #f97316 60%, #db2777 100%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.6);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #e5e7eb;
  height: 2px;
  width: 16px;
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -5px;
}
.nav-toggle-label span::after {
  top: 5px;
}

.hero {
  padding: 3.5rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-alt);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.06;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.18s ease, border-color 0.18s ease,
    color 0.18s ease;
}

.btn.primary {
  background: radial-gradient(circle at 0 0, #22c55e 0, #22c55e 14%, #f97316 60%, #db2777 100%);
  border-color: rgba(15, 23, 42, 0.75);
  box-shadow: var(--shadow-subtle);
  color: #020617;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.75);
  color: var(--muted);
}

.btn.ghost:hover {
  color: #f9fafb;
  border-color: rgba(248, 250, 252, 0.9);
}

.btn.small {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.btn.full-width {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-trust .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top, #020617, #020617 40%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: var(--shadow-soft);
}

.hero-carousel {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.98));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
}

.hero-carousel-dots .dot.active {
  width: 9px;
  background: linear-gradient(120deg, #22c55e, #f97316);
}

.hero-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.8)),
    url('https://images.unsplash.com/photo-1600703139875-9d9f0c019a40?auto=format&fit=crop&w=1200&q=80');
}

.hero-card-body {
  padding: 1.1rem 1.25rem 1.15rem;
}

.hero-tour-title {
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.hero-tour-meta {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-tour-price {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  color: var(--accent-alt);
}

.hero-tour-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

section {
  padding: 2.6rem 0;
}

.hero-motion {
  padding-top: 0;
  padding-bottom: 2.4rem;
}

.hero-motion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.3fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-motion-copy h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.hero-motion-copy p {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-motion-note {
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-motion-media {
  display: flex;
  justify-content: flex-end;
}

.hero-video-frame {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 4px;
  background: radial-gradient(circle at 0 0, #22c55e, #f97316 35%, #db2777 75%, #0f172a 100%);
  box-shadow: var(--shadow-soft);
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 260px;
  border-radius: 16px;
  object-fit: cover;
}

.benefits h2,
.featured-tours h2,
.social-proof h2 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.section-intro {
  max-width: 35rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
}

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

.card,
.tour-card,
.quote-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.36);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.96));
  padding: 1.15rem 1.2rem 1.25rem;
}

.card h3,
.tour-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.card p,
.tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tour-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.tour-copy {
  margin-bottom: 0.7rem;
}

.tour-price {
  font-size: 0.86rem;
  color: var(--accent-alt);
  margin-bottom: 0.7rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.link-inline {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.affiliate-note {
  margin-top: 1.8rem;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--muted);
  font-size: 0.82rem;
}

.affiliate-note.wide {
  margin-top: 2.1rem;
}

.social-proof {
  padding-bottom: 3.1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: center;
}

.quote-card {
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.04), rgba(15, 23, 42, 0.98));
}

.quote-text {
  font-size: 0.96rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.quote-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.page {
  padding-bottom: 3.2rem;
}

.page-hero {
  padding-top: 3.1rem;
  padding-bottom: 1.8rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 2.3vw, 2.2rem);
  margin: 0 0 0.8rem;
}

.page-intro {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.tour-listing {
  padding-top: 0.5rem;
}

.filters-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.pill {
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.pill.ghost {
  background: rgba(15, 23, 42, 0.75);
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
}

.tour-row {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.95fr);
  gap: 1.6rem;
  padding: 1.3rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.09), rgba(15, 23, 42, 0.98));
}

.tour-row-main h2 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.tour-row-main p {
  margin-top: 0;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.tour-bullets {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.tour-bullets li + li {
  margin-top: 0.2rem;
}

.tour-row-sidebar {
  align-self: flex-start;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.92);
}

.tour-row-sidebar .tour-price {
  margin-top: 0;
}

.tour-duration {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.partner-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.about-section {
  padding-top: 0.4rem;
  padding-bottom: 2.1rem;
}

.about-section.muted {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.about-grid h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.about-grid p {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.about-list {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about-list li + li {
  margin-top: 0.25rem;
}

.contact-section {
  padding-top: 0.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.contact-form {
  padding: 1.4rem 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.97));
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  color: var(--muted);
}

input[type='text'],
input[type='email'],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-alt);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
  background: rgba(15, 23, 42, 0.95);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-helper {
  margin-top: 0.7rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.32);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
  padding: 1.8rem 0 1.4rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.footer-logo .logo-mark {
  width: 26px;
  height: 26px;
  font-size: 0.92rem;
}

.footer-logo .logo-text {
  font-size: 0.86rem;
}

.footer-copy {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.footer-links li + li {
  margin-top: 0.1rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: #f9fafb;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.27);
  padding-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.visitor-counter {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.25fr);
    gap: 2.2rem;
  }

  .hero-motion-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.25fr);
  }

  .social-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }

  .tour-row {
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 1.1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.3rem;
  }

  .header-inner {
    padding: 0.7rem 0;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1.3rem;
    width: min(260px, 70vw);
    margin-top: 0.55rem;
    padding: 0.4rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
    flex-direction: column;
    gap: 0.1rem;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-nav a {
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(-90deg) translateX(-5px);
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    opacity: 0;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-motion-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-motion-media {
    justify-content: flex-start;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .social-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tour-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .tour-row-sidebar {
    padding: 0.8rem 0.9rem;
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-card {
    max-width: none;
  }

  .hero-motion {
    padding-top: 0.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .tour-row {
    padding: 1.1rem 1.1rem;
  }
}


