/* ============================================================
   HOPEBRIDGE WELLNESS CENTER — STYLES.CSS
   Theme: Jungle Green (#1B5E3B) + Deep Navy (#0D1F3C) + White
   ============================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --jungle:      #1B5E3B;
  --jungle-light:#2E7D52;
  --jungle-pale: #EAF4EE;
  --navy:        #0D1F3C;
  --navy-mid:    #1A3460;
  --navy-light:  #EEF1F7;
  --white:       #FFFFFF;
  --cream:       #FAFAF7;
  --gold:        #C9A84C;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      rgba(27,94,59,0.15);
  --shadow-sm:   0 2px 12px rgba(13,31,60,0.08);
  --shadow-md:   0 8px 32px rgba(13,31,60,0.12);
  --shadow-lg:   0 20px 60px rgba(13,31,60,0.18);
  --radius-sm:   0px;
  --radius-md:   0px;
  --radius-lg:   0px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--jungle); border-radius: 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
.display-serif { font-family: 'Playfair Display', serif; }

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--white); letter-spacing: 2px;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.15);
  border-radius: 0; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0; background: var(--gold);
  border-radius: 0;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ── NAVBAR ── */
/*
  Default (top of page): white translucent so the dark navy/jungle logo
  is clearly legible against the hero image.
  Scrolled: white with a soft shadow for a clean sticky bar.
*/
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;                          /* no side padding — full bleed */
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
  box-shadow: 0 2px 20px rgba(13,31,60,0.08);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 28px rgba(13,31,60,0.12);
  border-bottom-color: rgba(13, 31, 60, 0.12);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  max-width: 100%;          /* full bleed */
  padding: 0 40px;          /* comfortable inner gutter, no centering squeeze */
}

/* Logo mark: now uses brand colors on white bg */
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 44px; height: 44px; border-radius: 0;
  background: var(--jungle-pale);
  border: 1.5px solid rgba(27, 94, 59, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--jungle);
  flex-shrink: 0;
  transition: all var(--transition);
}
#navbar.scrolled .nav-logo-mark {
  background: var(--jungle);
  border-color: var(--jungle);
  color: var(--white);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.5px;
}
.nav-brand-tag {
  font-size: 0.62rem; color: var(--jungle);
  letter-spacing: 1.5px; text-transform: uppercase;
}

.nav-menu {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--jungle);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--jungle); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px; border-radius: 0;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600; font-size: 0.875rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.nav-cta:hover {
  background: #d4b05a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy); border-radius: 0;   /* dark lines on white bar */
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 998; opacity: 0; visibility: hidden;
  transition: all var(--transition); backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu .nav-link {
  font-size: 1.2rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block; color: rgba(255,255,255,0.8);
}
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-cta {
  margin-top: 20px; text-align: center;
  display: block; border-bottom: none;
}
.mobile-contact-info {
  margin-top: auto; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-contact-info p {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.mobile-contact-info a {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  display: block; margin-bottom: 4px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,60,0.88) 0%, rgba(27,94,59,0.75) 60%, rgba(13,31,60,0.82) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 0;
  background: rgba(201,168,76,0.25);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

.hero-container {
  position: relative; z-index: 1;
  max-width: 100%;                     /* full bleed */
  margin: 0;
  padding: 120px 40px 80px;            /* matches nav-inner gutter */
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 18px; border-radius: 0;
  margin-bottom: 28px;
  color: var(--gold); font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 0; background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.08; margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  font-weight: 600;
}
.hero-title strong {
  display: block; font-weight: 700;
  font-size: 0.9em;
}

.hero-desc {
  max-width: 560px;
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  margin-bottom: 44px; font-weight: 300;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}
.btn-primary {
  padding: 16px 40px; border-radius: 0;
  background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
  color: var(--white); font-weight: 600; font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 8px 28px rgba(27,94,59,0.45);
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27,94,59,0.55);
  background: linear-gradient(135deg, var(--jungle-light), #3A9966);
}
.btn-outline {
  padding: 16px 40px; border-radius: 0;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-weight: 500; font-size: 1rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; background: transparent;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 1s ease 1.1s both;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-dot {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0; position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 0;
  background: var(--gold);
  animation: scrollBob 2s ease infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70% { transform: translateX(-50%) translateY(14px); opacity: 0.2; }
}

/* ── SECTION SHARED ── */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

/*
  Containers: full-bleed with a fixed inner gutter.
  No max-width centering that creates the "pressed in" look on wide screens.
*/
.container {
  width: 100%;
  padding: 0 40px;
}
.container-wide {
  width: 100%;
  padding: 0 40px;
}

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--jungle); font-size: 0.78rem;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--jungle); flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--jungle); }
.section-desc {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 600px; font-weight: 300; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after { content: ''; width: 32px; height: 2px; background: var(--jungle); flex-shrink: 0; }

/* ── WELCOME / ABOUT ── */
.welcome {
  background: var(--white);
  overflow: hidden;
}
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.welcome-visual { position: relative; }
.welcome-img-main {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}
.welcome-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 0;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.welcome-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--jungle);
  color: var(--white); padding: 18px 24px;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.welcome-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.welcome-badge-text { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }

.welcome-content { padding: 20px 0; }
.welcome-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.value-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--jungle-pale);
  border-radius: 0;
  border-left: 3px solid var(--jungle);
  transition: all var(--transition);
}
.value-chip:hover { transform: translateX(4px); background: #d6edde; }
.value-chip-icon { font-size: 1.3rem; flex-shrink: 0; }
.value-chip-text { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.service-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 220px; overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.5), transparent);
}
.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--jungle);
  color: var(--white); font-size: 0.72rem;
  padding: 5px 14px; border-radius: 0;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.service-card-body { padding: 28px; }
.service-icon {
  width: 52px; height: 52px; border-radius: 0;
  background: var(--jungle-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--jungle); transform: rotate(-5deg);
}
.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.service-card-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--jungle); font-size: 0.875rem; font-weight: 600;
  margin-top: 18px;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 14px; }

/* ── PRICING ── */
.pricing { background: var(--navy); color: var(--white); }
.pricing .section-title { color: var(--white); }
.pricing .section-desc { color: rgba(255,255,255,0.65); }
.pricing .section-label { color: var(--gold); }
.pricing .section-label::before { background: var(--gold); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.pricing-card {
  border-radius: 0;
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--jungle);
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
  border-color: transparent;
  transform: scale(1.04);
}
.pricing-card.featured::before { background: var(--gold); }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pricing-badge {
  display: inline-block; padding: 5px 16px; border-radius: 0;
  background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.pricing-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; margin-bottom: 4px;
}
.pricing-sub { font-size: 0.85rem; opacity: 0.65; margin-bottom: 28px; }
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700; line-height: 1;
  margin-bottom: 6px;
}
.pricing-amount span { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-per { font-size: 0.82rem; opacity: 0.6; margin-bottom: 32px; }
.pricing-features { margin-bottom: 36px; }
.pricing-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 0;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
  color: var(--gold);
}
.btn-pricing {
  width: 100%; padding: 14px;
  border-radius: 0; border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; background: transparent;
  transition: all var(--transition);
}
.btn-pricing:hover { background: var(--white); color: var(--navy); }
.pricing-card.featured .btn-pricing {
  background: var(--white); color: var(--jungle); border-color: var(--white);
}
.pricing-card.featured .btn-pricing:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── WHY CHOOSE US ── */
.why-us { background: var(--white); overflow: hidden; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-visual { position: relative; }
.why-images {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-img {
  border-radius: 0; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img:nth-child(1) { height: 260px; }
.why-img:nth-child(2) { height: 200px; margin-top: 60px; }
.why-img:nth-child(3) { height: 200px; }
.why-img:nth-child(4) { height: 260px; margin-top: -60px; }

.why-features { margin-top: 40px; }
.why-feature {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.why-feature:last-child { border-bottom: none; }
.why-feature:hover { padding-left: 8px; }
.why-feature-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 0;
  background: var(--jungle-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
}
.why-feature:hover .why-feature-icon { background: var(--jungle); transform: scale(1.1); }
.why-feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-feature-desc { font-size: 0.88rem; color: var(--text-mid); }

/* ── BOOKING ── */
.booking { background: var(--jungle-pale); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: start;
}
.booking-info-card {
  background: var(--navy); border-radius: 0;
  padding: 48px 40px; color: var(--white); position: sticky; top: 100px;
}
.booking-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; margin-bottom: 16px;
}
.booking-info-desc { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.8; }
.booking-contact-items { display: flex; flex-direction: column; gap: 16px; }
.booking-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 0;
  transition: all var(--transition);
}
.booking-contact-item:hover { background: rgba(255,255,255,0.12); }
.bci-icon { font-size: 1.3rem; }
.bci-label { font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; display: block; }
.bci-value { font-size: 0.9rem; }

.booking-form-card {
  background: var(--white); border-radius: 0;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.booking-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.booking-form-sub { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%; padding: 13px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--text-dark); background: var(--cream);
  transition: all var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--jungle);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,94,59,0.1);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
  color: var(--white); border: none; border-radius: 0;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(27,94,59,0.35);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(27,94,59,0.45);
}
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 14px; }
.form-success {
  display: none; text-align: center; padding: 28px;
  background: var(--jungle-pale); border-radius: 0;
  border: 2px solid var(--jungle);
}
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--jungle); }
.form-success p { font-size: 0.9rem; color: var(--text-mid); margin-top: 8px; }

/* ── MISSION / VISION STRIP ── */
.mission-strip {
  background: linear-gradient(135deg, var(--jungle) 0%, var(--navy) 100%);
  padding: 80px 0; overflow: hidden;
}
.mission-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mission-block { color: var(--white); }
.mission-block-tag {
  display: inline-block; padding: 5px 16px;
  background: rgba(201,168,76,0.2); border: 1px solid var(--gold);
  border-radius: 0; color: var(--gold);
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 16px;
}
.mission-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600; margin-bottom: 14px;
}
.mission-block p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.85; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testimonials-slider { margin-top: 60px; position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 28px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white); border-radius: 0;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 6rem;
  color: var(--jungle-pale); line-height: 1;
  font-weight: 700;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 0;
  background: linear-gradient(135deg, var(--jungle), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }
.testimonial-nav { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.t-nav-btn {
  width: 44px; height: 44px; border-radius: 0;
  border: 2px solid var(--jungle);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--jungle); font-size: 1.1rem;
  transition: all var(--transition);
}
.t-nav-btn:hover { background: var(--jungle); color: var(--white); }

/* ── LOCATION ── */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-map {
  height: 420px; border-radius: 0; overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--jungle-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--jungle);
  position: relative;
}
.location-map iframe { width: 100%; height: 100%; border: none; border-radius: 0; }
.location-details { display: flex; flex-direction: column; gap: 24px; }
.location-detail-item {
  display: flex; gap: 18px;
  padding: 20px 24px;
  background: var(--cream); border-radius: 0;
  border-left: 4px solid var(--jungle);
  transition: all var(--transition);
}
.location-detail-item:hover { transform: translateX(6px); background: var(--jungle-pale); }
.ldi-icon { font-size: 1.5rem; flex-shrink: 0; }
.ldi-title { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.ldi-value { font-size: 0.88rem; color: var(--text-mid); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.footer-logo-mark {
  width: 52px; height: 52px; border-radius: 0;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.footer-brand-tag { font-size: 0.68rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-btn {
  width: 40px; height: 40px; border-radius: 0;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--jungle); color: var(--white); transform: translateY(-3px); }
.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '›'; color: var(--jungle-light); font-size: 1rem;
  transition: transform var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { color: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.fci-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.fci-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.fci-text a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.fci-text a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 950;
  width: 58px; height: 58px; border-radius: 0;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
  animation: bounceIn 0.6s ease 2s both;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: ''; position: absolute;
  inset: -4px; border-radius: 0;
  border: 2px solid rgba(37,211,102,0.4);
  animation: rippleWA 2s ease infinite;
}
@keyframes rippleWA {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .welcome-grid, .why-grid, .booking-grid, .mission-content, .location-grid { grid-template-columns: 1fr; }
  .welcome-visual { display: none; }
  .why-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .mission-content { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }       /* tighter gutter on mobile */
  .container, .container-wide { padding: 0 20px; }
  .hero-container { padding: 120px 20px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .booking-form-card { padding: 32px 24px; }
  .booking-info-card { padding: 32px 24px; position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .section { padding: 70px 0; }
  .welcome-values { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .booking-grid { gap: 32px; }
}
