/* SRI HELA - HOMEPAGE STYLES */
:root {
  /* ── Homepage local aliases ── */
  --cream:      #F5F3EE;            /* Ivory background    */
  --dark-green: #0F3D2E;            /* Emerald Primary     */
  --gold:       #C9A44C;            /* Champagne Gold      */
  --gold-light: #D4B46A;            /* Lighter gold        */
  --sage:       #8FAF9B;            /* Sage Green          */
  --text-dark:  #1C2B22;
  --text-mid:   #4A5E50;
  --text-light: #6B7C6E;
  --white:      #FFFFFF;
  --font-serif: 'Poppins', sans-serif;
  --font-sans:  'Open Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img {display: block;max-width: 100%;}

.hp-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV OVERRIDES — Homepage only ──
   White bar at top (hero is ivory), dark emerald when scrolled
   ─────────────────────────────────── */
body:not(.inner-page) .main-header {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 16px rgba(15,61,46,0.07) !important;
}

body:not(.inner-page) .main-header .nav-link {
  color: var(--dark-green) !important;
  text-shadow: none !important;
}
body:not(.inner-page) .main-header .nav-link:hover,
body:not(.inner-page) .main-header .nav-link.active { color: var(--gold) !important; }

body:not(.inner-page) .main-header .nav-cta-btn {
  background: var(--dark-green) !important;
  color: #fff !important;
}
body:not(.inner-page) .main-header .nav-cta-btn:hover { background: var(--gold) !important; }
body:not(.inner-page) .main-header .mobile-menu-toggle { color: var(--dark-green) !important; }

/* Scrolled state */
body:not(.inner-page) .main-header.scrolled {
  background: rgba(15,61,46,0.97) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.20) !important;
}
body:not(.inner-page) .main-header.scrolled .nav-link { color: rgba(255,255,255,0.9) !important; }
body:not(.inner-page) .main-header.scrolled .nav-link:hover,
body:not(.inner-page) .main-header.scrolled .nav-link.active { color: var(--gold) !important; }
body:not(.inner-page) .main-header.scrolled .nav-cta-btn { background: var(--gold) !important; color: #fff !important; }
body:not(.inner-page) .main-header.scrolled .mobile-menu-toggle { color: #fff !important; }

/* HERO (VIDEO BACKGROUND) */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hp-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 61, 46, 0.7), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.hero-video-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.hero-control-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-control-btn:active {
  transform: scale(0.95);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  /* padding-top: 80px; */ /* offset for header */
}

.hero-center {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 2px; background: var(--gold); border-radius: 1px;
}

.hero-title-dramatic {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-title-dramatic em {
  font-style: italic; color: var(--gold); display: block; font-weight: 600;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem auto;
  border-radius: 2px;
}

.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(200,146,42,0.4);
  font-family: var(--font-heading);
}
.btn-gold:hover { background: #a87820; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,146,42,0.5); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid #fff;
  transition: var(--transition);
  font-family: var(--font-heading);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.btn-outline-white:hover { background: #fff; color: var(--text-dark); }

/* SECTION COMMON */
.hp-section { padding: 5rem 0; }
.hp-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.hp-section-header .sec-left .sec-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.4rem;
}
.hp-section-header .sec-left h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.15;
}
.hp-section-header .sec-right a {
  font-size: 0.85rem; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--text-dark); padding-bottom: 2px;
  transition: var(--transition); white-space: nowrap;
}
.hp-section-header .sec-right a:hover { color: var(--gold); border-color: var(--gold); }

.hp-section.bg-white { background: #fff; }
.hp-section.bg-cream { background: var(--cream); }

/* ── WHY CHOOSE US — MODERN SPLIT PANEL ── */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 680px;
}

/* LEFT DARK PANEL */
.why-left-panel {
  background: linear-gradient(160deg, #071c15 0%, #0d3325 100%);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circle on left panel */
.why-left-panel::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 76, 0.12);
  pointer-events: none;
}
.why-left-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 164, 76, 0.04);
  pointer-events: none;
}

.why-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.why-eyebrow-badge::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.why-left-panel h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.why-left-panel h2 span {
  color: var(--gold);
}

.why-lead-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 0;
}

.why-left-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
  margin: 1.75rem 0;
  border-radius: 1px;
}

.why-sub-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.why-closing-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.why-closing-tag .wct-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 164, 76, 0.3);
}

/* RIGHT FEATURE CARDS PANEL */
.why-right-panel {
  background: var(--cream);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.why-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(15, 61, 46, 0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(15, 61, 46, 0.1);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 164, 76, 0.08);
  border: 1px solid rgba(201, 164, 76, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.why-card-body h4 {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.why-card-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── OUR PROCESS SECTION ── */
.process-section {
  background: #ffffff;
  padding: 6rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-green), var(--gold), var(--dark-green));
  opacity: 0.5;
}

.process-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4.5rem;
}

.process-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.process-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.process-header h2 span {
  color: var(--dark-green);
}

.process-header p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Steps row */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.ps-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.ps-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(15, 61, 46, 0.08);
  flex-shrink: 0;
}

/* horizontal connector line */
.ps-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, rgba(201,164,76,0.4), rgba(201,164,76,0.1));
  z-index: 1;
}

.process-step.last .ps-connector {
  display: none;
}

.ps-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 164, 76, 0.06);
  border: 1px solid rgba(201, 164, 76, 0.18);
  color: var(--gold);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ps-content h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.ps-content p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Trust Badges */
.process-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(15, 61, 46, 0.07);
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.process-badge {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.process-badge i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.process-badge span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}


/* DESTINATIONS */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 250px 220px;
  gap: 0.85rem;
}
.dest-tile { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.dest-tile.large { grid-column: span 2; grid-row: span 2; }
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-tile:hover img { transform: scale(1.07); }
.dest-tile .dt-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 65%);
  padding: 1.25rem 1rem;
}
.dest-tile .dt-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.2; }
.dest-tile .dt-sub { font-size: 0.77rem; color: rgba(255,255,255,0.8); margin-top: 0.2rem; }
.dest-tile .dt-arrow {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  opacity: 0; transform: translateY(-4px);
  transition: var(--transition);
}
.dest-tile:hover .dt-arrow { opacity: 1; transform: translateY(0); }

/* TESTIMONIALS */
.testimonials-section {background: var(--cream);padding: 5rem 0;width: 100vw;overflow-x: hidden;}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--cream); border-radius: 12px; padding: 2rem; position: relative; transition: var(--transition); }
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testi-card .tq-mark {
  font-family: var(--font-sans); font-size: 5rem; line-height: 0.6;
  color: var(--gold); opacity: 0.3; position: absolute; top: 1.5rem; left: 1.5rem;
}
.testi-card .tq-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; padding-top: 1.5rem; position: relative; z-index: 1; }
.testi-card .tq-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }
.testi-card .tq-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-card .tq-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-card .tq-author .tq-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.testi-card .tq-author .tq-country { font-size: 0.78rem; color: var(--text-light); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: var(--transition); display: flex; flex-direction: column;
  height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.blog-card .bc-img { height: 210px; overflow: hidden; position: relative; flex-shrink: 0; width: 100%; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .bc-img img { transform: scale(1.07); }
.blog-card .bc-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.65rem;
  border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
}
.blog-card .bc-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .bc-meta { font-size: 0.77rem; color: var(--text-light); margin-bottom: 0.6rem; }
.blog-card .bc-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 0.5rem; flex: 1; }
.blog-card .bc-read { font-size: 0.78rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 0.3rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* CTA */
.hp-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071c15 0%, #0f3d2e 50%, #071c15 100%);
  padding: 7rem 2rem;
  text-align: center;
}

/* Background texture overlay */
.hp-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/bgn-newsletter.jpg') center/cover no-repeat;
  opacity: 0.06;
}

/* Decorative glowing orbs */
.hp-cta::after {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Second orb via inner ::after trick handled with box-shadow glow on cta-inner */
.hp-cta .cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hp-cta .cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hp-cta .cta-eyebrow::before,
.hp-cta .cta-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hp-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hp-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.hp-cta .cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hp-cta .cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hp-cta .btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(201,164,76,0.45);
}
.hp-cta .btn-cta-gold:hover {
  background: #b8892e;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,164,76,0.5);
}

.hp-cta .btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  padding: 1rem 2.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.hp-cta .btn-cta-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .hp-cta {
    padding: 5rem 1.5rem;
  }
  .hp-cta .cta-btns {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hp-cta .btn-cta-gold,
  .hp-cta .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }
}

/* FOOTER */
.hp-footer { background: var(--dark-green); color: rgba(255,255,255,0.8); padding: 4rem 0 2rem; }
.hp-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.hp-footer .fg-logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #fff; display: block; margin-bottom: 1rem; }
.hp-footer .fg-logo span { color: var(--gold); }
.hp-footer .fg-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.hp-footer .fg-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hp-footer .fg-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; transition: var(--transition);
}
.hp-footer .fg-socials a:hover { background: var(--gold); transform: translateY(-2px); }
.hp-footer .fg-col-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.hp-footer .fg-col-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.hp-footer .fg-col-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.hp-footer .fg-col-links a:hover { color: var(--gold-light); padding-left: 4px; }
.hp-footer .newsletter-form { display: flex; gap: 0; margin-top: 0.75rem; }
.hp-footer .newsletter-form input {
  flex: 1; padding: 0.75rem 1rem; border: none; border-radius: 6px 0 0 6px;
  font-size: 0.85rem; outline: none; background: rgba(255,255,255,0.12); color: #fff;
}
.hp-footer .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.hp-footer .newsletter-form button {
  background: var(--gold); color: #fff; border: none;
  padding: 0.75rem 1rem; border-radius: 0 6px 6px 0; cursor: pointer;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.hp-footer .newsletter-form button:hover { background: #a87820; }
.hp-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* RESPONSIVE */

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hp-footer .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hp-hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hp-hero::before { display: none; }
  .hp-hero .hero-right { display: none; }
  .hp-hero .hero-left { padding: 3rem 1.5rem 4rem; }
  .hp-hero h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .why-inner { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .dest-tile.large { grid-column: span 2; grid-row: span 1; height: 260px; }
  .dest-tile { height: 200px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .hp-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .hp-section-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-tile.large { grid-column: span 1; height: 220px; }
  .dest-tile { height: 180px; }
  .why-features { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hp-footer .footer-grid { grid-template-columns: 1fr; }
  .hp-hero .hero-btns { flex-direction: column; }
  .hp-hero .btn-gold, .hp-hero .btn-outline-dark { justify-content: center; text-align: center; }
  .hp-cta { padding: 4rem 1.5rem; }
  .hp-footer { padding: 3rem 0 1.5rem; }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  /* Center align Why section on mobile */
  .why-inner {
    text-align: center;
  }
  .why-dark-card {
    text-align: center;
  }
  .why-feat {
    align-items: center;
    text-align: center;
  }
  
  /* Center align Footer on mobile */
  .hp-footer {
    text-align: center;
  }
  .hp-footer .fg-logo {
    display: flex;
    justify-content: center;
  }
  .hp-footer .fg-socials {
    justify-content: center;
  }
  .hp-footer .fg-col-links {
    align-items: center;
  }
  .hp-footer .newsletter-form {
    justify-content: center;
  }
}

/* ── FEATURES STRIP (DARK STRIPE DESIGN) ── */
.hp-features-strip {
  background: #071c15;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(201, 164, 76, 0.15);
  position: relative;
  z-index: 5;
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  position: relative;
}

/* Vertical Divider between items */
.strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(201, 164, 76, 0.15);
}

.strip-icon-wrapper {
  color: var(--gold);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-content {
  flex: 1;
}

.strip-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

@media (max-width: 1100px) {
  .features-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
  .strip-item:nth-child(even)::after {
    display: none;
  }
  .strip-item:nth-child(1)::after,
  .strip-item:nth-child(3)::after {
    top: 10%;
    height: 80%;
  }
}

@media (max-width: 600px) {
  .hp-features-strip {
    padding: 1.5rem 0;
  }
  .features-strip-grid {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
  .strip-item {
    padding: 0.25rem 1.5rem;
  }
  .strip-item:not(:last-child)::after {
    right: 1.5rem;
    left: 1.5rem;
    bottom: -0.625rem;
    top: auto;
    width: auto;
    height: 1px;
    background: rgba(201, 164, 76, 0.08);
  }
}

@media (max-width: 1100px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* ── RESPONSIVE: WHY CHOOSE SECTION ── */
@media (max-width: 1100px) {
  .why-choose-inner {
    grid-template-columns: 360px 1fr;
  }
  .why-left-panel {
    padding: 4rem 2.5rem;
  }
  .why-right-panel {
    padding: 3rem 2rem;
  }
}

@media (max-width: 900px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .why-left-panel {
    padding: 3.5rem 2rem;
  }
  .why-right-panel {
    padding: 3rem 2rem;
  }
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-left-panel {
    padding: 3rem 1.5rem;
  }
  .why-right-panel {
    padding: 2.5rem 1.5rem;
  }
  .why-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE: OUR PROCESS ── */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .ps-connector {
    display: none;
  }
  .process-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 4rem 0 3rem;
  }
  .process-header {
    margin-bottom: 3rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-badges {
    grid-template-columns: 1fr;
  }
}

/* Center Video Controls on Mobile */
@media (max-width: 991px) {
  .hero-video-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: 2.5rem;
    width: max-content;
  }
}

/* ============================================
   VIEW ALL TOURS BANNER (REF 01)
   ============================================ */
.vab-wrapper {
  padding: 2rem 0 1rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.view-all-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.vab-text {
  text-align: right;
}

.vab-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin: 0;
}

.vab-sub {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.vab-btn a.btn-green-arrow {
  background-color: var(--color-primary);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: var(--transition);
}

.vab-btn a.btn-green-arrow:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .view-all-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .vab-text {
    text-align: center;
  }
}

/* ============================================
   THINGS TO DO GRID (REF 02)
   ============================================ */
.hp-things-to-do {
  width: 100%;
  overflow: hidden;
}

.ttd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.ttd-tile {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  width: 100%;
}

.ttd-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: absolute;
  top: 0;
  transform: translate(0) !important;
}

.ttd-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s ease;
}

.ttd-tile:hover img {
  transform: scale(1.05);
}

.ttd-tile:hover .ttd-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
}

.ttd-eyebrow {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.ttd-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ttd-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ttd-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ttd-tile:hover .ttd-link i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .ttd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ttd-tile {
    /* height: 400px; */
  }
}

@media (max-width: 600px) {
  .ttd-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ttd-tile {
    /* height: 350px; */
  }
}

/* ============================================
   NEW CTA BANNER (LEFT ALIGNED)
   ============================================ */
.hp-cta-new {
  position: relative;
  background: url('../images/destination/7.jpg') center/cover no-repeat;
  padding: 8rem 0;
  display: flex;
  align-items: center;
}

.hp-cta-new::before {
  content: '';
  position: absolute; 
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(15,61,46,0.95) 0%, rgba(15,61,46,0.7) 50%, rgba(0,0,0,0.3) 100%);
}

.hp-cta-new .hp-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hp-cta-new .cta-inner-left {
  max-width: 650px;
}

.hp-cta-new .cta-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hp-cta-new h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hp-cta-new .cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hp-cta-new .cta-btns-left {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hp-cta-new .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: var(--transition);
}

.hp-cta-new .btn-whatsapp i {
  font-size: 1.3rem;
  color: #25D366;
}

.hp-cta-new .btn-whatsapp:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hp-cta-new {
    padding: 5rem 0;
  }
  .hp-cta-new::before {
    background: linear-gradient(to bottom, rgba(15,61,46,0.9) 0%, rgba(15,61,46,0.7) 100%);
  }
  .hp-cta-new .cta-btns-left {
    flex-direction: column;
  }
  .hp-cta-new .btn-green-arrow,
  .hp-cta-new .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* Prominent Solid CTA Button */
.hp-cta-new .btn-prominent-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: #fff;
  padding: 1.2rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 164, 76, 0.4);
}

.hp-cta-new .btn-prominent-solid:hover {
  background: #b8892e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 164, 76, 0.6);
}

/* =========================================================
   FEATURED TOURS HEADER SPLIT LAYOUT
========================================================= */
.hp-featured-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.hp-featured-split .split-left {
  flex: 1;
}
.hp-featured-split .split-right {
  flex: 1.2;
  border-left: 2px solid var(--gold-light);
  padding-left: 1.5rem;
}
.hp-featured-split .sec-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.hp-featured-split h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}
.hp-featured-split p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.8;
  font-family: var(--font-sans);
  margin-bottom: 1.25rem;
}
.hp-featured-split p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .hp-featured-split {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .hp-featured-split .split-right {
    padding-left: 2.5rem;
  }
}