* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #06283d;
  --ocean: #0b6e8f;
  --teal: #23b7a3;
  --sand: #f6efe2;
  --cream: #fffaf0;
  --coral: #ff7657;
  --gold: #d9a441;
  --ink: #17313f;
  --muted: #667985;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 40, 61, 0.16);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(6, 40, 61, 0.82) 0%, rgba(6, 40, 61, 0.58) 45%, rgba(6, 40, 61, 0.22) 100%),
    url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--cream), transparent);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7%;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta,
.language-toggle {
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.language-toggle {
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.mobile-menu {
  display: none;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 1.25rem;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  padding: 7% 7% 10%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
}

.hero-content {
  max-width: 880px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.contact-buttons a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #ff9f70);
  box-shadow: 0 16px 30px rgba(255, 118, 87, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.full {
  width: 100%;
}

.hero-card {
  align-self: end;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.hero-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.3;
}

.trust-strip {
  position: relative;
  z-index: 5;
  width: min(1120px, 86%);
  margin: -46px auto 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(6, 40, 61, 0.12);
  box-shadow: var(--shadow);
}

.trust-strip div {
  background: var(--white);
  padding: 24px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(1180px, 86%);
  margin: 0 auto;
  padding: 82px 0;
}

.section-grid.two {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card {
  min-height: 365px;
  color: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-card::before,
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 40, 61, 0.82) 100%);
}

.image-card > *, .destination-card > * {
  position: relative;
  z-index: 1;
}

.image-card h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.image-card p {
  color: rgba(255,255,255,0.84);
}

.luxury { background-image: url("https://images.unsplash.com/photo-1622779536320-bb5f5b501a06?auto=format&fit=crop&w=1200&q=82"); }
.adventure { background-image: url("https://images.unsplash.com/photo-1537953773345-d172ccf13cf1?auto=format&fit=crop&w=1200&q=82"); }
.honeymoon { background-image: url("https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=1200&q=82"); }

.destinations {
  width: 100%;
  max-width: none;
  padding: 96px 7%;
  background: #eef8f5;
}

.destinations > h2,
.destinations > .section-label {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.destination-grid {
  width: min(1180px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.destination-card {
  min-height: 430px;
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.destination-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 900;
}

.destination-card h3 {
  font-size: 1.7rem;
}

.destination-card p {
  color: rgba(255,255,255,0.84);
}

.maldives { background-image: url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=1200&q=82"); }
.bali { background-image: url("https://images.unsplash.com/photo-1537953773345-d172ccf13cf1?auto=format&fit=crop&w=1200&q=82"); }
.thailand { background-image: url("https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=1200&q=82"); }
.bora { background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=82"); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(6, 40, 61, 0.08);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ocean);
  margin-bottom: 22px;
  font-weight: 900;
}

.step h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 56px;
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-panel h2 {
  color: var(--white);
}

.about-panel p {
  color: rgba(255,255,255,0.78);
}

.book {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 28px;
}

.contact-buttons {
  margin-top: 28px;
}

.contact-buttons a {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(6, 40, 61, 0.08);
}

.booking-form {
  background: var(--white);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.booking-form span {
  display: block;
  margin-bottom: 8px;
}

input, textarea {
  width: 100%;
  border: 1px solid #d8e2e4;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfdfc;
}

input:focus, textarea:focus {
  outline: 3px solid rgba(35, 183, 163, 0.2);
  border-color: var(--teal);
}

.form-note {
  margin-top: 13px;
  font-size: 0.9rem !important;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 7%;
  color: var(--white);
  background: var(--navy);
}

.footer p {
  color: rgba(255,255,255,0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.86);
}

@media (max-width: 980px) {
  .mobile-menu { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 7%;
    right: 7%;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 22px;
    background: rgba(6, 40, 61, 0.96);
  }
  .nav-links.open { display: flex; }
  .hero,
  .section-grid.two,
  .about-panel,
  .book {
    grid-template-columns: 1fr;
  }
  .hero-card { max-width: 440px; }
  .trust-strip,
  .cards.three,
  .steps,
  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-copy { position: static; }
}

@media (max-width: 640px) {
  .nav { padding: 18px 5%; }
  .hero { padding: 12% 5% 140px; }
  .section { width: 90%; padding: 62px 0; }
  .trust-strip { width: 90%; grid-template-columns: 1fr; margin-top: -70px; }
  .cards.three,
  .steps,
  .destination-grid { grid-template-columns: 1fr; }
  .destinations { padding: 70px 5%; }
  .about-panel, .booking-form { padding: 28px; }
  .footer { flex-direction: column; }
}
