/* =============================================
   NEPAL HIMALAYAN JOURNEYS — Design System
   Palette: Himalayan Dawn
   ============================================= */

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

/* CSS Variables */
:root {
  --forest:    #1a3c2e;
  --moss:      #2d6a4f;
  --sage:      #52b788;
  --mist:      #b7e4c7;
  --snow:      #f8faf9;
  --earth:     #8b5e3c;
  --saffron:   #e8943a;
  --dusk:      #2c3e50;
  --gold:      #d4a843;
  --cloud:     rgba(255,255,255,0.92);

  --font-display: 'Cinzel', serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 80px;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(26,60,46,0.15);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--cloud);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(26,60,46,0.12);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 40px; height: 40px; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
  transition: color var(--transition);
}
.nav.scrolled .nav-brand { color: var(--forest); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color var(--transition);
}
.nav.scrolled .nav-links a { color: var(--dusk); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 2px; background: var(--sage);
  transition: right var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--sage);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--transition), transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--moss) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }
.nav.scrolled .nav-toggle span { background: var(--forest); }

/* =============================================
   ANIMATED MOUNTAIN HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(170deg, #0f2027 0%, #1a3c2e 40%, #2c5364 100%);
}

/* Sky gradient animated */
.hero-sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #0d1b2a 0%, #1a3c5e 25%, #2d6a6e 50%, #4a9e7e 75%, #7ec8a0 100%);
  animation: skyShift 12s ease-in-out infinite alternate;
}
@keyframes skyShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(15deg) brightness(1.15); }
  100% { filter: hue-rotate(-10deg) brightness(0.9); }
}

/* Stars */
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 15%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 8%,  rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 5%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 12%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 3%,  rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Aurora effect */
.hero-aurora {
  position: absolute; top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(90deg,
    transparent 0%, rgba(82,183,136,0.08) 20%, rgba(212,168,67,0.06) 50%,
    rgba(82,183,136,0.1) 80%, transparent 100%);
  animation: auroraFlow 8s ease-in-out infinite alternate;
  border-radius: 0 0 60% 60%;
}
@keyframes auroraFlow {
  0%   { transform: translateX(-10%) scaleX(1); opacity: 0.6; }
  100% { transform: translateX(10%)  scaleX(1.1); opacity: 1; }
}

/* SVG Mountain Layers */
.hero-mountains { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-mountains svg { width: 100%; display: block; }

/* Snow particles */
.snowflakes {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -10px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  animation: snowfall linear infinite;
  user-select: none;
}
@keyframes snowfall {
  0%   { transform: translateY(-10px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Floating clouds */
.clouds { position: absolute; inset: 0; pointer-events: none; }
.cloud {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  filter: blur(20px);
  animation: cloudDrift linear infinite;
}
@keyframes cloudDrift {
  0%   { transform: translateX(-200px); }
  100% { transform: translateX(calc(100vw + 200px)); }
}

/* Hero Content */
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
  animation: heroReveal 1.2s cubic-bezier(0.2,0.8,0.3,1) both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 0.875rem 2.25rem;
  background: var(--sage);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(82,183,136,0.4);
}
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(82,183,136,0.5); }
.btn-secondary {
  padding: 0.875rem 2.25rem;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 10;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: center; gap: 0;
  background: rgba(26,60,46,0.85);
  backdrop-filter: blur(12px);
}
.hero-stat {
  padding: 1.25rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
section { padding: 6rem 5vw; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 600px;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-body { margin: 0 auto; }

/* Divider leaf */
.leaf-divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.leaf-divider::before, .leaf-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--mist), transparent);
}
.leaf-icon { color: var(--sage); font-size: 1.2rem; }

/* =============================================
   WHY NEPAL (Features Grid)
   ============================================= */
.features { background: var(--snow); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(82,183,136,0.15);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.feature-desc { font-size: 0.9rem; line-height: 1.7; color: #5a6a7a; }

/* =============================================
   PLACES PREVIEW
   ============================================= */
.places-preview { background: linear-gradient(180deg, #f0f7f4 0%, var(--snow) 100%); }
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.place-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(26,60,46,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.place-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(26,60,46,0.18); }
.place-thumb {
  height: 220px;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.place-thumb-inner {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
}
.place-card:hover .place-thumb-inner { transform: scale(1.06); }
.place-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.3rem 0.75rem;
  background: var(--gold);
  color: #fff;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.place-body { padding: 1.5rem; }
.place-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.place-region { font-size: 0.78rem; color: var(--sage); letter-spacing: 0.05em; font-weight: 600; text-transform: uppercase; margin-bottom: 0.75rem; }
.place-desc { font-size: 0.875rem; line-height: 1.7; color: #5a6a7a; }
.place-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(82,183,136,0.15); }
.place-altitude { font-size: 0.78rem; color: #888; }
.place-link { font-size: 0.82rem; font-weight: 600; color: var(--sage); }
.place-link:hover { color: var(--moss); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--forest); color: #fff; }
.testimonials .section-title { color: #fff; }
.testimonials .section-eyebrow { color: var(--sage); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.review-card {
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.1); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.review-name { font-weight: 600; font-size: 0.875rem; color: #fff; }
.review-origin { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
  text-align: center; padding: 5rem 5vw;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-body { color: rgba(255,255,255,0.8); margin: 0 auto 2.5rem; }
.cta-section .section-eyebrow { color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0d1f17;
  color: rgba(255,255,255,0.65);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin: 1rem 0 0.75rem;
}
.footer-tagline { font-size: 0.875rem; line-height: 1.7; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--sage); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-eco {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--sage);
  font-size: 0.8rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--sage); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 5vw 4rem;
  background: linear-gradient(135deg, var(--forest) 0%, #1e4d3a 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  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='%2352b788' fill-opacity='0.05'%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");
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  position: relative;
}
.page-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  position: relative;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  position: relative;
}
.breadcrumb a { color: var(--sage); }

/* =============================================
   PLACES PAGE
   ============================================= */
.places-filter {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid rgba(82,183,136,0.3);
  background: transparent;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--moss);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--sage); border-color: var(--sage); color: #fff;
}
.places-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.service-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(82,183,136,0.15);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--forest); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9rem; line-height: 1.75; color: #5a6a7a; margin-bottom: 1.25rem; }
.service-features { display: flex; flex-direction: column; gap: 0.4rem; }
.service-feature { font-size: 0.82rem; color: var(--moss); display: flex; gap: 0.5rem; }
.service-feature::before { content: '✓'; font-weight: 700; }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.pricing-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(82,183,136,0.2);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--sage);
  background: var(--forest); color: #fff;
}
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.7); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  padding: 0.25rem 1rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.pricing-name { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem; font-weight: 600; }
.pricing-price { font-family: var(--font-display); font-size: 2.5rem; color: var(--forest); margin-bottom: 0.25rem; }
.pricing-duration { font-size: 0.8rem; color: #888; margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin-bottom: 2rem; }
.pricing-feature { font-size: 0.85rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; gap: 0.5rem; }
.pricing-card.featured .pricing-feature { border-bottom-color: rgba(255,255,255,0.08); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%; height: 500px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative; overflow: hidden;
}
.about-img-float {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 180px; height: 180px;
  border-radius: var(--radius);
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.about-img-float-num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.about-img-float-label { font-size: 0.75rem; line-height: 1.4; margin-top: 0.25rem; opacity: 0.9; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.about-value { padding: 1.25rem; background: #f0f7f4; border-radius: var(--radius); }
.about-value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.about-value-title { font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--moss)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.team-name { font-family: var(--font-serif); font-size: 1rem; color: var(--forest); margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--sage); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-info-icon { width: 48px; height: 48px; background: #f0f7f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.95rem; color: var(--dusk); line-height: 1.6; }
.contact-form { background: #fff; padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--forest); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid rgba(82,183,136,0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--snow);
}
.form-control:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(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; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--cloud); backdrop-filter: blur(16px); padding: 2rem; gap: 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dusk) !important; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { padding: 0.875rem 1.5rem; flex: 1 1 auto; min-width: 120px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Utility */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
