:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --bg-soft: #eef3fa;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #0f2843;
  --text: #10233a;
  --muted: #5d6d81;
  --line: rgba(14, 44, 76, 0.1);
  --blue: #0d3b66;
  --blue-deep: #08233c;
  --orange: #f08a38;
  --gold: #d9b35f;
  --success: #2e9a6b;
  --shadow-xl: 0 36px 90px rgba(8, 35, 60, 0.16);
  --shadow-lg: 0 20px 50px rgba(15, 40, 67, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}

body.dark-mode {
  color-scheme: dark;
  --bg: #06131f;
  --bg-soft: #0b1e2f;
  --surface: rgba(10, 26, 40, 0.84);
  --surface-strong: #0f2437;
  --surface-dark: #132f4a;
  --text: #f6f7fb;
  --muted: #b1bfd0;
  --line: rgba(255, 255, 255, 0.1);
  --shadow-xl: 0 36px 90px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 138, 56, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(13, 59, 102, 0.2), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 251, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

body.dark-mode .site-header {
  background: rgba(6, 19, 31, 0.72);
}

.navbar {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.eyebrow,
.form-note,
.feature-card-copy span,
.blog-tag,
.payment-head span,
.mini-itinerary span,
.search-head span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy small,
.form-note,
.search-head span,
.feature-card-copy span,
.blog-tag,
.payment-head span {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 14px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.theme-toggle,
.ghost-btn,
.primary-btn,
.secondary-btn,
.pill,
.floating-trip-btn,
.modal-close {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.theme-toggle:hover,
.ghost-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.pill:hover,
.floating-trip-btn:hover,
.modal-close:hover {
  transform: translateY(-2px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

.theme-toggle-track {
  width: 46px;
  height: 26px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.16);
  display: flex;
  align-items: center;
}

.theme-toggle-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  transition: transform 180ms ease;
}

body.dark-mode .theme-toggle-thumb {
  transform: translateX(20px);
}

.ghost-btn,
.secondary-btn,
.primary-btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.ghost-btn,
.secondary-btn {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  border: 1px solid var(--line);
}

.primary-btn {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  box-shadow: 0 18px 35px rgba(240, 138, 56, 0.24);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 31, 0.78), rgba(4, 18, 31, 0.3)),
    linear-gradient(180deg, rgba(255, 153, 79, 0.14), rgba(4, 18, 31, 0.6));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  align-items: center;
  gap: 32px;
  padding: 110px 0 72px;
}

.hero-copy {
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd087;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.04em;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.hero-text,
.content-panel p,
.blog-card p,
.testimonial-slide p,
.trending-list p,
.newsletter-card p,
.social-card span,
.feature-card-copy strong {
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.hero-actions,
.hero-stats,
.quick-pills,
.about-tags,
.slider-dots {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  gap: 18px;
  margin-top: 34px;
}

.hero-stats article,
.search-card,
.content-panel,
.blog-card,
.package-card,
.destination-card,
.newsletter-card,
.social-card,
.feature-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-stats article {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.hero-card {
  justify-self: end;
  width: 100%;
}

.search-card {
  padding: 22px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(180deg, rgba(9, 29, 46, 0.76), rgba(9, 29, 46, 0.92));
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.search-head p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.search-field {
  position: relative;
  display: block;
  margin-top: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  outline: none;
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background: rgba(255, 255, 255, 0.04);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 138, 56, 0.6);
  box-shadow: 0 0 0 4px rgba(240, 138, 56, 0.12);
}

.suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  color: #10233a;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 20;
}

.suggestions.is-visible {
  display: block;
}

.suggestion-item {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.suggestion-item:hover {
  background: rgba(13, 59, 102, 0.06);
}

.quick-pills {
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mini-itinerary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-itinerary strong,
.mini-itinerary p {
  display: block;
  margin-top: 4px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(217, 179, 95, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
}

body.dark-mode .section-soft {
  background:
    radial-gradient(circle at top right, rgba(217, 179, 95, 0.09), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-top: 10px;
}

.destinations-strip,
.destination-grid,
.package-grid,
.gallery-grid,
.blog-grid,
.two-column,
.booking-layout,
.form-grid {
  display: grid;
}

.destinations-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.feature-card-copy {
  padding: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filters select {
  width: auto;
  min-width: 180px;
}

.destination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.destination-card,
.package-card,
.blog-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.destination-card img,
.package-card img {
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.card-copy {
  padding: 20px;
}

.meta-row,
.price-row,
.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.meta-row,
.package-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-row {
  margin-top: 18px;
}

.price-row strong {
  font-size: 1.35rem;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.package-card img {
  aspect-ratio: 1 / 0.72;
}

.package-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.two-column,
.booking-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.content-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.trending-list {
  display: grid;
  gap: 18px;
}

.trending-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(13, 59, 102, 0.05);
}

body.dark-mode .trending-list article {
  background: rgba(255, 255, 255, 0.04);
}

.trending-list span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}

.testimonial-track {
  position: relative;
  min-height: 190px;
}

.testimonial-slide {
  display: none;
  padding: 22px;
  border-radius: 20px;
  background: rgba(13, 59, 102, 0.06);
}

body.dark-mode .testimonial-slide {
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-slide.active {
  display: block;
}

.rating {
  color: var(--gold);
  font-size: 1.1rem;
}

.slider-dots {
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(13, 59, 102, 0.16);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--orange);
}

.review-form,
.booking-form,
.contact-form,
.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5) {
  transform: translateY(28px);
}

.booking-layout .content-panel {
  height: 100%;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 59, 102, 0.08), rgba(13, 59, 102, 0.02));
  border: 1px solid var(--line);
}

.payment-head,
.payment-summary,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.payment-summary {
  margin-top: 18px;
}

.payment-summary p {
  margin: 0;
}

.wide-btn {
  width: 100%;
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.newsletter-card {
  margin-top: 20px;
  padding: 22px;
  border-radius: 24px;
}

.newsletter-card form {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.about-tags {
  gap: 10px;
  margin-top: 24px;
}

.about-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.08);
  font-weight: 600;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  padding: 24px;
}

.blog-card a {
  color: var(--orange);
  font-weight: 700;
}

.social-stack {
  display: grid;
  gap: 16px;
}

.social-card {
  display: block;
  padding: 22px;
  border-radius: 24px;
}

.social-card.whatsapp {
  background: linear-gradient(135deg, rgba(46, 154, 107, 0.18), rgba(255, 255, 255, 0.4));
}

.site-footer {
  padding: 28px 0 48px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.floating-trip-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  padding: 16px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.modal {
  width: min(760px, calc(100% - 24px));
  border: 0;
  border-radius: 30px;
  padding: 0;
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: var(--shadow-xl);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.modal-body {
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 59, 102, 0.1);
  color: var(--text);
  font-size: 1.5rem;
}

.modal-hero {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 20px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.modal-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.modal-facts span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.08);
  color: var(--muted);
}

.modal ul {
  padding-left: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .package-grid,
  .destination-grid,
  .gallery-grid,
  .blog-grid,
  .two-column,
  .booking-layout,
  .destinations-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    align-items: end;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .hero-grid,
  .package-grid,
  .destination-grid,
  .gallery-grid,
  .blog-grid,
  .two-column,
  .booking-layout,
  .destinations-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 11ch;
  }

  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(5) {
    transform: none;
  }

  .newsletter-card form,
  .payment-head,
  .payment-summary,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-actions,
  .filters {
    flex-direction: column;
  }

  .hero-actions a,
  .secondary-btn,
  .primary-btn,
  .ghost-btn {
    width: 100%;
    text-align: center;
  }

  .content-panel,
  .search-card,
  .blog-card,
  .destination-card,
  .package-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-card-copy,
  .card-copy,
  .blog-card {
    padding: 18px;
  }
}
