/* ══════════════════════════════════════════
   A+One Holidays – Main Stylesheet
   ══════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --gold: #e8a020;
  --gold-light: #f5c842;
  --red: #8b1a1a;
  --red-dark: #6d1414;
  --cream: #fff8ee;
  --charcoal: #1a1a1a;
  --text-muted: #6b6057;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0ece4; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ══════════════════════════════════════════
   PAGE TRANSITION
   ══════════════════════════════════════════ */
body { animation: pageFade 0.3s ease; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(20, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  text-decoration: none; cursor: pointer;
}
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900; font-size: 0.85rem; color: #1a1a1a; flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .primary {
  font-family: "Montserrat", sans-serif;
  font-weight: 900; color: #fff; font-size: 1.05rem;
}
.nav-logo-text .tagline {
  font-size: 0.65rem; color: var(--gold-light);
  letter-spacing: 0.05em; font-weight: 300;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.875rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s, background 0.2s; cursor: pointer;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active-link { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 0.625rem !important;
}
.nav-cta:hover {
  background: #d08c0d !important;
  color: #1a1a1a !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0; transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  z-index: 850;
  background: rgba(15,7,7,0.98);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(232,160,32,0.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.75rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════ */

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #1a1a1a;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.25s;
}
.btn-gold:hover {
  background: #d08c0d; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.25s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}
.btn-red {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.25s;
}
.btn-red:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.4);
}

/* Section layout */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); background: rgba(139,26,26,0.08);
  padding: 0.3rem 0.9rem; border-radius: 999px; margin-bottom: 0.875rem;
}
.section-title {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.1;
}
.section-sub {
  color: var(--text-muted); margin-top: 0.75rem;
  max-width: 500px; line-height: 1.7; font-size: 0.95rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #0d0505 0%, #2a0808 40%, #6b1414 100%);
  padding: 8rem 1.5rem 4rem; text-align: center;
}
.page-hero h1 {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-top: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65); max-width: 520px;
  margin: 0.75rem auto 0; line-height: 1.7;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, #0d0505 0%, #4a1010 50%, #8b1a1a 100%);
  padding: 4rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.65); margin-bottom: 2rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* Forms */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: #5a4e45; margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-control {
  width: 100%; padding: 0.875rem 1rem;
  border-radius: 0.75rem; border: 2px solid #e5ddd0;
  background: #fdfaf6; outline: none;
  font-size: 0.9rem; font-family: "Inter", sans-serif;
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s;
}
.form-control:focus { border-color: var(--red); background: #fff; }
.form-control::placeholder { color: #b0a090; }

/* ══════════════════════════════════════════
   PAGE 1 – HOME
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0505 0%, #1e0a0a 30%, #5a0f0f 65%, #8b1a1a 85%, #b87010 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 6rem 1.5rem 4rem;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.04); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 999px; margin-bottom: 2rem;
  animation: fadeUp 0.8s both;
}
.hero h1 {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem); color: #fff;
  line-height: 0.95; text-align: center; margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.15s both;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72); font-weight: 300;
  text-align: center; max-width: 600px; line-height: 1.7;
  margin-bottom: 2.5rem; animation: fadeUp 0.8s 0.3s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s 0.45s both; margin-bottom: 4rem;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 1.25rem;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
  max-width: 600px; width: 100%; animation: fadeUp 0.8s 0.6s both;
}
.hero-stat { padding: 1.5rem 1rem; text-align: center; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
.stat-num {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: 2.5rem; color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600; margin-top: 0.3rem;
}

/* Marquee */
.marquee-bar { background: var(--gold); overflow: hidden; padding: 0.75rem 0; }
.marquee-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: "Montserrat", sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #1a1a1a;
}

/* Feature cards */
.home-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: #fff; border-radius: 1.25rem;
  padding: 2rem 1.75rem; border: 1px solid #ede8de;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.feature-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.feature-title {
  font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: 1rem; margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Destination strip */
.dest-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.dest-tile {
  position: relative; border-radius: 1rem; overflow: hidden;
  height: 200px; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.dest-tile:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.dest-tile-bg { position: absolute; inset: 0; }
.dest-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,5,0.88) 0%, transparent 55%);
  transition: background 0.3s;
}
.dest-tile:hover .dest-tile-overlay {
  background: linear-gradient(to top, rgba(100,15,15,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.dest-tile-emoji {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%); font-size: 3rem; transition: transform 0.3s;
}
.dest-tile:hover .dest-tile-emoji { transform: translate(-50%, -65%) scale(1.1); }
.dest-tile-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; }
.dest-tile-name { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.95rem; color: #fff; }
.dest-tile-tag { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-top: 0.1rem; }

/* Testimonials */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.testimonial-card {
  background: #fff; border-radius: 1.25rem;
  padding: 1.75rem; border: 1px solid #ede8de;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testi-text { font-size: 0.9rem; line-height: 1.7; color: #4a4340; font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.875rem; }
.testi-loc { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   PAGE 2 – MEMBERSHIPS
   ══════════════════════════════════════════ */
.mem-section { padding: 5rem 1.5rem; background: #fff; }
.mem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; max-width: 900px; margin: 3rem auto 0;
}
.mem-card {
  border-radius: 1.5rem; overflow: hidden; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mem-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.22); }
.mem-shine {
  position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: skewX(-20deg); pointer-events: none; transition: left 0.6s ease;
}
.mem-card:hover .mem-shine { left: 120%; }
.mem-card-inner { padding: 2.5rem 2rem; }
.mem-tier {
  font-family: "Montserrat", sans-serif; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.mem-name { font-family: "Playfair Display", serif; font-weight: 900; font-size: 1.8rem; color: #fff; }
.mem-price {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: 3rem; color: #fff; line-height: 1; margin: 1.25rem 0;
}
.mem-price span { font-family: "Inter", sans-serif; font-weight: 300; font-size: 1rem; color: rgba(255,255,255,0.6); }
.mem-badge-best {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 10;
  background: var(--gold-light); color: #1a1a1a;
  font-family: "Montserrat", sans-serif; font-size: 0.65rem;
  font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.mem-benefits { list-style: none; margin: 1.5rem 0 2rem; }
.mem-benefit {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem; border-radius: 0.75rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.6rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.88); line-height: 1.5;
}
.mem-benefit .icon { font-size: 1rem; flex-shrink: 0; color: var(--gold-light); }
.mem-cta {
  width: 100%; background: var(--gold); color: #1a1a1a;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 1rem; border-radius: 0.875rem; border: none;
  cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.mem-cta:hover { background: #d08c0d; box-shadow: 0 8px 24px rgba(232,160,32,0.4); }
.mem-tc {
  text-align: center; font-size: 0.75rem; color: #a09080;
  max-width: 600px; margin: 2rem auto 0; line-height: 1.7;
}

/* Comparison table */
.comparison { padding: 4rem 1.5rem; background: var(--cream); }
.comp-table {
  max-width: 800px; margin: 2.5rem auto 0;
  border-radius: 1.25rem; overflow: hidden; border: 1px solid #e5ddd0;
}
.comp-table table { width: 100%; border-collapse: collapse; }
.comp-table th {
  padding: 1.1rem 1.25rem;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.85rem; text-align: left;
}
.comp-table th:first-child { background: #fff; color: var(--charcoal); }
.comp-table th.red-col { background: var(--red); color: #fff; text-align: center; }
.comp-table th.green-col { background: #246024; color: #fff; text-align: center; }
.comp-table td { padding: 0.875rem 1.25rem; border-top: 1px solid #ede8de; font-size: 0.875rem; background: #fff; }
.comp-table td.check-col { text-align: center; }
.comp-table tr:nth-child(even) td { background: #faf8f4; }
.check { color: #22a855; font-size: 1.1rem; }
.cross { color: #ccc; font-size: 1rem; }

/* ══════════════════════════════════════════
   PAGE 3 – HOTELS
   ══════════════════════════════════════════ */
.hotels-section { padding: 5rem 1.5rem; background: #fff; }
.tab-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin: 2.5rem 0 2rem;
}
.tab-btn {
  padding: 0.6rem 1.25rem; border-radius: 999px;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.8rem;
  cursor: pointer; border: 2px solid #e0d8cc; background: #fff;
  color: var(--charcoal); transition: all 0.25s; white-space: nowrap;
}
.tab-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.tab-btn:not(.active):hover { border-color: var(--red); color: var(--red); }
.hotel-panel { display: none; animation: panelIn 0.35s ease; }
.hotel-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hotel-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.75rem;
}
.hotel-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem; border-radius: 0.875rem;
  background: #fff; border: 1px solid #ede8de;
  font-size: 0.875rem; transition: all 0.2s; cursor: default;
}
.hotel-item:hover { background: var(--cream); border-color: var(--gold); transform: translateX(3px); }
.hotels-note {
  margin-top: 3rem;
  background: linear-gradient(135deg, #0d0505, #4a1010);
  border-radius: 1.25rem; padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.hotels-note h3 { font-family: "Playfair Display", serif; font-weight: 900; font-size: 1.5rem; color: #fff; }
.hotels-note p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-top: 0.3rem; }

/* ══════════════════════════════════════════
   PAGE 4 – DESTINATIONS
   ══════════════════════════════════════════ */
.dest-section { padding: 5rem 1.5rem; background: var(--cream); }
.dest-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.dest-full-card {
  border-radius: 1.25rem; overflow: hidden; position: relative;
  height: 260px; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.dest-full-card:hover { transform: translateY(-7px) scale(1.02); box-shadow: 0 24px 50px rgba(0,0,0,0.22); }
.dest-full-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,5,0.88), transparent 55%);
  transition: background 0.3s;
}
.dest-full-card:hover .overlay {
  background: linear-gradient(to top, rgba(100,15,15,0.9), rgba(0,0,0,0.25) 60%, transparent 100%);
}
.dest-full-card .dest-emoji {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -65%); font-size: 3.5rem; transition: transform 0.3s;
}
.dest-full-card:hover .dest-emoji { transform: translate(-50%, -70%) scale(1.1); }
.dest-full-card .dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.dest-city { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; }
.dest-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.dest-enquire-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-size: 0.65rem; font-family: "Montserrat", sans-serif; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  opacity: 0; transition: opacity 0.3s;
}
.dest-full-card:hover .dest-enquire-badge { opacity: 1; }

/* Offers strip */
.offers-strip {
  background: linear-gradient(135deg, #0d0505, #3a0f0f, #7a1a1a);
  padding: 4rem 1.5rem;
}
.offers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.offer-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem; padding: 1.75rem;
  transition: background 0.3s, transform 0.3s;
}
.offer-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.offer-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.offer-title { font-family: "Montserrat", sans-serif; font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.offer-desc { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   PAGE 5 – ABOUT
   ══════════════════════════════════════════ */
.about-section { padding: 5rem 1.5rem; background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-visual {
  background: linear-gradient(135deg, #0d0505, #4a1010, #8b1a1a);
  border-radius: 1.5rem; padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
}
.about-visual-accent {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: var(--gold); filter: blur(60px); opacity: 0.12;
  top: -50px; right: -50px;
}
.about-stat-list { list-style: none; }
.about-stat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.about-stat-item:last-child { border-bottom: none; }
.about-stat-key { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.about-stat-val { font-family: "Playfair Display", serif; font-weight: 900; color: var(--gold-light); font-size: 1.5rem; }
.about-body { color: var(--text-muted); line-height: 1.8; margin-top: 1.25rem; font-size: 0.95rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pillar { padding: 1.25rem; border-radius: 1rem; background: var(--cream); border: 1px solid #ede8de; }
.pillar-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pillar-title { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.3rem; }
.pillar-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.team-section { padding: 4rem 1.5rem; background: var(--cream); }
.team-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  text-align: center; border: 1px solid #ede8de;
  max-width: 380px; margin: 2rem auto 0;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #d84040);
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif; font-weight: 900;
  font-size: 1.5rem; color: #fff; margin: 0 auto 1rem;
}
.team-name { font-family: "Playfair Display", serif; font-weight: 900; font-size: 1.25rem; }
.team-role { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.25rem; }
.team-contact { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.team-contact a { color: var(--red); text-decoration: none; font-size: 0.875rem; font-weight: 500; }
.team-contact a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   PAGE 6 – CONTACT
   ══════════════════════════════════════════ */
.contact-layout {
  padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-info h2 { font-family: "Playfair Display", serif; font-weight: 900; font-size: 2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border-radius: 1rem; background: #fff; border: 1px solid #ede8de;
  margin-bottom: 0.875rem; transition: border-color 0.2s;
}
.contact-detail:hover { border-color: var(--gold); }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 0.75rem;
  background: rgba(139,26,26,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text .label {
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
}
.contact-detail-text .value { font-size: 0.9rem; font-weight: 500; margin-top: 0.2rem; }
.contact-detail-text a { color: var(--charcoal); text-decoration: none; }
.contact-detail-text a:hover { color: var(--red); }
.contact-form-card {
  background: #fff; border-radius: 1.5rem; padding: 2.5rem;
  border: 1px solid #ede8de; box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer { background: #0d0505; color: rgba(255,255,255,0.55); padding: 3.5rem 1.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about p { font-size: 0.85rem; line-height: 1.7; margin: 1rem 0; }
.footer-col-title {
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85); margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.85rem; transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem;
}

/* ══════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 1000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(5px); padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: var(--cream); border-radius: 1.5rem; padding: 2.5rem;
  max-width: 480px; width: 100%; position: relative;
  animation: scaleIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes scaleIn { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: #ede8de; border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  color: #6b6057; transition: background 0.2s;
}
.modal-close:hover { background: #ddd5c8; }
.modal-title {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: 1.5rem; text-align: center; margin-bottom: 1.75rem;
}

/* ══════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s; text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ══════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 5.5rem; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #1a1a1a; color: #fff;
  padding: 0.875rem 1.5rem; border-radius: 0.875rem;
  font-size: 0.875rem; font-family: "Inter", sans-serif;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3); z-index: 9999;
  max-width: 90vw; opacity: 0;
  transition: opacity 0.3s, transform 0.3s; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stat .stat-num { font-size: 1.75rem; }
  .dest-strip { grid-template-columns: repeat(2, 1fr); }
  .mem-grid { grid-template-columns: 1fr; }
}
