:root {
  --primary: #ff6b00;
  --secondary: #0f172a;
  --accent: #facc15;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.26);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(3, 7, 18, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.18), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(250, 204, 21, 0.14), transparent 30%),
    linear-gradient(140deg, #020617, #0b1b3e 52%, #14274d);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.18), transparent 34%),
    radial-gradient(circle at 75% 70%, rgba(250, 204, 21, 0.1), transparent 30%);
  filter: blur(50px);
  animation: drift 15s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translateY(-10px) translateX(-20px);
  }
  to {
    transform: translateY(20px) translateX(20px);
  }
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-sm {
  padding: 1rem 0;
}

.glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 0;
}

.nav-wrap {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand span {
  color: var(--accent);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(340px, 96vw);
  padding: 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}

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

.nav-menu a {
  padding: 0.52rem 0.7rem;
  border-radius: 10px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.15);
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 16, 34, 0.78),
    rgba(10, 16, 34, 0.45),
    rgba(255, 107, 0, 0.25)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-card {
  padding: 1.4rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-pills span {
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.84rem;
}

.kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 6vw, 3.3rem);
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

p {
  color: var(--text);
  line-height: 1.65;
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0.78rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), #ff9347);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.35);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

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

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.5);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(5);
    opacity: 0;
  }
}

.trust-bar p {
  padding: 0.9rem;
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card {
  padding: 1rem;
  text-align: center;
}

.stat-card h3 {
  margin: 0;
  font-size: 1.7rem;
  color: var(--accent);
}

.cards-5 {
  grid-template-columns: 1fr;
}

.tour-card,
.service-card,
.why-card,
.contact-card,
.form-card,
.info-card,
.step-card,
.package-card {
  padding: 1rem;
  border-radius: 14px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.tour-card:hover,
.service-card:hover,
.why-card:hover,
.package-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(250, 204, 21, 0.15);
  border-color: rgba(250, 204, 21, 0.45);
}

.tour-card img,
.package-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.slider {
  position: relative;
  padding: 0.6rem;
}

.slides {
  min-height: 380px;
}

.slide {
  position: absolute;
  inset: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.slide figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 380px;
  padding-bottom: 0.5rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.slider-dots button.active {
  width: 26px;
  background: var(--accent);
}

.services-grid,
.why-grid,
.contact-grid,
.about-grid,
.steps-grid,
.info-grid,
.package-grid {
  grid-template-columns: 1fr;
}

.icon {
  display: inline-grid;
  place-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.3),
    rgba(250, 204, 21, 0.2)
  );
}

.testimonials {
  position: relative;
  min-height: 170px;
  padding: 1.2rem;
}

.testimonial {
  position: absolute;
  inset: 1.2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial.is-active {
  opacity: 1;
}

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

.gallery-item {
  border: 0;
  padding: 0;
  background: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  height: 100%;
  min-height: 130px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.page-hero-content {
  margin-top: 1rem;
  padding: 1.2rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge-list span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.step-number {
  display: inline-grid;
  place-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), #ff9347);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cta-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255, 107, 0, 0.8),
    rgba(250, 204, 21, 0.7),
    rgba(15, 23, 42, 0.6)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.contact-card p {
  margin: 0.35rem 0;
}

.form-card {
  display: grid;
  gap: 0.45rem;
}

label {
  font-size: 0.9rem;
  color: #cbd5e1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(250, 204, 21, 0.65);
  outline-offset: 1px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.float-btn {
  position: fixed;
  right: 0.9rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-weight: 700;
  z-index: 1200;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.5);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-btn.whatsapp {
  bottom: 5.2rem;
  background: #25d366;
  color: #fff;
}

.float-btn.call {
  bottom: 1.1rem;
  background: linear-gradient(120deg, var(--primary), #ff9347);
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  display: none;
  place-items: center;
  z-index: 1300;
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.footer {
  padding: 1.5rem 0 6.5rem;
  text-align: center;
  color: #cbd5e1;
}

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

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

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 0.2rem;
  }

  .quick-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cards-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 1rem;
  }

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

@media (min-width: 1040px) {
  .section {
    padding: 5rem 0;
  }

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

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

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

  .hero-card {
    max-width: 760px;
    padding: 2rem;
  }

  .float-btn {
    right: 1.6rem;
  }

  .footer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
