/* ================================================================
   HOLIDAYESTHAN – Premium Luxury Travel Website
   style.css  |  Bootstrap 5 companion stylesheet
   ================================================================ */

/* ----------------------------------------------------------------
   0. SKIP LINK (Accessibility + SEO)
---------------------------------------------------------------- */
.he-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--he-gold, #D9B064);
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease;
}
.he-skip-link:focus {
  top: 16px;
  outline: 2px solid #000;
}

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  --he-black:       #000000;
  --he-deep:        #0a0a0a;
  --he-charcoal:    #111111;
  --he-obsidian:    #1a1a1a;
  --he-card-bg:     #161616;

  --he-gold:        #D9B064;
  --he-gold-dark:   #A67C41;
  --he-gold-light:  #EDD18A;
  --he-gold-glow:   rgba(217, 176, 100, 0.18);
  --he-gold-border: rgba(217, 176, 100, 0.25);

  --he-sapphire:    #0F4C75;
  --he-cobalt:      #1B75BB;

  --he-white:       #E0E0E0;
  --he-muted:       #B0B0B0;  /* lifted from #A0A0A0 → better contrast */
  --he-subtle:      #6e6e6e;  /* lifted from #5a5a5a → passes AA on cards */

  --he-radius:      14px;
  --he-radius-sm:   8px;
  --he-radius-lg:   20px;

  --he-transition:  all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --he-transition-fast: all 0.2s ease;

  --he-shadow:      0 8px 40px rgba(0, 0, 0, 0.55);
  --he-shadow-gold: 0 0 24px rgba(217, 176, 100, 0.22);
}

/* ----------------------------------------------------------------
   2. BASE / RESET
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--he-black);
  color: var(--he-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.25;
}

p { color: var(--he-muted); margin-bottom: 0; }

img { display: block; max-width: 100%; }

a { color: inherit; transition: var(--he-transition-fast); }

/* Typography helpers */
.fw-600 { font-weight: 600 !important; }
.ls-wide { letter-spacing: 0.1em !important; }

/* Spacing scale supplements */
.py-6  { padding-top: 5rem  !important; padding-bottom: 5rem  !important; }
.pt-6  { padding-top: 5rem  !important; }
.pb-6  { padding-bottom: 5rem !important; }
.mt-6  { margin-top: 4.5rem !important; }

/* Gold gradient text */
.he-gold-gradient {
  background: linear-gradient(135deg, var(--he-gold) 0%, var(--he-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.he-gold-text { color: var(--he-gold) !important; }


/* ----------------------------------------------------------------
   3. NAVBAR
---------------------------------------------------------------- */
.he-navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 1.1rem 0;
  transition: background 0.45s ease, border-color 0.45s ease, padding 0.35s ease;
  z-index: 1050;
}

.he-navbar.scrolled {
  background: rgba(17, 17, 17, 0.96);
  border-bottom-color: var(--he-gold-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* Brand */
.he-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.he-brand-accent { color: var(--he-gold); }
.he-logo-svg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(217,176,100,0.3));
}

/* Nav Links */
.he-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--he-white) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: var(--he-transition);
}
.he-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: var(--he-gold);
  transition: transform 0.3s ease;
}
.he-nav-link:hover,
.he-nav-link:focus-visible {
  color: var(--he-gold) !important;
}
.he-nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

/* Burger menu */
.he-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.he-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--he-gold);
  border-radius: 2px;
  transition: var(--he-transition);
}
.he-toggler:focus { outline: none; box-shadow: none; }

/* Mobile nav collapse */
@media (max-width: 991.98px) {
  #navbarContent {
    background: rgba(17, 17, 17, 0.98);
    border-top: 1px solid var(--he-gold-border);
    margin-top: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--he-radius-sm);
    backdrop-filter: blur(10px);
  }
  .he-nav-link { font-size: 0.9rem; padding: 0.65rem 0 !important; }
  .he-nav-link::after { display: none; }
}


/* ----------------------------------------------------------------
   4. BUTTONS
---------------------------------------------------------------- */
.he-btn-primary {
  background: linear-gradient(135deg, var(--he-sapphire), var(--he-cobalt));
  color: #fff !important;
  border: none;
  border-radius: var(--he-radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--he-transition);
  box-shadow: 0 4px 18px rgba(15, 76, 117, 0.35);
}
.he-btn-primary:hover,
.he-btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--he-cobalt), #2290e0);
  box-shadow: 0 6px 24px rgba(217, 176, 100, 0.3), 0 4px 18px rgba(15, 76, 117, 0.45);
  transform: translateY(-1px);
  color: #fff !important;
}

.he-btn-outline {
  background: transparent;
  color: var(--he-gold) !important;
  border: 1px solid var(--he-gold);
  border-radius: var(--he-radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--he-transition);
}
.he-btn-outline:hover,
.he-btn-outline:focus-visible {
  background: linear-gradient(135deg, var(--he-sapphire), var(--he-cobalt));
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--he-shadow-gold);
  transform: translateY(-1px);
}

.he-btn-outline-gold {
  background: transparent;
  color: var(--he-gold) !important;
  border: 1.5px solid var(--he-gold-border);
  border-radius: var(--he-radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--he-transition);
}
.he-btn-outline-gold:hover {
  background: var(--he-gold-glow);
  border-color: var(--he-gold);
  box-shadow: var(--he-shadow-gold);
  transform: translateY(-1px);
}

.he-btn-search {
  background: linear-gradient(135deg, var(--he-sapphire), var(--he-cobalt));
  color: #fff;
  border: none;
  border-radius: var(--he-radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  min-height: 48px;
  transition: var(--he-transition);
  box-shadow: 0 4px 18px rgba(15, 76, 117, 0.4);
}
.he-btn-search:hover {
  background: linear-gradient(135deg, var(--he-cobalt), #2290e0);
  box-shadow: 0 6px 24px rgba(15, 76, 117, 0.55);
  transform: translateY(-1px);
  color: #fff;
}


/* ----------------------------------------------------------------
   5. HERO SECTION
---------------------------------------------------------------- */
.he-hero {
  min-height: 100vh;
  background-color: var(--he-black);
  position: relative;
}

/* ── Slideshow ─────────────────────────────────────────────────── */
.he-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.he-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.he-slide.active {
  opacity: 1;
  animation: kenBurns 9s ease-in-out forwards;
}
.he-slide.exit {
  opacity: 0;
  transition: opacity 1.6s ease;
}

/* Ken Burns — each slide picks a different direction */
@keyframes kenBurns {
  0%   { transform: scale(1.10) translate(0px, 0px); }
  100% { transform: scale(1.0)  translate(-18px, -10px); }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.10) translate(0px, 0px); }
  100% { transform: scale(1.0)  translate(18px, -8px); }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1.08) translate(10px, 0px); }
  100% { transform: scale(1.0)  translate(-10px, -12px); }
}
.he-slide:nth-child(2).active { animation-name: kenBurns2; }
.he-slide:nth-child(3).active { animation-name: kenBurns3; }
.he-slide:nth-child(4).active { animation-name: kenBurns; }
.he-slide:nth-child(5).active { animation-name: kenBurns2; }
.he-slide:nth-child(6).active { animation-name: kenBurns3; }

/* ── Overlays ──────────────────────────────────────────────────── */
.he-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.72) 75%,
    rgba(0,0,0,0.90) 100%
  );
}
/* Side vignette for depth */
.he-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.55) 100%
  );
}

/* ── Ambient orbs ──────────────────────────────────────────────── */
.he-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.14;
}
.he-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--he-gold) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.he-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--he-cobalt) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: orbFloat 9s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(30px) scale(1.06); }
}

/* ── Floating gold particles ───────────────────────────────────── */
.he-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.he-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--he-gold);
  opacity: 0;
  animation: particleRise 8s ease-in infinite;
}
.he-particle:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 7s;  width:2px; height:2px; }
.he-particle:nth-child(2)  { left: 20%; animation-delay: 1.2s; animation-duration: 9s;  opacity: 0.7; }
.he-particle:nth-child(3)  { left: 35%; animation-delay: 2.5s; animation-duration: 7.5s; width:2px; height:2px; }
.he-particle:nth-child(4)  { left: 50%; animation-delay: 0.8s; animation-duration: 10s; }
.he-particle:nth-child(5)  { left: 62%; animation-delay: 3.1s; animation-duration: 8s;  width:2px; height:2px; }
.he-particle:nth-child(6)  { left: 74%; animation-delay: 1.7s; animation-duration: 6.5s;}
.he-particle:nth-child(7)  { left: 84%; animation-delay: 4s;   animation-duration: 9.5s; width:2px; height:2px;}
.he-particle:nth-child(8)  { left: 92%; animation-delay: 2s;   animation-duration: 8.5s;}
@keyframes particleRise {
  0%   { bottom: -10px; opacity: 0;    transform: translateX(0) scale(1); }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { bottom: 100%;  opacity: 0;    transform: translateX(30px) scale(0.5); }
}

/* ── Slide location label ──────────────────────────────────────── */
.he-slide-labels {
  position: absolute;
  bottom: 90px;
  left: 40px;
  z-index: 5;
}
.he-slide-label {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217, 176, 100, 0.8);
  border-left: 2px solid var(--he-gold);
  padding-left: 10px;
  animation: labelFade 1s ease forwards;
}
.he-slide-label.active { display: block; }
@keyframes labelFade {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 767px) { .he-slide-labels { display: none; } }

/* ── Slide dot indicators ──────────────────────────────────────── */
.he-slide-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.he-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.he-dot.active {
  background: var(--he-gold);
  border-color: var(--he-gold);
  box-shadow: 0 0 10px rgba(217,176,100,0.6);
  height: 28px;
  border-radius: 4px;
}
.he-dot:hover:not(.active) {
  background: rgba(217,176,100,0.5);
  border-color: var(--he-gold);
}
@media (max-width: 767px) {
  .he-slide-dots { right: 12px; }
}

/* ── Hero emblem — centred, blended into slideshow background ─── */
.he-hero-emblem {
  width: 190px;
  height: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.he-hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Black pixels become transparent — logo floats on the photo */
  mix-blend-mode: screen;
  /* Fade edges so it dissolves into the background */
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 35%,
    rgba(0,0,0,0.7) 60%,
    transparent 85%
  );
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 35%,
    rgba(0,0,0,0.7) 60%,
    transparent 85%
  );
  filter: drop-shadow(0 0 22px rgba(217,176,100,0.5))
          brightness(1.15)
          saturate(1.2);
  transition: filter 0.6s ease;
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(217,176,100,0.35)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 32px rgba(217,176,100,0.65)); transform: scale(1.03); }
}
@media (max-width: 575.98px) {
  .he-hero-emblem { width: 130px; height: 130px; }
}

/* H1 */
.he-hero-content {
  position: relative;
  z-index: 5;
}

.he-hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}

/* Sub */
.he-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(224,224,224,0.85);
  max-width: 560px;
  line-height: 1.7;
}

/* Search Widget */
.he-search-widget {
  background: rgba(22, 22, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--he-gold-border);
  border-radius: var(--he-radius-lg);
  max-width: 880px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--he-shadow-gold);
}

.he-input-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--he-gold);
  margin-bottom: 6px;
}

.he-search-select {
  background-color: rgba(10,10,10,0.85) !important;
  border: 1px solid rgba(217, 176, 100, 0.2) !important;
  color: var(--he-white) !important;
  border-radius: var(--he-radius-sm) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  height: 48px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.he-search-select:focus {
  border-color: var(--he-gold) !important;
  box-shadow: 0 0 0 3px var(--he-gold-glow) !important;
  outline: none;
  background-color: rgba(15,15,15,0.95) !important;
}
.he-search-select option { background: #1a1a1a; }

input[type="date"].he-search-select::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(0.5) saturate(2) hue-rotate(5deg);
}

/* Scroll cue */
.he-scroll-cue { z-index: 6; }
.he-scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(217, 176, 100, 0.55);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
}
.he-scroll-dot {
  width: 4px; height: 8px;
  background: var(--he-gold);
  border-radius: 2px;
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.he-scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217, 176, 100, 0.7);
}


/* ----------------------------------------------------------------
   6. SHARED SECTION STYLES
---------------------------------------------------------------- */
.he-section { padding: 5.5rem 0; }

.he-destinations   { background-color: var(--he-black); }
.he-why-us         { background-color: var(--he-charcoal); }
.he-packages       { background-color: var(--he-black); }
.he-testimonials   { background-color: var(--he-charcoal); }
.he-contact        { background-color: var(--he-obsidian); }

/* Section header elements */
.he-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--he-gold);
}

.he-section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.he-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--he-gold-dark), var(--he-gold), var(--he-gold-dark));
  border-radius: 2px;
}

.he-section-sub {
  font-size: 0.96rem;
  color: var(--he-muted);
  max-width: 620px;
  line-height: 1.8;
}


/* ----------------------------------------------------------------
   7. DESTINATION CARDS
---------------------------------------------------------------- */
.he-dest-card {
  background: var(--he-card-bg);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--he-radius);
  overflow: hidden;
  transition: var(--he-transition);
  display: flex;
  flex-direction: column;
}
.he-dest-card:hover {
  border-color: var(--he-gold-border);
  box-shadow: var(--he-shadow), var(--he-shadow-gold);
  transform: translateY(-5px);
}

.he-dest-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.he-dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}
.he-dest-card:hover .he-dest-img { transform: scale(1.06); }

/* Badge */
.he-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
}
.he-badge.gold {
  background: rgba(217, 176, 100, 0.2);
  border: 1px solid rgba(217, 176, 100, 0.5);
  color: var(--he-gold);
}
.he-badge.blue {
  background: rgba(15, 76, 117, 0.35);
  border: 1px solid rgba(27, 117, 187, 0.55);
  color: #5bb8f5;
}

.he-dest-body { display: flex; flex-direction: column; }
.he-dest-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.he-dest-desc { font-size: 0.87rem; color: var(--he-muted); line-height: 1.7; }
.he-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--he-gold);
}
.he-meta {
  font-size: 0.78rem;
  color: var(--he-subtle);
  font-family: 'Montserrat', sans-serif;
}
.he-per { font-size: 0.72rem; color: var(--he-subtle); font-family: 'Montserrat', sans-serif; font-weight: 400; }


/* ----------------------------------------------------------------
   8. FEATURE CARDS (Why Us)
---------------------------------------------------------------- */
.he-feature-card {
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--he-radius);
  background: transparent;
  transition: var(--he-transition);
}
.he-feature-card:hover {
  border-color: var(--he-gold-border);
  background: rgba(217, 176, 100, 0.04);
  box-shadow: var(--he-shadow-gold);
  transform: translateY(-4px);
}

.he-feature-icon { display: flex; align-items: center; justify-content: center; }

.he-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}
.he-feature-desc { font-size: 0.87rem; color: var(--he-muted); line-height: 1.75; }

/* Stats */
.he-stats {
  border-top: 1px solid var(--he-gold-border);
  border-bottom: 1px solid var(--he-gold-border);
  border-radius: var(--he-radius);
  background: rgba(217, 176, 100, 0.03);
}
.he-stat { border-right: 1px solid rgba(217, 176, 100, 0.1); }
.he-stat:last-child { border-right: none; }
@media (max-width: 767.98px) {
  .he-stat:nth-child(2n) { border-right: none; }
  .he-stat:nth-child(1), .he-stat:nth-child(2) {
    border-bottom: 1px solid rgba(217, 176, 100, 0.1);
  }
}

.he-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.he-stat-lbl {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--he-muted);
}


/* ----------------------------------------------------------------
   9. PACKAGE TABS + CARDS
---------------------------------------------------------------- */
.he-tabs { list-style: none; padding: 0; margin: 0; }

.he-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--he-muted);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: var(--he-transition);
}
.he-tab:hover {
  color: var(--he-gold);
  border-color: var(--he-gold-border);
  background: var(--he-gold-glow);
}
.he-tab.active {
  background: var(--he-gold-glow);
  border-color: var(--he-gold);
  color: var(--he-gold);
  box-shadow: var(--he-shadow-gold);
}

/* Tab pane fade animation */
.tab-pane { animation: tabFadeIn 0.4s ease; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Package cards */
.he-pkg-card {
  background: var(--he-card-bg);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--he-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--he-transition);
}
.he-pkg-card:hover {
  border-color: var(--he-gold-border);
  box-shadow: var(--he-shadow), var(--he-shadow-gold);
  transform: translateY(-5px);
}

.he-pkg-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.he-pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.he-pkg-card:hover .he-pkg-img { transform: scale(1.05); }

.he-pkg-dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--he-gold-border);
  color: var(--he-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  backdrop-filter: blur(4px);
}

.he-pkg-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--he-gold);
  font-family: 'Montserrat', sans-serif;
}
.he-pkg-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.he-pkg-desc { font-size: 0.85rem; color: var(--he-muted); line-height: 1.7; }

/* Inclusion chips */
.he-includes { }
.he-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(217, 176, 100, 0.8);
  background: rgba(217, 176, 100, 0.08);
  border: 1px solid rgba(217, 176, 100, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'Montserrat', sans-serif;
}


/* ----------------------------------------------------------------
   9b. SERVICE CARDS (Our Services section)
---------------------------------------------------------------- */
.he-service-card {
  background: var(--he-card-bg);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--he-radius);
  transition: var(--he-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.he-service-card:hover {
  border-color: var(--he-gold-border);
  background: rgba(217,176,100,0.04);
  box-shadow: var(--he-shadow), var(--he-shadow-gold);
  transform: translateY(-5px);
}

.he-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(217,176,100,0.08);
  border: 1px solid var(--he-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--he-gold);
  transition: var(--he-transition);
  margin: 0 auto;
  font-family: inherit; /* icons don't need font-family */
}
.he-service-card:hover .he-service-icon {
  background: rgba(217,176,100,0.15);
  box-shadow: var(--he-shadow-gold);
}

.he-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.he-service-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--he-muted);
  line-height: 1.75;
  font-weight: 400;
}

.he-stag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--he-gold);
  background: rgba(217,176,100,0.08);
  border: 1px solid rgba(217,176,100,0.2);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ----------------------------------------------------------------
   10. TESTIMONIALS
---------------------------------------------------------------- */
.he-testimonials { position: relative; }
.he-carousel { position: relative; padding: 0 3rem 5rem; }

.he-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--he-gold);
  opacity: 0.18;
  user-select: none;
  margin-bottom: -1rem;
}

.he-testi-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(224,224,224,0.9);
  line-height: 1.8;
  margin: 0;
}

.he-testi-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--he-gold);
  box-shadow: 0 0 0 4px rgba(217, 176, 100, 0.15);
  display: inline-block;
}

.he-testi-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.he-testi-loc {
  font-size: 0.78rem;
  color: var(--he-muted);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em;
  margin: 0;
}

.he-stars { color: var(--he-gold); font-size: 0.9rem; letter-spacing: 2px; }

/* Carousel nav buttons */
.he-carousel-prev,
.he-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(22,22,22,0.9);
  border: 1px solid var(--he-gold-border);
  color: var(--he-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--he-transition);
  cursor: pointer;
  z-index: 10;
  margin-top: -2rem;
}
.he-carousel-prev { left: 0; }
.he-carousel-next { right: 0; }
.he-carousel-prev:hover,
.he-carousel-next:hover {
  background: var(--he-gold-glow);
  border-color: var(--he-gold);
  box-shadow: var(--he-shadow-gold);
}

/* Indicators */
.he-testi-dots {
  position: static !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem !important;
  bottom: 0 !important;
}
.he-testi-dots button {
  width: 30px !important;
  height: 3px !important;
  border-radius: 3px !important;
  background: var(--he-subtle) !important;
  border: none !important;
  opacity: 1 !important;
  transition: var(--he-transition-fast) !important;
}
.he-testi-dots button.active {
  background: var(--he-gold) !important;
  width: 50px !important;
}


/* ----------------------------------------------------------------
   11. CONTACT FORM
---------------------------------------------------------------- */
.he-contact-info .he-contact-icon {
  color: var(--he-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.he-contact-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--he-subtle);
  font-family: 'Montserrat', sans-serif;
}
.he-contact-val {
  font-size: 0.92rem;
  color: var(--he-white);
}
.he-contact-val:hover { color: var(--he-gold); }

/* Form card */
.he-form {
  background: var(--he-card-bg);
  border: 1px solid rgba(217, 176, 100, 0.12);
  border-radius: var(--he-radius-lg);
  box-shadow: var(--he-shadow);
}

.he-form-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--he-gold);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.he-form-input {
  background-color: rgba(10,10,10,0.8) !important;
  border: 1px solid rgba(217, 176, 100, 0.18) !important;
  color: var(--he-white) !important;
  border-radius: var(--he-radius-sm) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.he-form-input::placeholder { color: var(--he-subtle); }
.he-form-input:focus {
  border-color: var(--he-gold) !important;
  box-shadow: 0 0 0 3px var(--he-gold-glow) !important;
  outline: none;
  background-color: rgba(15,15,15,0.9) !important;
  color: var(--he-white) !important;
}


/* ----------------------------------------------------------------
   11b. CONTACT FORM — SUCCESS / ERROR / VALIDATION STYLES
---------------------------------------------------------------- */
.he-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.he-field-error {
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
}
.he-input-invalid {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.15) !important;
}
.he-form-success {
  background: rgba(26,110,60,0.2);
  border: 1px solid rgba(35,160,94,0.5);
  color: #5dde96;
  border-radius: var(--he-radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.he-form-error {
  background: rgba(180,40,40,0.18);
  border: 1px solid rgba(255,107,107,0.4);
  color: #ff9a9a;
  border-radius: var(--he-radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.he-form-error a { color: #ffc107; text-decoration: underline; }

/* ----------------------------------------------------------------
   12. FOOTER
---------------------------------------------------------------- */
.he-footer {
  background-color: var(--he-deep);
  position: relative;
}
.he-footer-top-line {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--he-gold-dark) 20%,
    var(--he-gold) 50%,
    var(--he-gold-dark) 80%,
    transparent 100%
  );
}

.he-footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.he-footer-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--he-gold);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}
.he-footer-desc {
  font-size: 0.85rem;
  color: var(--he-subtle);
  line-height: 1.7;
}

.he-footer-h {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--he-gold);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}

.he-footer-links { margin-top: 1rem; }
.he-footer-links li { margin-bottom: 0.55rem; }
.he-footer-link {
  font-size: 0.87rem;
  color: var(--he-subtle) !important;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}
.he-footer-link:hover { color: var(--he-gold) !important; }

.he-footer-contact { font-size: 0.85rem; color: var(--he-subtle); }
.he-footer-icon { color: var(--he-gold); flex-shrink: 0; font-size: 0.95rem; }

.he-nl-input {
  background-color: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--he-gold-border) !important;
  color: var(--he-white) !important;
  border-radius: var(--he-radius-sm) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  height: 46px;
}
.he-nl-input::placeholder { color: var(--he-subtle); }
.he-nl-input:focus {
  border-color: var(--he-gold) !important;
  box-shadow: 0 0 0 3px var(--he-gold-glow) !important;
  outline: none;
  background-color: rgba(255,255,255,0.06) !important;
  color: var(--he-white) !important;
}

/* Footer bottom bar */
.he-footer-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.3);
}
.he-copy {
  font-size: 0.78rem;
  color: var(--he-subtle);
  font-family: 'Montserrat', sans-serif;
}

/* Social icons */
.he-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(224,224,224,0.6) !important;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--he-transition);
}
.he-social:hover {
  color: var(--he-gold) !important;
  border-color: var(--he-gold);
  background: var(--he-gold-glow);
  box-shadow: var(--he-shadow-gold);
  transform: translateY(-2px);
}


/* ----------------------------------------------------------------
   13. SCROLL REVEAL ANIMATION
---------------------------------------------------------------- */
.he-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.he-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.he-reveal.delay-1 { transition-delay: 0.1s; }
.he-reveal.delay-2 { transition-delay: 0.2s; }
.he-reveal.delay-3 { transition-delay: 0.3s; }
.he-reveal.delay-4 { transition-delay: 0.4s; }


/* ----------------------------------------------------------------
   14. FOCUS VISIBLE ACCESSIBILITY
---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--he-gold);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* Ensure interactive elements always show focus in high-contrast mode */
@media (forced-colors: active) {
  :focus-visible { outline: 3px solid ButtonText; }
  .he-btn-primary, .he-btn-outline { border: 2px solid ButtonText; }
}


/* ----------------------------------------------------------------
   15. RESPONSIVE OVERRIDES
---------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .he-hero-h1 { font-size: 2.2rem; }
  .he-hero-sub { font-size: 0.95rem; }
  .he-search-widget { border-radius: var(--he-radius); }
  .he-section { padding: 4rem 0; }
  .he-carousel { padding: 0 2rem 4rem; }
  .he-carousel-prev { left: -4px; }
  .he-carousel-next { right: -4px; }
  .py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
}

@media (max-width: 575.98px) {
  .he-hero-h1 { font-size: 1.9rem; }
  .he-section-h2 { font-size: 1.75rem; }
  .he-stat-num { font-size: 2rem; }
  .he-carousel { padding: 0 0.5rem 4rem; }
  .he-carousel-prev, .he-carousel-next { display: none; }
}


/* ----------------------------------------------------------------
   16. SCROLLBAR (WebKit)
---------------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--he-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--he-gold-dark), var(--he-gold));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--he-gold); }


/* ----------------------------------------------------------------
   17. SELECTION
---------------------------------------------------------------- */
::selection {
  background: rgba(217, 176, 100, 0.3);
  color: #fff;
}
