﻿:root {
  --bg: #eff3fb;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dfe6f2;
  --brand: #f97316;
  --brand-strong: #ea580c;
  --accent: #1d4ed8;
  --accent-soft: #e8efff;
  --ok: #16a34a;
  --nav: #0f2438;
  --radius: 18px;
  --shadow-xl: 0 30px 70px rgba(15, 23, 42, 0.25);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.15);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at 20% -10%, #ffffff 0%, #eff3fb 45%, #ebf0fb 100%);
  color: var(--ink);
}

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

.container {
  width: min(1220px, 100% - 40px);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(15, 36, 56, 0.96), rgba(15, 36, 56, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.34);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: #d8e5f7;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--ok), #059669);
  padding: 10px 14px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.hero {
  padding: 124px 0 120px;
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(9, 27, 44, 0.66), rgba(10, 30, 49, 0.72)),
    url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=2200&q=80") center / cover no-repeat;
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -130px;
  height: 240px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5.3vw, 64px);
  line-height: 1.01;
  max-width: 760px;
}

.hero p {
  margin: 0 0 18px;
  font-size: 18px;
  max-width: 650px;
  color: #e2ecf8;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(230, 236, 245, 0.9);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 22px;
}

.glass-card h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.05;
}

.glass-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-form input,
.quick-form select,
.quick-form button {
  min-height: 45px;
  border-radius: 11px;
  font: 600 14px/1 "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
}

.quick-form input,
.quick-form select {
  border: 1px solid #cfd8e7;
  padding: 0 12px;
  color: var(--ink-soft);
}

.quick-form .full {
  grid-column: 1 / -1;
}

.quick-form button {
  border: 0;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.booking {
  margin-top: -78px;
  position: relative;
  z-index: 8;
}

.booking-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px;
}

.section {
  padding: 42px 0;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(29px, 3.8vw, 42px);
  line-height: 1.05;
}

.section-sub {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-grid,
.testi-grid,
.metrics-grid,
.process-grid,
.dest-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.feature h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.shot {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 304px;
  background: #d7e2f5;
}

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

.shot .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(to top, rgba(2, 10, 28, 0.75), rgba(2, 10, 28, 0));
}

.stack {
  display: grid;
  gap: 14px;
}

.stack .shot {
  min-height: 145px;
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
  text-align: center;
}

.metric b {
  display: block;
  font-size: 28px;
  color: #123a66;
}

.metric span {
  color: #6c7b91;
  font-size: 13px;
}

.testi-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.step h4 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.dest-grid {
  grid-template-columns: repeat(3, 1fr);
}

.dest {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #dbe6f8;
  min-height: 220px;
  position: relative;
  box-shadow: var(--shadow-md);
}

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

.dest-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: #fff;
  background: linear-gradient(to top, rgba(3, 12, 28, 0.85), rgba(3, 12, 28, 0));
}

.dest-cap strong {
  display: block;
  font-size: 18px;
}

.dest-cap span {
  font-size: 13px;
  opacity: 0.92;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 10px 0 4px;
  color: var(--muted);
}

.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.testi p {
  margin: 0;
  color: #334155;
}

.testi strong {
  display: block;
  margin-top: 10px;
}

.cta {
  background: linear-gradient(120deg, #102b47, #1d4ed8);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cta h3 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.05;
}

.cta a {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 11px;
}

.footer {
  margin-top: 34px;
  background: #0b1d2f;
  color: #c6d6eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 26px 0;
}

.footer h5 {
  margin: 0 0 8px;
  color: #fff;
}

.footer p,
.footer a {
  margin: 0;
  color: #c6d6eb;
  text-decoration: none;
  line-height: 1.65;
  font-size: 14px;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9db3cf;
  font-size: 13px;
  padding: 12px 0 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid,
  .dest-grid,
  .metrics-grid,
  .testi-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 98px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1220px, 100% - 28px);
  }

  .menu a {
    display: none;
  }

  .menu a.nav-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 104px;
  }

  .booking {
    margin-top: -52px;
  }

  .quick-form {
    grid-template-columns: 1fr;
  }
}
