/* ═══════════════════════════════════════════
   EXCELPATH360 — Design System
   Aesthetic: Warm editorial / premium consultancy
   Fonts: Playfair Display + Plus Jakarta Sans
   Palette: Cream + Forest Green + Saffron Gold
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF8F3;
  --cream-2: #F2EDE3;
  --cream-3: #E8E0D0;
  --forest: #1B4332;
  --forest-mid: #2D6A4F;
  --forest-light: #40916C;
  --forest-glow: rgba(27,67,50,0.08);
  --gold: #C9860A;
  --gold-light: #F0A500;
  --gold-bg: rgba(201,134,10,0.1);
  --gold-border: rgba(201,134,10,0.25);
  --rust: #C44B1B;
  --sky-blue: #1A6B9A;
  --ink: #1A1A14;
  --ink-2: #2C2C24;
  --body: #4A4A38;
  --muted: #7A7A68;
  --border: rgba(27,67,50,0.1);
  --border-2: rgba(27,67,50,0.15);
  --white: #FFFFFF;
  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--forest); background: var(--forest-glow); }
.nav-links a.active { color: var(--forest); font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.5; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 6px 8px 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(27,67,50,0.12);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px !important;
  border-radius: 8px;
  font-size: 13px !important;
  color: var(--body) !important;
  font-weight: 400 !important;
}
.dropdown-menu a:hover { color: var(--forest) !important; background: var(--forest-glow) !important; }

.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

/* ─── SHARED PAGE HERO (compact strip) ─── */
.page-hero {
  background: var(--forest);
  padding: 100px 52px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 180px;
  background: radial-gradient(ellipse, rgba(201,134,10,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero::after { display: none; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.42); }

.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,134,10,0.13);
  border: 1px solid rgba(201,134,10,0.28);
  color: var(--gold-light);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin: 0 auto 8px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
  max-width: 860px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 13px; color: rgba(255,255,255,0.52);
  max-width: 680px; line-height: 1.5;
  font-weight: 300; position: relative; z-index: 1;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media(max-width:900px) {
  .page-hero { padding: 92px 28px 28px; }
  .page-hero h1 { white-space: normal; font-size: clamp(20px, 4vw, 30px); }
  .page-hero p  { white-space: normal; font-size: 13px; }
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.section { padding: 96px 52px; max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--cream-2); padding: 96px 0; }
.section-dark { background: var(--forest); padding: 96px 0; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px; display: inline-flex;
  align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-forest { color: var(--forest-mid); }
.eyebrow-gold { color: var(--gold); }
.eyebrow-white { color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 18px;
  color: var(--ink);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--forest-mid); }
.section-title.light em { color: var(--gold-light); }
.section-sub {
  font-size: 17px; color: var(--body);
  max-width: 580px; line-height: 1.7;
  margin-bottom: 52px; font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--forest); color: var(--white);
  padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Plus Jakarta Sans', sans-serif; display: inline-block;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Plus Jakarta Sans', sans-serif; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--forest);
  padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--forest);
  cursor: pointer; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif; display: inline-block;
}
.btn-outline:hover { background: var(--forest-glow); }

.btn-ghost-white {
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 400;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif; display: inline-block;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(27,67,50,0.1); }

.card-cream {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.2s;
}
.card-cream:hover { transform: translateY(-3px); }

/* ─── STATS ─── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell { background: var(--white); padding: 32px 24px; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700;
  color: var(--forest); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ─── TESTIMONIAL ─── */
.testimonial {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-xl);
  padding: 52px 60px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute; top: 10px; left: 44px;
  font-family: 'Playfair Display', serif;
  font-size: 120px; color: var(--forest-light); opacity: 0.12;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink); line-height: 1.55;
  margin-bottom: 24px; font-style: italic;
  position: relative; z-index: 1;
}
.testimonial-source { font-size: 15px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--forest);
  padding: 14px 0; overflow: hidden;
}
.trust-track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 35s linear infinite;
  align-items: center;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-item {
  white-space: nowrap; color: rgba(255,255,255,0.45);
  font-size: 13px; font-weight: 400;
  display: flex; align-items: center; gap: 10px;
}
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); opacity: 0.7; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--forest);
  padding: 96px 52px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,134,10,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,4vw,52px);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p {
  font-size: 17px; color: rgba(255,255,255,0.6);
  margin-bottom: 40px; position: relative; z-index: 1;
  font-weight: 300;
}
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink-2);
  color: rgba(255,255,255,0.55);
  padding: 72px 52px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; margin-bottom: 20px; max-width: 260px; font-weight: 300; }
.footer-contact { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.50); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-eco { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-eco a { color: rgba(255,255,255,0.60); text-decoration: none; }
.footer-eco a:hover { color: var(--gold-light); }

/* ─── DESTINATIONS CARD GRID ─── */
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.dest-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 16px 22px;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,67,50,0.1); border-color: var(--forest-mid); }
.dest-flag-wrap { width: 72px; height: 48px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-2); margin-bottom: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.dest-flag-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.dest-sub { font-size: 11px; color: var(--muted); line-height: 1.4; }
@media(max-width:600px) { .dest-grid { grid-template-columns: repeat(2,1fr); } }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links .hide-md { display: none; }
  .section, .container, .cta-banner { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding: 120px 24px 64px; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}
