/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --forest: #1a3c2e;
  --forest-mid: #2d6a4f;
  --forest-light: #52b788;
  --gold: #d4a017;
  --gold-light: #f4c842;
  --sand: #f5f0e8;
  --sand-dark: #e8dfc8;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { font-size: 1rem; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
  display: block;
  margin-bottom: 0.6rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: var(--white); color: var(--forest); }
.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline-dark:hover { background: var(--forest); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar.scrolled .logo { color: var(--forest); }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--forest-light); }
.navbar.scrolled .nav-cta { color: var(--forest); }

/* Logo — sized to shrink gracefully instead of wrapping onto a second line */
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* Two-tier logo text: full name shrinks with clamp(); an abbreviated
   form takes over on very narrow phones so it never breaks the row. */
.logo-text {
  font-size: clamp(0.92rem, 2.6vw, 1.3rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}
.logo-text em { font-style: normal; color: var(--gold); }
.logo-text .logo-short { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; position: relative; }
.nav-cta {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .hamburger span { background: var(--forest); }

/* ===== LOGGED-IN USER CHIP (desktop) — avatar + truncated name + dropdown,
   so a long name never overlaps the rest of the navbar. ===== */
.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  cursor: pointer;
  max-width: 220px;
  transition: background 0.18s ease;
}
.user-chip:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .user-chip { background: rgba(26,60,46,0.06); border-color: rgba(26,60,46,0.14); }
.navbar.scrolled .user-chip:hover { background: rgba(26,60,46,0.1); }
.user-chip .avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem;
}
.user-chip .greeting {
  font-size: 0.85rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 130px; color: rgba(255,255,255,0.95);
}
.navbar.scrolled .user-chip .greeting { color: var(--text); }
.user-chip i.fa-chevron-down {
  font-size: 0.7rem; color: rgba(255,255,255,0.7); flex-shrink: 0;
  transition: transform 0.18s ease;
}
.navbar.scrolled .user-chip i.fa-chevron-down { color: #98a2b3; }
.user-chip.open i.fa-chevron-down { transform: rotate(180deg); }

.user-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: #fff; border-radius: 14px; min-width: 200px;
  box-shadow: 0 16px 48px rgba(16,24,40,0.2);
  padding: 8px; display: none; z-index: 1100;
  border: 1px solid rgba(0,0,0,0.06);
}
.user-menu.open { display: block; }
.user-menu a, .user-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 11px 12px; border-radius: 9px; font-size: 0.87rem; font-weight: 600; color: #344054;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.user-menu a:hover, .user-menu button:hover { background: var(--sand); color: var(--forest); }
.user-menu i { width: 16px; color: #98a2b3; }
.user-menu .divider { height: 1px; background: #f0f0f0; margin: 6px 4px; }

/* Matching compact block for the mobile slide-out menu */
.mobile-user-chip {
  display: flex; align-items: center; gap: 12px; padding: 16px 0;
  border-bottom: 1px solid #f0f0f0; margin-bottom: 6px;
}
.mobile-user-chip .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--forest);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.mobile-user-chip .info { min-width: 0; }
.mobile-user-chip .name {
  font-weight: 700; color: var(--forest); font-size: 0.95rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mobile-user-chip .email {
  font-size: 0.78rem; color: #667085;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1f17 0%, #1a3c2e 40%, #2d6a4f 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(82,183,136,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.08) 0%, transparent 50%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
 
  opacity: 0.25;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.35);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold-light); }
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== SEARCH BAR ===== */
.search-section {
  background: var(--white);
  padding: 0 5%;
  margin-top: -1px;
}
.search-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  transform: translateY(-50px);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
}
.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--sand);
  padding: 4px;
  border-radius: 100px;
  width: fit-content;
}
.search-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.search-tab.active { background: var(--forest); color: var(--white); }
.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.search-field input, .search-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.search-field input:focus, .search-field select:focus { border-color: var(--forest-light); box-shadow: 0 0 0 3px rgba(82,183,136,0.12); }

/* ===== SECTION COMMONS ===== */
section { padding: 90px 5%; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--forest); margin-bottom: 0.8rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== TOUR CARDS ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.tour-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.tour-card-body { padding: 22px; }
.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.tour-meta-item svg { width: 14px; height: 14px; color: var(--forest-light); }
.tour-card h3 { color: var(--forest); margin-bottom: 8px; font-size: 1.1rem; }
.tour-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.tour-price { display: flex; flex-direction: column; }
.tour-price-from { font-size: 0.72rem; color: var(--text-muted); }
.tour-price-amt { font-size: 1.2rem; font-weight: 800; color: var(--forest); }
.tour-price-amt span { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); }
.tour-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

/* ===== FEATURES ===== */
.features-section { background: var(--sand); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover { border-color: var(--forest-light); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}
.feature-card h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ===== VOLUNTEER SECTION ===== */
.volunteer-section { background: var(--forest); color: var(--white); }
.volunteer-section .eyebrow { color: var(--gold-light); }
.volunteer-section h2 { color: var(--white); }
.volunteer-section .section-header p { color: rgba(255,255,255,0.7); }

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.volunteer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.volunteer-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(82,183,136,0.5); transform: translateY(-4px); }
.volunteer-card-img {
  height: 180px;
  overflow: hidden;
}
.volunteer-card-img img { width: 100%; height: 100%; object-fit: cover; }
.volunteer-card-body { padding: 20px; }
.volunteer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.volunteer-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(82,183,136,0.2);
  color: var(--forest-light);
  padding: 4px 10px;
  border-radius: 100px;
}
.volunteer-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.volunteer-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
.volunteer-card-meta {
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
}
.volunteer-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--sand); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-stars {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,60,46,0);
  transition: var(--transition);
}
.gallery-item:hover::after { background: rgba(26,60,46,0.3); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  color: var(--white);
  text-align: center;
  padding: 100px 5%;
}
.cta-section h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--forest);
  padding: 60px 5%;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { border-right: 1px solid rgba(255,255,255,0.1); padding: 0 20px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold-light); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ===== FOOTER ===== */
footer {
  background: #0d1f17;
  color: rgba(255,255,255,0.75);
  padding: 70px 5% 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  text-decoration: none;
}
.social-btn:hover { background: var(--forest-light); color: var(--white); }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--forest-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 140px 5% 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1531123897727-8f129e1688ce?w=1600&auto=format&fit=crop') center/cover;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ===== FILTERS ===== */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid #e0e0e0;
  color: var(--text-muted);
  background: var(--white);
}
.chip:hover, .chip.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.filter-select {
  padding: 9px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--forest-light); }

/* ===== FORMS ===== */
.form-section { background: var(--sand); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.form-card h2 { color: var(--forest); margin-bottom: 8px; }
.form-card > p { color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest-light); box-shadow: 0 0 0 3px rgba(82,183,136,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--forest); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--forest);
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 3px; }
.contact-item p { font-size: 0.9rem; color: var(--text); }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--forest);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
}
.about-text h2 { color: var(--forest); margin-bottom: 1.2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.8; font-size: 1rem; }
.values-list { display: flex; flex-direction: column; gap: 14px; margin-top: 1.8rem; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-check {
  width: 26px; height: 26px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.value-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
.value-item p { font-size: 0.86rem; color: var(--text-muted); }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--forest-light);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { color: var(--forest); font-size: 1rem; margin-bottom: 5px; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 30px; height: 30px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--forest);
  transition: var(--transition);
}
.team-social a:hover { background: var(--forest); color: var(--white); }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 8px;
  display: block;
}
.blog-card h3 { color: var(--forest); font-size: 1.05rem; margin-bottom: 9px; line-height: 1.35; }
.blog-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-author { display: flex; align-items: center; gap: 7px; }
.blog-author-img {
  width: 26px; height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  background: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--forest-light); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--forest); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { color: var(--forest); font-size: 1.2rem; }
.modal-close {
  width: 32px; height: 32px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.modal-close:hover { background: #ffe0e0; color: #d00; }
.modal-body { padding: 24px 28px 28px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.1rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--sand);
  text-align: center;
  padding: 72px 5%;
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-inner h2 { color: var(--forest); margin-bottom: 0.8rem; }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 1.6rem; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 100px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--forest-light); }

/* ===== PAYMENT SECTION ===== */
.payment-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 500;
}
.payment-method.active { border-color: var(--forest); background: rgba(26,60,46,0.04); }
.payment-method:hover { border-color: var(--forest-light); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 28px 5%;
  transform: translateX(100%);
  transition: var(--transition);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--forest-light); padding-left: 8px; }
.mobile-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  /* Give the long brand name room before we resort to the hamburger */
  .nav-links { gap: 20px; }
  .nav-link { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}

/* Switch to the hamburger earlier than before (992px, not 768px) so the
   full-length logo + nav links never fight for space and wrap awkwardly. */
@media (max-width: 992px) {
  .nav-links, .nav-actions { display: none !important; }
  .hamburger { display: flex !important; }
}

@media (max-width: 768px) {
  .search-form { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .search-form { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 5%; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Abbreviate the brand name on very narrow phones so the header never
   crowds the hamburger, even before the hamburger tier kicks in. */
@media (max-width: 420px) {
  .logo-text { max-width: 40vw; }
  .logo-text .logo-full { display: none; }
  .logo-text .logo-short { display: inline; }
}

.testimonial-stars {
  color: #fbbf24;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 80px 0;
  background: var(--bg);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Stats Grid */
.community-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.community-stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.community-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.community-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1.2;
}

.community-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.community-stat-icon {
  font-size: 1.5rem;
  margin-top: 6px;
}

/* Impact Areas */
.community-impact-areas {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.community-impact-areas h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.impact-areas-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.impact-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.impact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--forest-pale);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.impact-info {
  flex: 1;
  min-width: 0;
}

.impact-info h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 4px;
}

.impact-bar {
  height: 5px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.impact-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(to right, var(--forest-light), var(--forest));
  transition: width 1s ease;
}

.impact-percent {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  margin-left: 10px;
  min-width: 40px;
  text-align: right;
}

/* Community CTA */
.community-cta {
  text-align: center;
}

/* Image Wrapper */
.community-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.community-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.community-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.community-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(16, 24, 40, 0.9), transparent);
  padding: 30px 24px 20px;
}

.overlay-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.overlay-stat {
  text-align: center;
}

.overlay-stat-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.overlay-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Community Quote */
.community-quote {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 4px;
}

.community-quote p {
  font-size: 0.95rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .community-image img {
    height: 300px;
  }

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

@media (max-width: 768px) {
  .community-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-stat-number {
    font-size: 1.5rem;
  }

  .overlay-content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .community-image img {
    height: 250px;
  }

  .impact-areas-grid {
    gap: 10px;
  }

  .community-quote p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .community-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .community-stat-card {
    padding: 16px 12px;
  }

  .community-stat-number {
    font-size: 1.2rem;
  }
}





.culture-imgs{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:14px;
  height:380px;
  overflow:hidden;          /* NEW — safety net so nothing can ever spill out */
}
.culture-imgs img{
  width:100%;
  height:100%;
  min-width:0;               /* NEW */
  min-height:0;               /* NEW — this is the actual fix */
  object-fit:cover;
  border-radius:16px;
  display:block;             /* avoids stray inline-image whitespace gaps */
}
.culture-imgs img:first-child{ grid-row:1 / span 2; }