:root {
  --navy: #0b1f3a;
  --navy-deep: #081629;
  --gold: #d4af37;
  --text: #1f2937;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
  --radius: 18px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-top {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.brand-bottom {
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 4px;
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-cta {
  color: var(--navy);
  background: var(--gold);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-cta-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.94), rgba(11, 31, 58, 0.82)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero-helper {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-full {
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card-inner h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.hero-card-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.hero-card-inner li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-inner li:last-child {
  border-bottom: 0;
}

.hero-card-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

/* Sections */
.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--bg);
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
}

.section-subtext {
  max-width: 700px;
  margin: 12px auto 0;
  color: var(--muted);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

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

.info-card,
.feature-box,
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.info-card h3,
.feature-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--navy);
}

.info-card p,
.feature-box p {
  margin: 0;
  color: var(--muted);
}

.destination-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.destination-card:hover,
.destination-card:focus {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.12);
  outline: none;
}

/* Enquiry */
.enquiry-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.enquiry-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
}

.enquiry-copy p {
  color: var(--muted);
}

.contact-mini {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-mini a {
  color: var(--navy);
  font-weight: 700;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 6px;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover {
  color: var(--gold);
}

/* Sticky WhatsApp */
.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}

/* Responsive */
@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .card-grid,
  .feature-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 70px;
    align-items: flex-start;
    padding: 12px 0;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-top {
    font-size: 1.7rem;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .sticky-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}