* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0b1630;
  --navy-soft: #13213f;
  --gold: #caa74a;
  --cream: #f7f3eb;
  --white: #ffffff;
  --text: #1f2430;
  --muted: #6e7481;
  --line: rgba(11, 22, 48, 0.10);
  --shadow: 0 15px 40px rgba(12, 22, 45, 0.08);
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fcfaf6;
  line-height: 1.7;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 22, 48, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.brand-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 1.8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav-btn {
  padding: 14px 28px;
  border: 1px solid rgba(202, 167, 74, 0.65);
  border-radius: 999px;
  color: var(--gold) !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b1630;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 15, 31, 0.45), rgba(7, 15, 31, 0.60));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  padding: 100px 0;
}

.hero-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 34px;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 17px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #101010;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(202, 167, 74, 0.22);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

/* GENERAL */
.section {
  padding: 110px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.88rem;
  font-weight: 600;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.text-panel h2,
.destination-inner h2,
.contact-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-heading p,
.text-panel p,
.destination-inner p,
.contact-text p,
.service-card p,
.showcase-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ABOUT */
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: calc(var(--radius-lg) - 8px);
  z-index: 5;
  pointer-events: none;
}

.about-slider-wrap {
  width: 100%;
}

.about-slider {
  position: relative;
  width: 100%;
  min-height: 640px;
  background: #111;
}

.about-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
}

.about-slide img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(11, 22, 48, 0.45);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: rgba(202, 167, 74, 0.85);
  color: #111;
}

.slider-arrow-left {
  left: 22px;
}

.slider-arrow-right {
  right: 22px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

.framed-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 54px;
  box-shadow: var(--shadow);
  position: relative;
}

.framed-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(202, 167, 74, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.text-panel p {
  margin-bottom: 22px;
}

.text-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.02rem;
}

/* SERVICES */
.services-section {
  background: linear-gradient(to bottom, #fcfaf6, #f7f3eb);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(11, 22, 48, 0.08);
  border-radius: 28px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(202, 167, 74, 0.18);
  border-radius: 20px;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-trigger {
  cursor: pointer;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1;
}

/* SHOWCASE */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.showcase-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-image-frame {
  position: relative;
  overflow: hidden;
}

.showcase-image-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 16px;
  pointer-events: none;
}

.showcase-image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.showcase-content {
  padding: 34px 30px 36px;
}

.showcase-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 18px;
}

/* DESTINATIONS */
.destination-banner {
  padding-top: 40px;
}

.framed-banner {
  background:
    linear-gradient(rgba(11, 22, 48, 0.82), rgba(11, 22, 48, 0.82)),
    url("images/support.jpg") center/cover no-repeat;
  border-radius: 34px;
  padding: 80px 60px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.framed-banner::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(202, 167, 74, 0.25);
  border-radius: 24px;
  pointer-events: none;
}

.destination-inner h2,
.destination-inner p {
  color: var(--white);
}

.destination-inner p {
  max-width: 760px;
  margin: 0 auto;
}

/* CONTACT */
.contact-box {
  background: var(--navy);
  border-radius: 34px;
  padding: 56px 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-box::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(202, 167, 74, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.contact-text h2,
.contact-text p {
  color: var(--white);
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  margin-top: 24px;
}

.contact-info p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--white);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.inquiry-form select {
  color: var(--white);
  appearance: none;
}

.inquiry-form option {
  color: #111;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 140px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(202, 167, 74, 0.8);
  box-shadow: 0 0 0 3px rgba(202, 167, 74, 0.14);
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trip-duration {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--gold);
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: #081022;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .split-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .about-slider,
  .about-slides,
  .about-slide img {
    min-height: 460px;
  }

  .contact-box {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    padding: 18px 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 90px 0 80px;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .section {
    padding: 80px 0;
  }

  .framed-panel,
  .contact-box,
  .framed-banner {
    padding: 34px 24px;
  }

  .services-grid,
  .showcase-grid,
  .date-grid {
    grid-template-columns: 1fr;
  }

  .showcase-image-frame img {
    height: 280px;
  }

  .service-card h3,
  .showcase-content h3 {
    font-size: 1.8rem;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .slider-arrow-left {
    left: 14px;
  }

  .slider-arrow-right {
    right: 14px;
  }
}