/* ===== VARIABLES ===== */
:root {
  --navy: #1a3260;
  --navy-dark: #101e3d;
  --navy-mid: #1e3a72;
  --navy-light: #254589;
  --gold: #C9973A;
  --gold-bright: #F4C542;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --off-white: #f5f6fa;
  --cream: #faf9f7;
  --text: #111827;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --border: rgba(26,50,96,0.1);
  --border-light: rgba(26,50,96,0.06);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* This site is designed for a light palette only. Declaring this
     stops Chrome's "auto dark mode for web content" feature from
     repainting native form controls (select, date inputs, etc.) with
     its own dark/native chrome on top of our custom styles — it has
     no effect on the visitor's actual OS or browser dark mode setting. */
  color-scheme: light;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 11px 24px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,38,0.55) 0%, transparent 100%);
  pointer-events: none;
}
.navbar.scrolled {
  background: rgba(16,30,61,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.navbar.scrolled::before { display: none; }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 3px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700;
  margin-left: 12px;
  padding: 10px 22px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  font-size: 12.5px;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: none;
  box-shadow: 0 4px 16px rgba(201,151,58,0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=90');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,18,38,0.72) 0%, rgba(10,18,38,0.55) 50%, rgba(10,18,38,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 130px 28px 80px;
  max-width: 820px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}
.hero-accent { color: var(--gold-bright); display: block; }
.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
  max-width: 600px;
  margin: 0 auto;
  gap: 0;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-suffix { font-size: 1.6rem; color: var(--gold-bright); font-weight: 600; }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollGrow 1.8s ease-in-out infinite;
}
@keyframes scrollGrow {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,151,58,0.3);
  border-bottom: 1px solid rgba(201,151,58,0.3);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.marquee-track span strong { color: var(--gold); font-weight: 700; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--navy-dark); }
.section-cream { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}
.section-subtitle-light { color: rgba(255,255,255,0.55); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--navy);
  border-color: var(--navy);
}
.service-icon {
  width: 24px;
  height: 24px;
  color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-icon { color: var(--gold-bright); }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; }

/* ===== CHARTERS ===== */
.charters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.charter-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.charter-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.charter-img-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.charter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.85);
}
.charter-card:hover .charter-img { transform: scale(1.06); filter: brightness(0.75); }

.charter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,0.92) 0%, rgba(10,18,38,0.3) 50%, transparent 80%);
}
.charter-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.charter-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.charter-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.charter-country {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.charter-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
  display: none;
}
.charter-card:hover .charter-desc { display: block; }
.charter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(244,197,66,0.4);
  padding-bottom: 2px;
  transition: var(--transition);
}
.charter-link:hover { gap: 10px; border-bottom-color: var(--gold-bright); }

/* ===== OFFERS ===== */
.offers-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.offer-img-wrap { position: relative; height: 210px; overflow: hidden; }
.offer-card-featured .offer-img-wrap { height: 290px; }
.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.9);
}
.offer-card:hover .offer-img { transform: scale(1.05); filter: brightness(0.85); }
.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,0.6) 0%, transparent 55%);
}
.offer-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.offer-body { padding: 22px 22px 24px; }
.offer-meta { margin-bottom: 14px; }
.offer-dest {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.offer-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
}
.price-from { font-size: 12px; color: var(--text-subtle); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}
.price-per { font-size: 12px; color: var(--text-subtle); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack { position: relative; padding: 24px 24px 60px 0; }
.about-img { border-radius: var(--radius); object-fit: cover; }
.about-img-back { width: 100%; height: 420px; filter: brightness(0.97); }
.about-img-front {
  width: 58%;
  height: 240px;
  position: absolute;
  bottom: 0;
  right: -16px;
  z-index: 2;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge-card {
  position: absolute;
  top: 0;
  left: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  z-index: 3;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}
.about-title { text-align: left; }
.about-text {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 15.5px;
}
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
}
.feature-check {
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--navy-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.section-eyebrow-light { color: var(--gold); }
.contact-subtext {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 44px;
  margin-top: 14px;
  font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
.detail-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.detail-value { display: block; color: var(--white); font-weight: 400; font-size: 15px; }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid #dde1ec;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--text);
  background: #fafbfd;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,50,96,0.07);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath stroke='%231a3260' stroke-width='1.5' fill='none' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  height: 48px;
}
.form-group select:hover { border-color: #c5cce0; }
.form-group select option {
  color: var(--text);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  padding: 8px;
}

/* Native <select>/<input type="date"> kept in the DOM for real form
   submission and accessibility fallback, but visually replaced by the
   custom dropdown/calendar below — browsers don't let CSS reach the
   open dropdown list or calendar popup of native controls, so those
   are rebuilt from scratch here to match the rest of the page. */
.visually-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== CUSTOM DROPDOWN (service select) ===== */
.custom-select { position: relative; }
.custom-select-trigger {
  width: 100%;
  height: 48px;
  padding: 13px 38px 13px 16px;
  border: 1px solid #dde1ec;
  border-radius: var(--radius-sm);
  background: #fafbfd;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.custom-select-trigger:hover { border-color: #c5cce0; }
.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,50,96,0.07);
}
.custom-select-value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select-trigger[data-empty="true"] .custom-select-value { color: #94a3b8; }
.custom-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 12px;
  height: 7px;
  color: var(--navy);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  pointer-events: none;
}
.custom-select.is-open .custom-select-arrow { transform: translateY(-50%) rotate(180deg); }
.custom-select-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid #dde1ec;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  list-style: none;
}
.custom-select-option {
  padding: 11px 12px;
  font-size: 14.5px;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.custom-select-option:hover,
.custom-select-option.is-active {
  background: var(--off-white);
}
.custom-select-option.is-selected {
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
}
.custom-select-option.is-selected:hover,
.custom-select-option.is-selected.is-active {
  background: var(--navy-mid);
}

/* ===== CUSTOM DATE PICKER ===== */
.custom-date { position: relative; }
.custom-date-trigger {
  width: 100%;
  height: 48px;
  padding: 13px 16px;
  border: 1px solid #dde1ec;
  border-radius: var(--radius-sm);
  background: #fafbfd;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.custom-date-trigger:hover { border-color: #c5cce0; }
.custom-date-trigger:focus,
.custom-date-trigger.is-open {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,50,96,0.07);
}
.custom-date-value { color: var(--text); }
.custom-date-value[data-empty="true"] { color: #94a3b8; }
.custom-date-icon { width: 17px; height: 17px; color: var(--navy); flex-shrink: 0; }

.custom-calendar {
  position: absolute;
  z-index: 50;
  width: 280px;
  background: var(--white);
  border: 1px solid #dde1ec;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 16px;
}
.custom-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.custom-calendar-label {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.custom-calendar-nav {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.custom-calendar-nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.custom-calendar-nav svg { width: 14px; height: 14px; }
.custom-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.custom-calendar-weekdays span {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: 6px 0;
}
.custom-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.custom-calendar-day {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.custom-calendar-day:hover { background: var(--off-white); }
.custom-calendar-day.is-outside { color: var(--text-subtle); opacity: 0.45; }
.custom-calendar-day.is-today { font-weight: 700; color: var(--gold); }
.custom-calendar-day.is-selected {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.custom-calendar-day.is-selected:hover { background: var(--navy-mid); }
.custom-calendar-day.is-disabled {
  color: var(--text-subtle);
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.custom-calendar-clear,
.custom-calendar-today {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: var(--transition);
}
.custom-calendar-clear:hover,
.custom-calendar-today:hover { background: rgba(201,151,58,0.1); }

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-success[hidden] { display: none; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.form-error[hidden] { display: none; }
.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-loading[hidden] { display: none; }
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer { background: #0c1629; }
.footer-top {
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; opacity: 0.95; }
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 28px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  color: rgba(255,255,255,0.4);
  font-size: 13.5px;
  font-weight: 400;
  transition: var(--transition);
}
.footer-list a:hover { color: var(--gold-bright); }
.footer-contact-list li { color: rgba(255,255,255,0.4); font-size: 13.5px; line-height: 1.6; }
.footer-hours { margin-top: 4px; }
.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 12.5px; letter-spacing: 0.03em; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  overflow: hidden;
  margin-left: 16px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 11px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lang-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy-dark);
}
.lang-btn:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.18);
}

/* ===== FAB ===== */
.fab-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(201,151,58,0.45);
  z-index: 999;
  transition: var(--transition);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.fab-cta.visible { transform: scale(1); opacity: 1; pointer-events: auto; }
.fab-cta:hover   { transform: scale(1.1); background: var(--gold-light); }
.fab-cta svg     { width: 20px; height: 20px; }

/* WhatsApp FAB (left) */
.fab-whatsapp {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.fab-whatsapp.visible { transform: scale(1); opacity: 1; pointer-events: auto; }
.fab-whatsapp:hover   { transform: scale(1.1); background: #20bb5a; }
.fab-whatsapp svg     { width: 24px; height: 24px; }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .charters-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .offer-card-featured { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--navy-dark);
  }
  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 270px;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 28px 40px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 15px; width: 100%; padding: 12px 16px; }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0; }
  .section { padding: 72px 0; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card-featured { grid-column: span 1; }
  .charters-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .custom-calendar { width: min(280px, calc(100vw - 56px)); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .charters-grid { grid-template-columns: 1fr; }
  .charter-img-wrap { height: 280px; }
  .hero-stats { grid-template-columns: 1fr; border-top: none; gap: 20px; }
  .stat-item { border-right: none !important; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.1); }
}


/* ============================================================
   HORIZON TRAVEL — CAROUSEL + MODAL  (Batch 3)
   Appended block. Uses the existing :root brand variables.
   ============================================================ */

/* ===== CAROUSEL ===== */
/* Fills any positioned, fixed-height container (charter-img-wrap,
   offer-img-wrap, modal-media). */
.carousel { position: absolute; inset: 0; overflow: hidden; }
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide { min-width: 100%; height: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Branded placeholder shown until real images are uploaded */
.carousel-ph {
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(244,197,66,0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.carousel-ph::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23F4C542' stroke-opacity='0.5' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  background: rgba(16,30,61,0.55);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: var(--gold); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Dots */
.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  z-index: 4;
  display: flex; justify-content: center; gap: 6px;
}
.carousel-dot {
  width: 7px; height: 7px; padding: 0;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dot.is-active { background: var(--gold-bright); transform: scale(1.25); }

/* Overlay variant (charter cards): dots sit higher so they clear the
   text body, and the gradient overlay must not block arrow clicks. */
.carousel--overlay .carousel-dots { bottom: auto; top: 14px; }
.charter-overlay, .offer-overlay { pointer-events: none; }

.offer-card[data-modal], .charter-card[data-modal] { cursor: pointer; }
[data-modal]:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* On touch screens (no hover), keep arrows visible */
@media (hover: none) {
  .carousel-arrow { opacity: 1; background: rgba(16,30,61,0.45); }
}

/* ===== MODAL ===== */
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(10,18,38,0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: htModalFade 0.25s ease;
}
@keyframes htModalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-dialog {
  position: relative;
  display: flex; flex-direction: column;
  width: 100%; max-width: 640px;
  max-height: 90vh;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: htModalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes htModalPop { from { transform: translateY(16px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  background: rgba(16,30,61,0.55);
  color: #fff; cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.modal-close:hover { background: var(--gold); transform: rotate(90deg); }
.modal-close svg { width: 20px; height: 20px; }

.modal-body { overflow-y: auto; }
.modal-media { position: relative; height: 300px; background: var(--navy-dark); }

.modal-detail { padding: 28px 30px 32px; }
.modal-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; line-height: 1.2;
}
.modal-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.modal-included { color: #2f7d52; }
.modal-excluded { color: #9a5b2c; }

.modal-subhead {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin: 22px 0 12px;
  padding-bottom: 7px; border-bottom: 1px solid var(--border);
}

/* dates */
.modal-dates { display: flex; flex-direction: column; gap: 10px; }
.modal-date {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.modal-date-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.modal-date-label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.modal-date-price {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.15rem; color: var(--gold); white-space: nowrap;
}
.modal-date-sub { font-size: 12px; color: var(--text-subtle); margin-top: 3px; }

.modal-flights { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.modal-flights li {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline;
  font-size: 12px; color: var(--text-muted);
}
.modal-flight-route { font-weight: 600; color: var(--navy); }
.modal-flight-airline {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--off-white); color: var(--text-muted);
  padding: 1px 7px; border-radius: 20px;
}

/* hotels */
.modal-hotels { display: flex; flex-direction: column; gap: 10px; }
.modal-hotel {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 11px 14px;
}
.modal-hotel-name { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.modal-hotel-city { font-weight: 400; color: var(--text-subtle); }
.modal-hotel-desc { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.6; }

.modal-contact-btn { margin-top: 26px; width: 100%; justify-content: center; }

@media (max-width: 560px) {
  .modal-media { height: 220px; }
  .modal-detail { padding: 22px 20px 26px; }
  .modal-title { font-size: 1.35rem; }
}