/* ============================================================

   TROPICAL LUXURY EDITORIAL THEME — Deep Emerald & Spice Gold

   ============================================================ */



@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600;700&display=swap');



:root {

  /* Spice Gold Palette (Warm, rich, slightly antiqued gold) */

  --gold: #d4af37;

  --gold-bright: #f9e596;
  /* Champagne/Sunlight pop */

  --gold-dark: #a6831d;

  --gold-muted: #7a6117;



  /* Deep Emerald & Jungle Green Palette */

  --green-deep: #030e0a;
  /* Deep Jungle Night */

  --green-rich: #081f16;
  /* Emerald Shadow */

  --green-warm: #0f3827;
  /* Rich Backwater Green */

  --green-mid: #1e543d;
  /* Lush Canopy */

  --green-light: #3b8262;
  /* Tropical Leaf */



  /* Ivory & Pearl Whites (Crisp and organic) */

  --ivory: #fcfbf8;

  --ivory-dark: #f2efe6;

  --white: #ffffff;

  --off-white: #f5f4ef;



  /* Ultra-Premium Gradients */

  --gradient-gold: linear-gradient(135deg, #f9e596 0%, #d4af37 25%, #a6831d 75%, #7a6117 100%);

  --gradient-dark: linear-gradient(145deg, #030e0a 0%, #081f16 100%);

  --gradient-hero: linear-gradient(160deg, rgba(3, 14, 10, 0.85) 0%, rgba(15, 56, 39, 0.5) 50%, rgba(3, 14, 10, 0.95) 100%);

  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);



  /* Deep Luxury Shadows (Multi-layered for realism) */

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.5), 0 0 15px rgba(249, 229, 150, 0.2);

  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.4);

  --shadow-card: 0 15px 35px rgba(3, 14, 10, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02);

  --shadow-hover: 0 30px 60px rgba(3, 14, 10, 0.12), 0 10px 25px rgba(212, 175, 55, 0.15);



  /* Butter-smooth premium easings */

  --transition: 0.4s cubic-bezier(0.25, 1, 0.25, 1);

  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.25, 1);

  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);



  --r-sm: 8px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 50px;

}



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

html {
  scroll-behavior: smooth;
  font-size: 13px;
}



/* Premium Scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--green-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  border: 2px solid var(--green-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}



/* Luxury Selection */

::selection {
  background: var(--gold);
  color: var(--white);
  text-shadow: none;
}



/* Luxury Keyboard Focus State (Accessibility) */

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: none;
}



body {

  font-family: 'Jost', sans-serif;

  background: var(--white);

  color: var(--green-rich);

  overflow-x: hidden;

  line-height: 1.8;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;

}

img {

  display: block;

  max-width: 100%;

  user-select: none;
  /* Image ko highlight hone se rokega */

  -webkit-user-drag: none;
  /* Image ko drag hone se rokega */

}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}



/* Grain overlay - slightly softened */

body::after {

  content: '';

  position: fixed;

  inset: 0;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  opacity: 0.025;

  pointer-events: none;

  z-index: 9999;

}



h1,
h2,
h3,
h4 {

  font-family: 'Cormorant Garamond', serif;

  line-height: 1.15;

  color: var(--green-deep);

  font-weight: 600;

  letter-spacing: -0.01em;

  text-wrap: balance;
  /* Text alignment perfection */

}



/* ─── LABELS ─── */

.ornament-label {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-family: 'Jost', sans-serif;

  font-size: 0.65rem;

  font-weight: 600;

  letter-spacing: 0.35em;

  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 1.2rem;

  position: relative;

}

.ornament-label::before,

.ornament-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.8;
  transition: width var(--transition);
}

.ornament-label::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-header:hover .ornament-label::before,

.section-header:hover .ornament-label::after {
  width: 60px;
}



/* ─── SECTION HEADER ─── */

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
  display: inline-block;
  transform: skewX(-5deg);
}

.section-header p {

  max-width: 650px;

  margin: 0 auto;

  color: var(--green-mid);

  font-size: 1.1rem;

  font-weight: 300;

  line-height: 2;

  opacity: 0.9;

  text-wrap: pretty;
  /* Paragraph alignment perfection */

}



/* ─── BUTTONS (Mindblowing Hover Effects) ─── */

.btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 42px;

  border-radius: 4px;

  font-family: 'Jost', sans-serif;

  font-weight: 600;
  font-size: 0.8rem;

  letter-spacing: 0.25em;
  text-transform: uppercase;

  cursor: pointer;
  transition: all var(--transition-bounce);
  border: none;

  position: relative;
  overflow: hidden;

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  z-index: 1;

}

.btn::before {

  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);

  transform: skewX(-25deg);
  transition: left 0.7s cubic-bezier(0.25, 1, 0.25, 1);

  z-index: -1;

}

.btn:hover::before {
  left: 150%;
}



/* Tactile Click Effect */

.btn:active {

  transform: translateY(1px) scale(0.98);

  transition: transform 0.1s ease;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}



.btn-primary {

  background: var(--gradient-gold);

  color: var(--green-deep);

  box-shadow: var(--shadow-gold);

  border: 1px solid rgba(255, 255, 255, 0.5);

}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px -10px rgba(212, 175, 55, 0.8);
  border-color: var(--white);
}



/* Golden Shimmer Effect Animation for Primary Button */

.btn-primary::after {

  content: '';

  position: absolute;

  top: 0;

  left: -150%;

  width: 50%;

  height: 100%;

  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);

  transform: skewX(-25deg);

  animation: goldShimmer 4s infinite cubic-bezier(0.25, 1, 0.25, 1);

}

@keyframes goldShimmer {

  0% {
    left: -150%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }

}



.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.btn-outline:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--green-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}



.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.btn-ghost:hover {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}



.btn-dark {
  background: var(--gradient-dark);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-dark:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 0.85rem;
}



/* ─── NAVBAR ─── */

.navbar {

  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 80px;

  transition: all var(--transition-slow);

  background: linear-gradient(to bottom, rgba(3, 14, 10, 0.8) 0%, transparent 100%);

}

.navbar.scrolled {

  background: rgba(3, 14, 10, 0.75);

  backdrop-filter: blur(50px) saturate(1.2);

  -webkit-backdrop-filter: blur(25px) saturate(1.2);

  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.2), 0 15px 40px rgba(0, 0, 0, 0.5);

  height: 65px;

}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1001;
}



/* Updated Image Logo Styles */

.logo-img {

  max-height: 44px;

  width: auto;

  object-fit: contain;

  transition: max-height var(--transition-slow), filter var(--transition);

  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));

}

.navbar.scrolled .logo-img {
  max-height: 34px;
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
}



/* Fallback/Text Logo */

.logo-emblem {

  width: 42px;
  height: 42px;

  background: var(--gradient-gold);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Cormorant Garamond', serif;

  font-size: 1.6rem;
  font-weight: 700;

  color: var(--green-deep);

  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);

  flex-shrink: 0;
  position: relative;

}

.logo-emblem::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  transition: all var(--transition-bounce);
}

.navbar:hover .logo-emblem::after {
  transform: scale(1.1);
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin-top: 3px;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-links a {

  font-family: 'Jost', sans-serif;

  font-size: 0.75rem;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.8);

  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition: all var(--transition);
  position: relative;

  padding: 8px 0;

  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);

}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-bounce);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}



.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-bounce);
  transform-origin: center;
}


.filter-section {
  position: sticky;
  top: 65px;
  z-index: 100;
  background: rgba(3, 14, 10, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.filter-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  white-space: nowrap;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-bounce);
}

.filter-btn:hover {
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.filter-btn i {
  font-size: 0.85rem;
}

/* ─── HERO ─── */

.hero {

  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background: var(--green-deep);

}

.hero-bg {

  position: absolute;
  inset: 0;

  background-image: url('../images/boathouse.jpg');

  background-size: cover;
  background-position: center 40%;

  animation: heroKen 30s ease-in-out infinite alternate;

}

@keyframes heroKen {
  from {
    transform: scale(1) translateX(0)
  }

  to {
    transform: scale(1.1) translateX(-1.5%)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}



/* Corner ornaments */

.hero-corner {

  position: absolute;
  z-index: 3;
  pointer-events: none;

  width: 120px;
  height: 120px;

  opacity: 0.5;

}

.hero-corner::before,
.hero-corner::after {

  content: '';
  position: absolute;
  background: linear-gradient(to right, var(--gold), transparent);

}

.hero-corner::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px var(--gold);
}

.hero-corner::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  box-shadow: 0 0 10px var(--gold);
}

.hc-tl {
  top: 110px;
  left: 60px;
}

.hc-tr {
  top: 110px;
  right: 60px;
  transform: scaleX(-1);
}

.hc-bl {
  bottom: 50px;
  left: 60px;
  transform: scaleY(-1);
}

.hc-br {
  bottom: 50px;
  right: 60px;
  transform: scale(-1);
}



/* Particles (Fireflies style for jungle) */

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: color-dodge;
}

.pt {

  position: absolute;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;

  box-shadow: 0 0 15px 2px var(--gold);

  animation: floatPt linear infinite;

}

.pt:nth-child(1) {
  width: 2px;
  height: 2px;
  left: 8%;
  animation-duration: 9s;
  animation-delay: 0s;
}

.pt:nth-child(2) {
  width: 3px;
  height: 3px;
  left: 22%;
  animation-duration: 12s;
  animation-delay: 1.5s;
}

.pt:nth-child(3) {
  width: 2px;
  height: 2px;
  left: 38%;
  animation-duration: 10s;
  animation-delay: 0.8s;
}

.pt:nth-child(4) {
  width: 4px;
  height: 4px;
  left: 55%;
  animation-duration: 14s;
  animation-delay: 3s;
}

.pt:nth-child(5) {
  width: 2px;
  height: 2px;
  left: 70%;
  animation-duration: 11s;
  animation-delay: 0.3s;
}

.pt:nth-child(6) {
  width: 3px;
  height: 3px;
  left: 85%;
  animation-duration: 8s;
  animation-delay: 2.5s;
}

.pt:nth-child(7) {
  width: 2px;
  height: 2px;
  left: 15%;
  animation-duration: 13s;
  animation-delay: 4s;
}

.pt:nth-child(8) {
  width: 2px;
  height: 2px;
  left: 93%;
  animation-duration: 9s;
  animation-delay: 1s;
}

@keyframes floatPt {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0
  }

  10% {
    opacity: 0.9
  }

  90% {
    opacity: 0.5
  }

  100% {
    transform: translateY(-10vh) scale(2.5);
    opacity: 0
  }
}



.hero-content {

  position: relative;
  z-index: 4;

  text-align: center;
  padding: 0 5%;
  max-width: 880px;

}

.hero-content>* {
  animation: revealUp 1.4s cubic-bezier(0.25, 1, 0.25, 1) both;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.2s
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.4s
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.6s
}

.hero-content>*:nth-child(4) {
  animation-delay: 0.8s
}

.hero-content>*:nth-child(5) {
  animation-delay: 1.0s
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}



.hero-eyebrow {

  display: inline-flex;
  align-items: center;
  gap: 20px;

  font-family: 'Jost', sans-serif;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;

  color: var(--gold-bright);
  margin-bottom: 2.5rem;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);

}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--gold));
}



.hero-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3.8rem, 8vw, 8.5rem);

  font-weight: 700;

  color: var(--white);

  margin-bottom: 0.5rem;

  line-height: 0.95;

  letter-spacing: -0.02em;

  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);

}

.hero-title .gold-accent {

  color: transparent;

  background: var(--gradient-gold);

  -webkit-background-clip: text;

  background-clip: text;

  text-shadow: none;

  position: relative;

  background-size: 200% auto;

  animation: flowingGold 5s linear infinite;
  /* Flowing Gold Text Animation */

}

@keyframes flowingGold {

  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }

}



.hero-title .italic-line {

  font-style: italic;
  font-weight: 300;

  display: block;
  font-size: 0.75em;

  letter-spacing: 0.04em;
  opacity: 0.95;

  margin-top: 0.15em;

}

.hero-tagline {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(1.2rem, 2.5vw, 1.6rem);

  color: rgba(255, 255, 255, 0.85);

  max-width: 560px;
  margin: 2rem auto 4rem;

  line-height: 1.8;
  font-style: italic;
  font-weight: 300;

  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);

}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}



.hero-divider {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
  color: var(--gold);

}

.hero-divider::before,
.hero-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.8));
}

.hero-divider::after {
  background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.8));
}



.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.h-stat {
  text-align: center;
  padding: 0 4rem;
  border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.h-stat:last-child {
  border-right: none;
}

.h-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.h-stat-lbl {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}



.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-mouse::before {
  content: '';
  width: 4px;
  height: 10px;
  background: var(--gold-bright);
  border-radius: 2px;
  animation: scrollPulse 2s cubic-bezier(0.25, 1, 0.25, 1) infinite;
  box-shadow: 0 0 8px var(--gold-bright);
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(10px);
    opacity: 0.2
  }
}

.scroll-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.8);
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}



/* ─── MARQUEE ─── */

.marquee-ticker {
  background: var(--gradient-gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding: 0 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-deep);
  opacity: 0.6;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}



/* ─── FEATURES BAR ─── */

.features-bar {
  background: var(--green-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
}

.feat-item {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition);
}

.feat-item:last-child {
  border-right: none;
}

.feat-item:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.05);
}

.feat-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all var(--transition-bounce);
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.02);
}

.feat-item:hover .feat-icon-wrap {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.feat-txt strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.feat-txt span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 300;
}



/* ─── INTRO ─── */

.intro-section {
  padding: 12rem 6%;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  max-width: 1350px;
  margin: 0 auto;
}

.intro-media {
  position: relative;
  height: 520px;
}

.intro-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-dark);
  transition: transform var(--transition-slow);
}

.intro-media:hover .intro-img-main {
  transform: scale(1.03);
}

.intro-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hover);
  border: 10px solid var(--white);
  transition: transform var(--transition-slow);
  z-index: 2;
}

.intro-media:hover .intro-img-accent {
  transform: translate(-20px, -20px) scale(1.05);
}

.intro-years-badge {

  position: absolute;

  top: 45%;

  left: 65%;

  z-index: 3;

  width: 140px;

  height: 140px;

  background: var(--gradient-gold);

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);

  border: 5px solid var(--white);

  transition: all var(--transition-bounce);

  animation: ambientFloat 6s ease-in-out infinite alternate;
  /* Ambient Float Animation */

}

@keyframes ambientFloat {

  0% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(-15px);
  }

}

.intro-media:hover .intro-years-badge {

  animation-play-state: paused;

  transform: translate(-50%, -50%) scale(1.15) rotate(5deg);

}

.intro-years-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.intro-years-badge span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-rich);
  font-weight: 600;
  margin-top: 5px;
}

.intro-text h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  margin-bottom: 1.8rem;
}

.intro-text p {
  color: var(--green-mid);
  font-size: 1.1rem;
  line-height: 2.1;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 3rem 0 3.5rem;
}

.pill {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--green-warm);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.pill:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}



/* ─── EXPERIENCES ─── */

.experiences {
  padding: 12rem 6%;
  background: var(--ivory);
  position: relative;
}

.experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.exp-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1350px;
  margin: 0 auto;

  perspective: 1000px;
  /* 3D Depth Setup */

}

.exp-card {

  position: relative;

  overflow: hidden;

  background: var(--white);

  border-radius: var(--r-lg);

  transition: all var(--transition-slow);

  border: 1px solid rgba(212, 175, 55, 0.2);

  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  /* Inner Glass Glow */

  transform-style: preserve-3d;
  /* 3D Depth Setup */

}

.exp-card:hover {

  border-color: rgba(212, 175, 55, 0.6);

  z-index: 2;



  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.1), 10px 20px 40px rgba(212, 175, 55, 0.1);

}

.exp-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.25, 1), filter 1.2s;
  filter: saturate(0.9) brightness(0.95);
}

.exp-card:hover .exp-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
}

.exp-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  background: rgba(3, 14, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 8px 20px;
  border-radius: 30px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.exp-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gradient-gold);
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.exp-body {
  padding: 3rem;
  position: relative;
  background: linear-gradient(to top, #ffffff, #fcfbf8);
}

.exp-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-bounce);
  color: var(--gold-dark);
  position: absolute;
  top: -32px;
  right: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.exp-card:hover .exp-icon {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--green-deep);
  transform: rotate(15deg) scale(1.15);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.exp-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.exp-card:hover .exp-body h3 {
  color: var(--gold-dark);
}

.exp-body p {
  font-size: 1rem;
  color: var(--green-mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.exp-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-warm);
}

.exp-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--green-light);
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
}

.exp-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  transition: all var(--transition);
}

.exp-cta::after {
  content: '→';
  transition: transform var(--transition);
  font-size: 1.2em;
}

.exp-card:hover .exp-cta {
  color: var(--gold-dark);
  letter-spacing: 0.2em;
}





/* ─── PULL QUOTE ─── */

.pull-quote {
  padding: 10rem 6%;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 45rem;
  color: rgba(212, 175, 55, 0.04);
  line-height: 1;
  pointer-events: none;
}

.pull-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 3rem;
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.pull-quote blockquote em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 500;
}

.pull-quote cite {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.8);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.pull-quote cite::before,
.pull-quote cite::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
}



/* ─── WHY US ─── */

.why-us {
  padding: 12rem 6%;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(3, 14, 10, 0.08);
}

.why-cell {
  background: var(--white);
  padding: 5rem;
  transition: all var(--transition-slow);
  position: relative;
  z-index: 1;
}

.why-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-slow);
}

.why-cell:hover {
  transform: scale(1.03);
  z-index: 2;
  box-shadow: var(--shadow-hover);
  border-radius: var(--r-md);
}

.why-cell:hover::after {
  opacity: 0.05;
}

.why-cell-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.why-cell:hover .why-cell-num {
  color: rgba(212, 175, 55, 0.5);
  text-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.why-cell h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.why-cell p {
  color: var(--green-mid);
  font-size: 1.05rem;
  line-height: 2;
  font-weight: 300;
}



/* ─── DESTINATIONS ─── */

.destinations {
  padding: 12rem 6%;
  background: var(--ivory);
}

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
  max-width: 1120px;
  margin: 0 auto;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.dest-card:nth-child(1) {
  grid-row: span 2;
  min-height: 520px;
}

.dest-card:nth-child(2),
.dest-card:nth-child(3),
.dest-card:nth-child(4),
.dest-card:nth-child(5) {
  min-height: 250px;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.25, 1), filter 1.5s;
  filter: saturate(0.8);
}

.dest-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.2);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 14, 10, 0.95) 0%, rgba(3, 14, 10, 0.2) 50%, transparent 100%);
  transition: all var(--transition-slow);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(3, 14, 10, 1) 0%, rgba(3, 14, 10, 0.5) 60%, rgba(212, 175, 55, 0.15) 100%);
  box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.3);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  transform: translateY(20px);
  transition: transform var(--transition-slow);
}

.dest-card:hover .dest-info {
  transform: translateY(0);
}

.dest-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.dest-card:nth-child(1) .dest-city {
  font-size: 3.5rem;
}

.dest-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(15px);
  transition: all var(--transition-slow);
  line-height: 1.7;
}

.dest-card:hover .dest-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.dest-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gradient-gold);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}



/* ─── BOOKING PROCESS ─── */

.process {
  padding: 12rem 6%;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

.process .section-header h2 {
  color: var(--white);
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.process .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.process .ornament-label {
  color: var(--gold-bright);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.process-step {
  text-align: center;
  padding: 0 2.5rem;
}

.step-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 2.5rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  background: var(--gradient-glass);
  transition: all var(--transition-bounce);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.process-step:hover .step-circle {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
  transform: scale(1.15);
}

.process-step h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.process-step p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
}



/* ─── GALLERY ─── */

.gallery {
  padding: 12rem 6%;
  background: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 224px;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.g-item {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(3, 14, 10, 0.1);
}

.g-item:nth-child(1) {
  grid-row: span 2;
}

.g-item:nth-child(4) {
  grid-row: span 2;
}

.g-item:nth-child(6) {
  grid-column: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.25, 1), filter 1.2s;
  filter: saturate(0.85);
}

.g-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.2);
}

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 14, 10, 0.9), transparent 60%);
  opacity: 0;
  transition: all var(--transition-slow);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.g-item:hover .g-item-overlay {
  opacity: 1;
  box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.2);
}

.g-item-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transform: translateY(15px);
  transition: transform var(--transition-slow);
}

.g-item:hover .g-item-label {
  transform: translateY(0);
  transition-delay: 0.1s;
}



/* ─── TESTIMONIALS ─── */

.testimonials {
  padding: 12rem 6%;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1350px;
  margin: 0 auto;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(3, 14, 10, 0.08);
}

.testi-card {
  background: var(--ivory);
  padding: 4rem 3.5rem;
  transition: all var(--transition-slow);
  position: relative;
  z-index: 1;
}

.testi-card:hover {
  background: var(--white);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: var(--shadow-hover);
  border-radius: var(--r-lg);
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 0.8;
  margin-bottom: 1.5rem;
  display: block;
  transition: all var(--transition);
}

.testi-card:hover .testi-quote-mark {
  color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
}

.testi-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 2rem;
}

.testi-stars span {
  color: var(--gold-bright);
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.5));
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green-warm);
  line-height: 1.9;
  margin-bottom: 3rem;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2.5rem;
}

.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.testi-name {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.testi-origin {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 400;
}



/* ─── TRUST / AWARDS STRIP ─── */

.trust-strip {
  padding: 4rem 6%;
  background: var(--gradient-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23d4af37' fill-opacity='0.08'/%3E%3C/svg%3E");
}

.trust-inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 1rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.trust-badge:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.trust-badge-icon {
  font-size: 1.6rem;
  color: var(--gold-bright);
}

.trust-badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badge-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}



/* ─── FAQ ─── */

.faq {
  padding: 12rem 6%;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 8rem;
  max-width: 1350px;
  margin: 0 auto;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 140px;
}

.faq-sticky h2 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  margin-bottom: 1.8rem;
}

.faq-sticky p {
  color: var(--green-mid);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 2;
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-item {
  background: var(--white);
}

.faq-q {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  gap: 1rem;
  transition: background var(--transition);
  user-select: none;
}

.faq-q:hover {
  background: var(--ivory);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: all var(--transition-bounce);
  line-height: 1;
  font-weight: 400;
}

.faq-item.open .faq-icon {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  transform: rotate(45deg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.25, 1, 0.25, 1);
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 2.5rem 2.5rem;
  font-size: 1rem;
  color: var(--green-mid);
  line-height: 2;
  font-weight: 300;
}



/* ─── NEWSLETTER ─── */

.newsletter {
  padding: 9rem 6%;
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23030e0a' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--green-deep);
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

.newsletter p {
  color: rgba(3, 14, 10, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(3, 14, 10, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.newsletter-form input {
  flex: 1;
  padding: 24px 30px;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  color: var(--green-deep);
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(30, 84, 61, 0.6);
}

.newsletter-form button {
  padding: 24px 45px;
  background: var(--gradient-dark);
  color: var(--gold-bright);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--green-rich);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.6);
  color: var(--white);
}



/* ─── URGENCY BANNER ─── */

.urgency-banner {
  background: var(--gradient-dark);
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.urgency-banner p {
  color: var(--white);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-family: 'Jost', sans-serif;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-bright);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  animation: urgPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.urgency-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: dotBlink 2s infinite;
  box-shadow: 0 0 15px var(--gold-bright);
}

@keyframes urgPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
  }
}

@keyframes dotBlink {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.6)
  }
}



/* ─── CTA SECTION ─── */

.cta-section {
  padding: 12rem 6%;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 1.8rem;
  font-weight: 700;
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 2;
}

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

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-bright);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  margin-bottom: 3rem;
  animation: urgPulse 2.5s ease-in-out infinite;
  backdrop-filter: blur(8px);
}



/* ─── PAGE HERO ─── */

.page-hero {
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  box-shadow: 0px 10px 50px #7a6117;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/tropical-leaves.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.page-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.15rem;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold-bright);
  transition: all var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}



/* ─── CONTACT PAGE (FIXED & PREMIUM) ─── */

.contact-page {
  padding: 10rem 6%;
  background: var(--ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8rem;
  max-width: 1350px;
  margin: 0 auto;
}



/* Contact Info Side */

.contact-info h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.contact-info>p {
  color: var(--green-mid);
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 2;
  font-size: 1.1rem;
}



.contact-detail {
  display: flex;
  gap: 25px;
  margin-bottom: 2.8rem;
  align-items: flex-start;
}

.detail-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.detail-text strong {
  display: block;
  color: var(--green-deep);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
}

.detail-text span {
  color: var(--green-mid);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
}



.contact-form-box {

  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 100%);

  backdrop-filter: blur(40px);

  -webkit-backdrop-filter: blur(40px);

  border-radius: 24px;

  padding: 4.5rem;

  box-shadow: 0 40px 80px rgba(15, 56, 39, 0.1), 0 0 50px rgba(212, 175, 55, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-bottom: 3px solid rgba(212, 175, 55, 0.3);

  position: relative;

}

.contact-form-box::before {

  content: '';

  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  height: 5px;

  background: linear-gradient(90deg, #f9e596, #d4af37, #a6831d, #d4af37);

  background-size: 200% 200%;

  animation: flowingGold 5s ease infinite;
  /* Used flowingGold animation here too */

  border-radius: 24px 24px 0 0;

}



.contact-form-box h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--green-deep);
}

.contact-form-box>p {
  color: var(--green-mid);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}



.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}



.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {

  display: inline-block;

  font-family: 'Jost', sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  color: var(--green-deep);

  letter-spacing: 0.25em;

  text-transform: uppercase;

  margin-bottom: 0.8rem;

  transition: all 0.4s ease;

}



/* Label Animation when input is focused */

.form-group:focus-within label {

  color: var(--gold-dark);

  transform: translateX(5px);

  letter-spacing: 0.3em;

}



/* ─── ULTRA PREMIUM INPUT STYLES ─── */

.form-group input,

.form-group select,

.form-group textarea {

  width: 100%;

  padding: 18px 24px;

  border: 1px solid rgba(15, 56, 39, 0.15);

  border-radius: 12px;

  font-family: 'Jost', sans-serif;

  font-size: 1.05rem;

  color: var(--green-deep);

  background: #ffffff;

  transition: all 0.4s cubic-bezier(0.25, 1, 0.25, 1);

  outline: none;

  -webkit-appearance: none;

  appearance: none;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);

}



/* Hover Effect */

.form-group input:hover,

.form-group select:hover,

.form-group textarea:hover {

  border-color: rgba(212, 175, 55, 0.6);

  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);

  transform: translateY(-2px);

}



/* Focus Effect: Elegant Royal Ring */

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

  border-color: #d4af37;

  background: #fdfbf7;

  transform: translateY(-4px);

  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2), 0 15px 35px rgba(212, 175, 55, 0.15);

}



.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}



/* Placeholder Animations */

.form-group input::placeholder,

.form-group select::placeholder,

.form-group textarea::placeholder {

  color: rgba(30, 84, 61, 0.45);

  font-weight: 300;

  letter-spacing: 0.04em;

  transition: all 0.3s ease;

}



.form-group input:focus::placeholder,

.form-group textarea:focus::placeholder {

  opacity: 0;

  transform: translateX(10px);

}



/* ─── ABOUT PAGE ─── */

.about-page {
  padding: 10rem 6%;
  background: var(--ivory);
  ;
}

.about-page-inner {
  max-width: 1350px;
  margin: 0 auto;
}

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-bottom: 10rem;
}

.about-mission img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-dark);
}

.about-mission-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.8rem;
}

.about-mission-text p {
  color: var(--green-mid);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2.1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--transition-slow);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.5);
}

.team-photo {
  height: 225px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.3);
  transition: background var(--transition);
}

.team-card:hover .team-photo {
  background: var(--green-rich);
  color: rgba(212, 175, 55, 0.5);
}

.team-info {
  padding: 2.2rem;
}

.team-info h4 {
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.team-info span {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}



/* Why Page Specific */

.why-page-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.why-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  margin-bottom: 8rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-page-card {
  background: var(--white);
  padding: 4.5rem;
  transition: all var(--transition-slow);
  text-align: center;
}

.why-page-card:hover {
  background: var(--ivory);
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
  z-index: 2;
  border-radius: var(--r-lg);
}

.why-page-icon {
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
  color: var(--gold-dark);
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.why-page-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.why-page-card p {
  color: var(--green-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 300;
}



/* ─── STATS BAR ─── */

.stats-bar {
  background: var(--gradient-dark);
  padding: 6rem 6%;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-cell {
  padding: 2rem;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat-lbl {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}



/* ─── TEXT PAGES ─── */

.text-page {
  padding: 8rem 6%;
  background: var(--ivory);
}

.text-page-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 5rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.text-page-inner h2 {
  font-size: 2.2rem;
  margin: 3.5rem 0 1.5rem;
}

.text-page-inner h2:first-child {
  margin-top: 0;
}

.text-page-inner p {
  color: var(--green-mid);
  font-size: 1.1rem;
  line-height: 2.1;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.text-page-inner ul {
  list-style: disc;
  padding-left: 1.8rem;
  color: var(--green-mid);
  font-size: 1.1rem;
  line-height: 2.1;
  margin-bottom: 1.8rem;
  font-weight: 300;
}



/* ─── FOOTER ─── */

.footer {
  background: var(--green-deep);
  padding: 8rem 6% 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.1;
  margin: 1.8rem 0 2.5rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.soc-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(212, 175, 55, 0.8);
  transition: all var(--transition-bounce);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  background: rgba(255, 255, 255, 0.03);
}

.soc-btn:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2.2rem;
}

.footer-col a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
  transition: all var(--transition);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 10px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.f-contact-row {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.f-contact-row span:first-child {
  color: var(--gold-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.f-contact-row span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(212, 175, 55, 0.7);
  margin: 0 15px;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}



/* ─── RESPONSIVE & MOBILE NAVBAR FIX ─── */

@media (max-width:1200px) {

  .intro-grid,
  .contact-inner,
  .about-mission {
    gap: 4rem;
  }

}



@media (max-width:1024px) {

  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-item:nth-child(2) {
    border-right: none;
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 400px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .process-steps::before {
    display: none;
  }

  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .g-item:nth-child(6) {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-sticky {
    position: static;
    margin-bottom: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 0;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 3rem;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

}



@media (max-width:768px) {

  /* ─── PREMIUM MOBILE MENU ─── */

  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(3, 14, 10, 0.98);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;

    transform: translateX(100%);

    transition: transform 0.5s cubic-bezier(0.25, 1, 0.25, 1);

    z-index: 999;
    overflow-y: auto;

  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    padding: 10px 20px;
    display: block;
  }



  /* HAMBURGER "X" ANIMATION */

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--gold-bright);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--gold-bright);
  }



  .intro-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .intro-media {
    height: 450px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-item:nth-child(1),
  .g-item:nth-child(4) {
    grid-row: span 1;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-mission {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-mission img {
    height: 400px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .h-stat {
    padding: 0 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-cell {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 0;
  }

  .stat-cell:nth-child(even) {
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-bar {
    grid-template-columns: 1fr;
  }

  .feat-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .why-grid {
    background: rgba(212, 175, 55, 0.2);
    gap: 2px;
  }

  .faq-inner {
    gap: 3.5rem;
  }

  .text-page-inner {
    padding: 3rem;
  }

}



@media (max-width:480px) {

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .h-stat {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1.5rem 0;
    width: 100%;
  }

  .h-stat:last-child {
    border-bottom: none;
  }

  .btn {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 2.5rem;
  }

  .why-cell {
    padding: 3.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell:nth-child(even) {
    border-left: none;
  }

  .stat-cell {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 2.5rem 0;
  }

  .stat-cell:last-child {
    border-bottom: none !important;
  }

}



/* ─── ACCESSIBILITY: REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {

  *,

  *::before,

  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;

  }

}

/* ============================================================

   ADDED: FIREFLY CURSOR & RIPPLE EFFECT (By Request)

   ============================================================ */



/* Hide default cursor to show custom firefly cursor perfectly */

/* body {
  cursor: none !important;
}

a,
button,
input,
select,
textarea,
.btn {
  cursor: none !important;
} */

/* Firefly Cursor Main Dot */
/* .firefly-cursor {
  position: fixed;
  top: -10px;
  left: -10px;
  width: 10px; */
  /* Thoda sa bada kiya visibility ke liye */
  /* height: 10px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%); */

  /* YAHAN CHANGE HAI: Ek dark border aur multi-layered shadow add ki hai */
  /* border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow:
    0 0 10px var(--gold),
    0 0 5px rgba(0, 0, 0, 0.3); */
  /* Ye dark shadow white par dikhayegi */

  /* animation: firefly-pulse 2s infinite alternate;
}

@keyframes firefly-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
} */

/* Firefly Trail Dots */
/* .firefly-trail {
  position: fixed;
  top: -10px;
  left: -10px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%); */

  /* Trail par bhi halki dark shadow */
  /* box-shadow: 0 0 6px var(--gold), 0 0 2px rgba(0, 0, 0, 0.4);

  opacity: 0.8;
  transition: top 0.15s ease-out, left 0.15s ease-out, opacity 0.3s;
} */

/* Interactive Hover State */
/* .firefly-cursor.hover-active {
  width: 30px;
  height: 30px;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #b8860b; */
  /* Thoda dark gold border hover par */
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  animation: none;
} */

/* Global Click Ripple Effect */
/* .ripple-effect {
  position: fixed;
  border-radius: 50%; */
  /* Ripple ko thoda contrast diya hai */
  /* background: radial-gradient(circle, rgba(184, 134, 11, 0.8) 0%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-animation 0.7s cubic-bezier(0.25, 1, 0.25, 1) forwards;
  pointer-events: none;
  z-index: 999997;
}

@keyframes ripple-animation {
  0% {
    width: 0px;
    height: 0px;
    opacity: 1;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
} */