/* ═══════════════════════════════════════
   TRAVELLIKENAME — PREMIUM STYLES
   ═══════════════════════════════════════ */

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07840;
  --navy: #0a0e1a;
  --navy-2: #111827;
  --navy-3: #1a2035;
  --navy-4: #232b42;
  --white: #f8f6f2;
  --muted: #9aa0b4;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,169,110,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy-2); border-top: 1px solid var(--glass-border);
}
.mobile-link {
  padding: 16px 24px; color: var(--muted);
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid var(--glass-border);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--white); background: var(--glass); }
.mobile-cta { color: var(--gold) !important; font-weight: 600; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(201,169,110,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,169,110,0.45); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-weight: 500; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold); font-weight: 600; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.full-width { width: 100%; text-align: center; display: block; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 48px;
  text-align: center;
}
.section-title.left { text-align: left; }
.section-title em { color: var(--gold); font-style: italic; }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.45) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,26,0.3) 0%,
    rgba(10,14,26,0.1) 40%,
    rgba(10,14,26,0.7) 80%,
    var(--navy) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 780px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid var(--glass-border);
  color: var(--gold); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.1rem; color: rgba(248,246,242,0.8);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 36px;
  flex-wrap: wrap; gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ─── PARTNERS ─── */
#partners {
  padding: 40px 0; border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.partners-label {
  text-align: center; font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.partners-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.partner-tag {
  padding: 6px 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 100px; font-size: 0.8rem; color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
}
.partner-tag:hover { color: var(--gold-light); border-color: var(--gold); }

/* ─── HOW IT WORKS ─── */
#how-it-works {
  padding: 100px 0;
  text-align: center;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 28px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.step-num {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: rgba(201,169,110,0.12);
}
.step-icon { font-size: 2.4rem; margin-bottom: 16px; }
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--white); margin-bottom: 12px;
}
.step-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── ABOUT ─── */
#about { padding: 100px 0; background: var(--navy-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center;
}
.about-photo-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.photo-inner { text-align: center; }
.photo-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.photo-text { color: var(--muted); font-size: 0.85rem; }
.about-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
}
.badge-icon { font-size: 1.2rem; color: var(--navy); }
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.badge-desc { font-size: 0.72rem; color: rgba(10,14,26,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.about-bio { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.about-highlights { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.highlight-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--white); }
.highlight-icon { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ─── SERVICES ─── */
#services { padding: 100px 0; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.free-badge {
  background: #10b981 !important; /* Elegant Emerald Green for Free badges */
  color: var(--white) !important;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .book-trigger {
  margin-top: auto;
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,169,110,0.07), var(--glass));
}
.service-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 100px; text-transform: uppercase;
}
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--white); margin-bottom: 8px;
}
.service-duration { color: var(--gold); font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 0.85rem; color: var(--muted); padding-left: 18px; position: relative; }
.service-features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 100px 0; background: var(--navy-2); text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 24px; }
.testi-grid.single { display: flex; justify-content: center; }
.testi-grid.single .testi-card { max-width: 800px; width: 100%; }
.testi-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 32px 28px; text-align: left;
}
.testi-card.has-proof {
  display: flex;
  gap: 32px;
  padding: 0;
  overflow: hidden;
}
.testi-proof-side {
  flex-shrink: 0;
  width: 340px;
}
.testi-proof-side a {
  display: block;
  height: 100%;
}
.testi-proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.testi-card.has-proof:hover .testi-proof-img {
  transform: scale(1.02);
}
.testi-text-side {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .testi-card.has-proof {
    flex-direction: column;
    gap: 0;
  }
  .testi-proof-side {
    width: 100%;
    height: 300px;
  }
  .testi-text-side {
    padding: 32px 28px;
  }
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text-side p, .testi-card > p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.testi-trip { font-size: 0.75rem; color: var(--gold); }
.testi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  transition: color var(--transition);
}
.testi-link:hover {
  color: var(--gold);
}
.testi-link svg {
  flex-shrink: 0;
  stroke: currentColor;
}

/* ─── BOOKING SECTION ─── */
#book {
  padding: 100px 0;
  text-align: center;
}
.book-cal-container {
  max-width: 900px;
  margin: 0 auto;
}
.drawer-cal {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 700px;
  border: 1px solid var(--glass-border);
}
#drawer-calendly {
  width: 100%;
  height: 700px;
}
#drawer-calendly iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

/* ─── FAQ ─── */
#faq { padding: 100px 0; background: var(--navy-2); }
#faq .section-title { margin-bottom: 40px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1rem; font-weight: 500;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: transform var(--transition); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  color: var(--muted); font-size: 0.92rem; line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding var(--transition);
  padding-bottom: 0;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }

/* ─── FOOTER ─── */
#footer { padding: 60px 0 32px; border-top: 1px solid var(--glass-border); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 280px; line-height: 1.7; }
.footer-links-col { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(154,160,180,0.6); line-height: 1.7; }
.footer-disclaimer { margin-top: 6px; font-size: 0.72rem !important; }
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .steps-grid, .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-placeholder { aspect-ratio: 4/3; max-width: 340px; margin: 0 auto 40px; }
  .about-badge-card { bottom: -10px; right: 10px; }
  .book-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-col { flex-wrap: wrap; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .stat-divider { display: none; }
  .hero-stats { flex-direction: row; gap: 16px; }
}
@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; }
}
