:root {
  --navy: #0b3c6d;
  --blue: #1f6fb2;
  --sky: #eaf4ff;
  --orange: #ffb067;
  --orange-deep: #ff8a3d;
  --white: #ffffff;
  --text: #17324d;
  --muted: #5f7388;
  --border: rgba(11, 60, 109, 0.12);
  --shadow: 0 20px 45px rgba(11, 60, 109, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 176, 103, 0.18), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 48%, #ffffff 100%);
}

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

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  max-width: 650px;
  margin-bottom: 2.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(31, 111, 178, 0.12);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title h1,
.section-title h2 {
  margin: 1rem 0 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn {
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  color: var(--white);
  box-shadow: 0 18px 35px rgba(255, 138, 61, 0.28);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn:hover,
.btn-outline:hover,
.card:hover,
.gallery-item:hover,
.package-card:hover,
.service-card:hover {
  transform: translateY(-6px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 60, 109, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--orange-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--sky);
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 1.2rem 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.96;
}

.hero-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

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

.stat {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 60, 109, 0.08);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-family: "Outfit", sans-serif;
}

.slider-shell {
  position: relative;
  min-height: 530px;
  padding: 1.2rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28));
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 1.2rem;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.slide-content {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 1.3rem;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 60, 109, 0), rgba(11, 60, 109, 0.9));
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1.6rem;
  transform: translateY(-50%);
}

.slider-controls button,
.lightbox button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 60, 109, 0.65);
  cursor: pointer;
}

.booking-panel,
.form-card,
.info-card,
.package-card,
.faq-item,
.card,
.service-card,
.testimonial-card,
.pricing-card,
.itinerary-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.booking-panel {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding: 1.3rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 60, 109, 0.14);
  background: #ffffff;
  color: var(--text);
}

.grid-3,
.grid-4,
.gallery-grid,
.destination-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

.card,
.service-card,
.package-card,
.testimonial-card,
.pricing-card,
.itinerary-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-media,
.gallery-item img,
.destination-banner {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img,
.gallery-item img,
.destination-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-body,
.service-card,
.testimonial-card,
.pricing-card,
.itinerary-card,
.package-card {
  padding: 1.35rem;
}

.card-body h3,
.service-card h3,
.package-card h3,
.pricing-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Outfit", sans-serif;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  color: var(--orange-deep);
  background: rgba(255, 176, 103, 0.16);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-list,
.highlights-list,
.policy-list,
.contact-list {
  display: grid;
  gap: 0.9rem;
}

.feature-list li,
.highlights-list li,
.policy-list li,
.contact-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
}

.feature-list i,
.highlights-list i,
.policy-list i,
.contact-list i {
  color: var(--orange-deep);
  margin-top: 0.18rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  color: var(--white);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(11, 60, 109, 0.96), rgba(31, 111, 178, 0.88)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Outfit", sans-serif;
}

.cta-banner p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-hero,
.destination-hero {
  position: relative;
  padding: 6rem 0 4rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 60, 109, 0.46), rgba(11, 60, 109, 0.8)),
    var(--hero-image, url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.page-hero .section-title p,
.destination-hero .section-title p {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(11, 60, 109, 0.72);
  border-radius: 50%;
}

.testimonial-card p,
.package-card p,
.pricing-card p,
.itinerary-card p,
.card-body p,
.service-card p {
  color: var(--muted);
  line-height: 1.8;
}

.rating {
  color: #f7b500;
  letter-spacing: 0.1em;
}

.faq-item {
  padding: 1.15rem 1.3rem;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: var(--text);
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 180px;
  margin-top: 0.9rem;
}

.footer {
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at top right, rgba(255, 176, 103, 0.24), transparent 25%),
    linear-gradient(180deg, #0b2744, #07192d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.74);
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-top: 0;
  font-family: "Outfit", sans-serif;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.sub-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(3, 15, 30, 0.88);
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox button.close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.contact-layout,
.destination-layout,
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.destination-layout {
  align-items: start;
}

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

.day-badge {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 111, 178, 0.12);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
}

.destination-summary {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding: 1.35rem;
}

.destination-summary .meta {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .destination-layout,
  .about-layout,
  .footer-grid,
  .booking-grid,
  .form-grid,
  .pricing-grid,
  .itinerary-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .destination-layout,
  .about-layout,
  .footer-grid,
  .booking-grid,
  .form-grid,
  .pricing-grid,
  .itinerary-grid,
  .stats,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .slider-shell {
    min-height: 420px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.5rem 0;
  }

  .grid-4,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .destination-hero {
    padding: 5.5rem 0 3rem;
  }

  .booking-panel {
    margin-top: -1rem;
  }
}
