:root {
  --bg: #06070b;
  --bg-soft: #0d0f16;
  --card: #11141d;
  --gold: #c9a86a;
  --gold-soft: #e0c48f;
  --text: #f5f1e8;
  --text-soft: #d8d1c5;
  --border: rgba(201, 168, 106, 0.28);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: 78px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.intro-section h2,
.text-col h2,
.request-text h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-intro,
.intro-section p,
.text-col p,
.request-text p,
.feature-card p,
.lifestyle-content p {
  color: var(--text-soft);
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('images/hero-cruise-pickup.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.18) 0%, rgba(4, 5, 8, 0.58) 55%, rgba(4, 5, 8, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 92%);
  margin: 0 auto;
  text-align: left;
  padding: 90px 0 70px;
}

.eyebrow {
  color: var(--gold-soft);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  max-width: 820px;
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(18px, 2.3vw, 23px);
  color: #f4eee2;
  margin: 0 0 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #0d0f16;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.intro-section {
  background: var(--bg);
  text-align: center;
}

.dark-section {
  background: var(--bg-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.reverse .split-layout {
  grid-template-columns: 1fr 1.05fr;
}

.reverse .image-col {
  order: 2;
}

.reverse .text-col {
  order: 1;
}

.image-col img {
  box-shadow: var(--shadow);
}

.text-col h2 {
  max-width: 580px;
}

.styled-list {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.styled-list li {
  margin-bottom: 10px;
}

.lifestyle-section {
  background: var(--bg-soft);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.lifestyle-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lifestyle-content {
  padding: 22px 24px 26px;
}

.lifestyle-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.request-section {
  background: var(--bg);
}

.request-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.request-text {
  padding-top: 10px;
}

.request-contact {
  margin-top: 22px;
}

.request-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 15px 16px;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #b7b2a9;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--gold);
}

.request-form textarea {
  min-height: 140px;
}

.request-form button,
.form-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  margin-top: 12px;
  background: linear-gradient(135deg, #d8c28a, #b89f5a);
  color: #000;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
}

.request-form button:hover,
.form-btn:hover {
  background: linear-gradient(135deg, #e5d3a3, #c9b06a);
  transform: translateY(-1px);
}

.date-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 14px;
}

.date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #b7b2a9;
  pointer-events: none;
  z-index: 2;
}

#travel-date {
  width: 100%;
  padding: 15px 48px 15px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 14px;
  font-size: 15px;
  outline: none;
}

#travel-date::placeholder {
  color: #b7b2a9;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  background: #05060a;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 15px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .split-layout,
  .reverse .split-layout,
  .request-wrapper {
    grid-template-columns: 1fr;
  }

  .reverse .image-col,
  .reverse .text-col {
    order: unset;
  }

  .features-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 78vh;
    background-size: cover;
    background-position: 68% center;
  }

  .hero-content {
    width: 100%;
    padding: 70px 20px 40px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 0.95;
    max-width: 320px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.45;
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 58px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 13px 16px;
    font-size: 15px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 92vh;
    background-position: 38% center;
    background-size: cover;
  }

  .hero-content {
    padding: 64px 20px 40px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.02;
    max-width: 300px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.45;
    max-width: 310px;
  }
}