/* ================================================================
   VOLUNTHOST — Master Stylesheet  v2.0
   Single file imported by every page
   ================================================================ */

/* ── GOOGLE FONTS loaded via <link> in each HTML file ── */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --primary:          #1a7a4a;
  --primary-dark:     #145f39;
  --primary-mid:      #3da06b;
  --primary-light:    #e6f4ec;
  --accent:           #f59e0b;
  --accent-light:     #fef3c7;
  --green:#16a34a;
--dark:#1f2937;

  /* Status */
  --pending:          #b45309;
  --pending-bg:       #fef3c7;
  --approved:         #15803d;
  --approved-bg:      #dcfce7;
  --rejected:         #b91c1c;
  --rejected-bg:      #fee2e2;

  /* Neutrals */
  --bg:               #f8f7f4;
  --surface:          #ffffff;
  --surface2:         #f1f0ed;
  --text:             #1c1c1c;
  --muted:            #6b7280;
  --hint:             #9ca3af;
  --border:           #e5e7eb;
  --border-mid:       #d1d5db;

  /* Type */
  --serif:            'Fraunces', serif;
  --sans:             'DM Sans', sans-serif;

  /* Radius */
  --r-sm:             6px;
  --r-md:             10px;
  --r-lg:             16px;
  --r-xl:             22px;
  --r-pill:           999px;

  /* Layout */
  --cont:             1300px;
  --hh:               64px;

  /* Shadows */
  --shadow-sm:        0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:        0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:        0 8px 32px rgba(26,122,74,.12);
  --shadow-card:      0 2px 8px rgba(0,0,0,.06);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--sans); }
h1,h2,h3,h4 { font-family: var(--serif); letter-spacing: -.03em; line-height: 1.15; }

/* ================================================================
   NAVBAR
   ================================================================ */

/* ================= HEADER FIX ================= */

/* ================= NAVBAR ================= */


/* ================= NAVBAR BASE ================= */

.site-nav {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 110px;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

/* ================= LAYOUT ================= */

.nav-inner {
  max-width: var(--cont);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  /* premium asymmetric spacing */
  column-gap: 55px;
}

/* ================= LOGO ================= */

.brand {
  display: flex;
  align-items: center;
  padding-left: 8px; /* gives left breathing space */
}

.logo {
  height: 170px;
  width: auto;
  object-fit: contain;
  margin-left:-38px;
}

/* ================= MENU ================= */

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 21px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-md);
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg);
}

/* ================= CTA ================= */

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;

  margin-right: 6px; /* keeps right tighter than left */
}

.nav-hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 999;
  animation: fadeSlide 0.25s ease-in-out;
}

/* OPEN STATE */
.mobile-nav.open {
  display: flex;
}

/* MENU LIST RESET */
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* MENU ITEMS */
.mobile-menu-list li {
  margin: 0;
  padding: 0;
}

/* LINKS */
.mobile-nav a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text, #222);
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* HOVER EFFECT */
.mobile-nav a:hover {
  background: rgba(0,0,0,0.05);
  transform: translateX(4px);
}

/* CTA BUTTON */
.mobile-nav .btn-primary-custom {
  margin-top: 10px;
  text-align: center;
  background: var(--primary, #000);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  width:50%;
}
.mobile-nav .btn-primary-custom:hover {
    background: var(--primary, #000); }

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .site-nav {
    height: 80px;
    padding: 0 16px;
  }

  .logo {
    height: 170px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    top: 80px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 170px;
  }
}
/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s, transform .15s, box-shadow .18s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,74,.25); }
.btn-primary:active { transform: none; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border-mid);
  padding: 10px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .18s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 13px 34px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow .2s, transform .15s;
  font-family: var(--sans);
}
.btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,.18); transform: translateY(-2px); color: var(--primary-dark); }

.btn-sm {
  padding: 7px 16px;
  font-size: 12.5px;
  border-radius: var(--r-sm);
  font-weight: 600;
  border: 1.5px solid var(--border-mid);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  transition: all .15s;
  text-decoration: none;
}
.btn-sm:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm.danger { border-color: #f09595; color: var(--rejected); background: var(--rejected-bg); }
.btn-sm.danger:hover { background: #fca5a5; }
.btn-sm.success { border-color: #86efac; color: var(--approved); background: var(--approved-bg); }
.btn-sm.success:hover { background: #bbf7d0; }

/* ================================================================
   HERO (front page)
   ================================================================ */
/*.hero {*/
/*  background: linear-gradient(155deg, #e8f5ee 0%, #f4f3f0 55%, #fff 100%);*/
/*  border-bottom: 1px solid var(--border);*/
/*  padding: 88px 24px 64px;*/
/*  text-align: center;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/
/*.hero::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 560px; height: 560px;*/
/*  border-radius: 50%;*/
/*  background: radial-gradient(circle, rgba(26,122,74,.06) 0%, transparent 70%);*/
/*  top: -140px; right: -100px;*/
/*  pointer-events: none;*/
/*}*/
/*.hero::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 320px; height: 320px;*/
/*  border-radius: 50%;*/
/*  background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);*/
/*  bottom: -80px; left: -60px;*/
/*  pointer-events: none;*/
/*}*/
/*.hero-badge {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  background: var(--primary-light);*/
/*  color: var(--primary);*/
/*  font-size: 12.5px;*/
/*  font-weight: 600;*/
/*  padding: 5px 16px;*/
/*  border-radius: var(--r-pill);*/
/*  margin-bottom: 24px;*/
/*  position: relative;*/
/*}*/
/*.badge-dot {*/
/*  width: 7px; height: 7px;*/
/*  border-radius: 50%;*/
/*  background: var(--primary);*/
/*  animation: pulse 2.2s infinite;*/
/*}*/
/*@keyframes pulse {*/
/*  0%,100%{ opacity:1; transform:scale(1); }*/
/*  50%{ opacity:.45; transform:scale(1.4); }*/
/*}*/
/*.hero h1 {*/
/*  font-size: clamp(38px, 6.5vw, 68px);*/
/*  font-weight: 900;*/
/*  line-height: 1.08;*/
/*  letter-spacing: -.04em;*/
/*  color: var(--text);*/
/*  margin-bottom: 20px;*/
/*  max-width: 740px;*/
/*  margin-inline: auto;*/
/*  position: relative;*/
/*}*/
/*.hero h1 em { font-style: italic; color: var(--primary); }*/
/*.hero-sub {*/
/*  font-size: 16.5px;*/
/*  color: var(--muted);*/
/*  max-width: 480px;*/
/*  margin: 0 auto 40px;*/
/*  line-height: 1.75;*/
/*  position: relative;*/
/*}*/
/*.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }*/




/*Home page*/


/* ===========================
   HERO (SMALLER HEIGHT)
=========================== */


.hero{
  position:relative;
  min-height:75vh; /* ↓ reduced height */
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:60px 20px;
}

/* ===========================
   BACKGROUND SLIDER
=========================== */
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-bg-slide{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  background-size:cover;
background-position: 50% 40%;
  background-repeat:no-repeat;

  opacity:0;
  animation:bgFade 20s infinite;

  /* 🔥 less zoom = less cropping */
  transform:scale(1.02);
}
/* UPDATE .hero-bg-slide — no more background-image needed */
.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: bgFade 20s infinite;
  transform: scale(1.02);
  overflow: hidden; /* keeps img contained */
}


/* img fills the slide exactly like background-cover */
.hero-bg-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}
.hero-bg-slide:nth-child(1)  { animation-delay: 0s; }
.hero-bg-slide:nth-child(2)  { animation-delay: 5s; }
.hero-bg-slide:nth-child(3)  { animation-delay: 10s; }
.hero-bg-slide:nth-child(4)  { animation-delay: 15s; }
.hero-bg-slide:nth-child(5)  { animation-delay: 20s; }
.hero-bg-slide:nth-child(6)  { animation-delay: 25s; }
.hero-bg-slide:nth-child(7)  { animation-delay: 30s; }
.hero-bg-slide:nth-child(8)  { animation-delay: 35s; }
.hero-bg-slide:nth-child(9)  { animation-delay: 40s; }
.hero-bg-slide:nth-child(10) { animation-delay: 45s; }
.hero-bg-slide:nth-child(11) { animation-delay: 50s; }
.hero-bg-slide:nth-child(12) { animation-delay: 55s; }
.hero-bg-slide:nth-child(13) { animation-delay: 60s; }
.hero-bg-slide:nth-child(14) { animation-delay: 65s; }

@keyframes bgFade {
  0%   { opacity: 0; }
  7%   { opacity: 1; } /* fade in */
  28%  { opacity: 1; } /* stay visible */
  35%  { opacity: 0; } /* fade out */
  100% { opacity: 0; } /* stay hidden until next cycle */
}

/* ===========================
   🔥 CLEAN OVERLAY (IMPORTANT FIX)
   - removes black circle
   - improves text readability
=========================== */
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;

  /* smooth professional overlay */
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.60) 100%
  );
}

/* ===========================
   REMOVE BLACK CIRCLE EFFECT
=========================== */
/* ❌ intentionally removed hero::after */

/* ===========================
   CONTENT ABOVE BG
=========================== */
.hero-inner,
.scroll-arr{
  position:relative;
  z-index:2;
}

/* ===========================
   TEXT (CLEAR & READABLE)
=========================== */
.hero-h{
  color:#fff;
  font-size:clamp(28px,5vw,56px);
  font-weight:800;
  line-height:1.1;
  margin-bottom:14px;
}
.hero-h em {
    color:#fff;
    font-size:75px;
}
.hero h1{
    color:#1A7A4A;
}

.hero-h .hl{
  color:#F59E0B;
}

.hero-sub{
  color:rgba(255,255,255,0.85);
  max-width:520px;
  margin:0 auto 26px;
  line-height:1.6;
}
@media (max-width: 425px) {
  .hero-h em {
    font-size: 60px;
  }
}


/* ===========================
   SEARCH (BETTER VISIBILITY)
=========================== */
.search-row{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  max-width:850px;
  margin:0 auto 25px;
}

/* inputs */
.search-box,
.cat-box{
  background:rgba(0,0,0,0.40);
  border:1px solid rgba(255,255,255,0.20);
  border-radius:10px;
  padding:10px;
  min-width:220px;
  color:#fff;
  backdrop-filter: blur(6px); /* 🔥 modern glass effect */
}

/* button */
.search-btn{
  background:#1D9E75;
  color:#fff;
  border:none;
  padding:12px 22px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}

/* ===========================
   PILLS
=========================== */
.pills{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:15px;
}

.pill{
  padding:5px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  color:#fff;
  font-size:12px;
  border:1px solid rgba(255,255,255,0.15);
}

/* ===========================
   SCROLL BUTTON
=========================== */
.scroll-arr{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(29,158,117,0.18);
  border:1px solid rgba(29,158,117,0.35);
  animation:bounce 2s infinite;
}

@keyframes bounce{
  0%,100%{transform:translateX(-50%) translateY(0);}
  50%{transform:translateX(-50%) translateY(6px);}
}


 
/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
  text-align: center;
}
.how-section h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px;color:#000; }
.how-section .subtitle { color: var(--muted); font-size: 15px; margin-bottom: 52px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  max-width: var(--cont);
  margin: 0 auto;
}
@media(max-width: 624px){
    .how-grid {
         grid-template-columns: repeat(1,1fr);
}
}
.how-step { padding: 0 12px; }
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background .2s, transform .2s;
}
.how-step:hover .step-number { background: var(--primary); color: #fff; transform: scale(1.08); }
.how-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 13.5px; color: var(--muted); line-height: 1.75; max-width: 240px; margin: 0 auto; }
 /* ─────────────────────────────────────────
       ABOUT US SECTION
    ───────────────────────────────────────── */
    .about {
     
      padding: 80px 64px;
      border-bottom: 1px solid #e8e8e8;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0F6E56;
      background: #E1F5EE;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 20px;
    }

    .about-headline {
      font-family: 'DM Serif Display', serif;
      font-size: 42px;
      line-height: 1.15;
      color: #1a1a1a;
      margin-bottom: 22px;
    }

    .about-headline em {
      font-style: italic;
      color: #1D9E75;
    }

    .about-body {
      font-size: 15px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
    }

    .about-stats {
      display: flex;
      gap: 32px;
      padding-top: 28px;
      border-top: 1px solid #e8e8e8;
      margin-top: 8px;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 30px;
      color: #1D9E75;
    }

    .stat-label {
      font-size: 11px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Image side */
    .about-image-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 440px;
    }

    .about-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 110, 86, 0.55) 0%, transparent 55%);
    }

    .img-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.93);
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      backdrop-filter: blur(6px);
    }

    .badge-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #1D9E75;
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.85); }
    }

    .badge-text {
      font-size: 13px;
      font-weight: 500;
      color: #1a1a1a;
    }

    /* ─────────────────────────────────────────
       WHY CHOOSE US SECTION
    ───────────────────────────────────────── */
    .why {
      background: #f7f7f5;
      padding: 80px 64px;
    }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .why-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
     color: #0F6E56;
      background: #E1F5EE;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 18px;
    }

    .why-headline {
      font-family: 'DM Serif Display', serif;
      font-size: 38px;
      line-height: 1.2;
      color: #1a1a1a;
      margin-bottom: 14px;
    }

    .why-sub {
      font-size: 15px;
      color: #666;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .why-card {
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 14px;
      padding: 30px 26px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .why-card:hover {
      border-color: #c8c8c8;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .why-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .accent-teal   { background: #1D9E75; }
    .accent-purple { background: #7F77DD; }
    .accent-amber  { background: #EF9F27; }
    .accent-coral  { background: #D85A30; }
    .accent-blue   { background: #378ADD; }
    .accent-pink   { background: #D4537E; }

    .why-icon {
      width: 46px;
      height: 46px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 21px;
      margin-bottom: 18px;
    }

    .icon-teal   { background: #E1F5EE; }
    .icon-purple { background: #EEEDFE; }
    .icon-amber  { background: #FAEEDA; }
    .icon-coral  { background: #FAECE7; }
    .icon-blue   { background: #E6F1FB; }
    .icon-pink   { background: #FBEAF0; }

    .why-card-title {
      font-size: 15px;
      font-weight: 500;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .why-card-body {
      font-size: 13px;
      color: #666;
      line-height: 1.7;
    }

    /* CTA button */
    .why-cta {
      text-align: center;
      margin-top: 44px;
    }

    .why-cta .cta-btn {
      display: inline-block;
      background: #1a7a4a;
      color: #ffffff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 14px 36px;
      border-radius: 99px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .why-cta .cta-btn:hover {
      background: #1D9E75;
    }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 900px) {
      .about {
        grid-template-columns: 1fr;
        padding: 56px 32px;
        gap: 36px;
      }

      .about-image-wrap {
        height: 320px;
      }

      .about-headline {
        font-size: 34px;
      }

      .why {
        padding: 56px 32px;
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-headline {
        font-size: 30px;
      }
    }

    @media (max-width: 580px) {
      .about {
        padding: 48px 20px;
      }

      .about-headline {
        font-size: 28px;
      }

      .about-stats {
        gap: 20px;
      }

      .why {
        padding: 48px 20px;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }
    }
/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -150px; left: -80px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -90px; right: -60px;
  pointer-events: none;
}
.cta-section h2 { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 12px; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 420px; margin: 0 auto 30px; font-size: 15px; line-height: 1.72; position: relative; }

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-row {
  display: flex;
  justify-content: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  max-width: 220px;
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .01em;
}

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
  /*background: var(--surface);*/
  position: static!important;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  position: sticky;
  top: var(--hh);
  z-index: 90;
}
.filter-bar-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hint);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.filter-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.filter-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 5px 15px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .16s;
  font-family: var(--sans);
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Archive selects */
.filter-select-wrap { display: flex; flex-direction: column; gap: 2px; }
.filter-select-wrap label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--hint);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.filter-select-wrap select {
  background-color: #1a7a4a!important;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 32px 8px 11px;
  font-size: 13px;
  font-weight: 500;
  color: #fff!important;
  font-family: var(--sans);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 155px;
  transition: border-color .18s;
}

.filter-select-wrap select:focus { outline: none; border-color: var(--primary); }
.result-count {
  font-size: 12.5px;
  color: var(--hint);
  font-weight: 500;
  margin-left: auto;
  white-space: nowrap;
}

/* ================================================================
   CARDS GRID
   ================================================================ */
   .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .cards-grid { grid-template-columns: 1fr; }
}

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 40px 0 20px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s ease;
    font-family: inherit;
}

.page-btn:hover:not([disabled]):not(.ellipsis) {
    background: #f5f5f5;
    border-color: #aaa;
}

.page-btn.active {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    font-weight: 600;
}

.page-btn[disabled],
.page-btn.ellipsis {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

.page-btn.ellipsis {
    border: none;
    background: transparent;
}

.no-results-block {
    text-align: center;
    padding: 80px 20px;
}
   
.programs-section { padding: 48px 24px; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.section-header h2 { font-size: 24px; font-weight: 900; }
.section-header a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.section-header a:hover { text-decoration: underline; }

/*.cards-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));*/
/*  gap: 20px;*/
/*}*/

/* Host Card */
.host-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.host-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26,122,74,.2);
}
.host-card.hidden { display: none; }

.card-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #e8f5ee 0%, #d1ead9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  flex-shrink: 0;
  position: relative;
}
.card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body-inner { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.card-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card-tag.secondary { background: var(--accent-light); color: #92400e; }
.card-title {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-desc {
   display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  white-space: normal !important;  /* THIS is the key fix */
  word-break: break-word;
  font-size: 13px;
  line-height: 1.68;
  color: var(--muted);
}
.card-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-host-info { display: flex; align-items: center; gap: 8px; }
.card-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.card-host-name { font-size: 12px; font-weight: 600; color: var(--text); }
.card-learn-more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap .15s;
}
.card-learn-more:hover { gap: 7px; color: var(--primary-dark); }

/* ================================================================
   COUNTRY GROUP (archive)
   ================================================================ */
/*.country-group { margin-bottom: 52px; }*/
/*.country-heading {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 14px;*/
/*  margin-bottom: 20px;*/
/*}*/
/*.country-heading h2 { font-size: 19px; font-weight: 900; white-space: nowrap; }*/
/*.country-heading-line { flex: 1; height: 1px; background: var(--border); }*/
/*.country-heading-count { font-size: 12.5px; color: var(--hint); white-space: nowrap; }*/

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px;
}
.breadcrumb-bar .bc-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
}
.breadcrumb-bar a { color: var(--muted); text-decoration: none; transition: color .15s; }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar .bc-sep { opacity: .35; }

/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-header .ph-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.page-header h1 { font-size: 24px; font-weight: 900; margin-bottom: 5px; }
.page-header p { color: var(--muted); font-size: 13.5px; }

/* ================================================================
   PAGINATION
   ================================================================ */
/*.pagination {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: 5px;*/
/*  margin-top: 52px;*/
/*  flex-wrap: wrap;*/
/*}*/
/*.pagination a, .pagination span {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  min-width: 36px;*/
/*  height: 36px;*/
/*  padding: 0 8px;*/
/*  border: 1.5px solid var(--border);*/
/*  border-radius: var(--r-sm);*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*  color: var(--muted);*/
/*  text-decoration: none;*/
/*  transition: all .15s;*/
/*  background: var(--surface);*/
/*  font-family: var(--sans);*/
/*}*/
/*.pagination a:hover { border-color: var(--primary); color: var(--primary); }*/
/*.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }*/
/*.pagination .dots { border-color: transparent; background: none; cursor: default; }*/

/* ================================================================
   NO RESULTS
   ================================================================ */
/*.no-results-block { text-align: center; padding: 72px 24px; }*/
/*.no-results-block .nr-emoji { font-size: 44px; margin-bottom: 14px; }*/
/*.no-results-block h3 { font-size: 20px; margin-bottom: 8px; }*/
/*.no-results-block p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }*/

/*Simgle program Page*/







/*Blog Page */



.cont{max-width:var(--cont);margin:0 auto;padding:0 24px;}
.blog-header{ background:var(--primary-dark); padding:72px 24px 64px; text-align:center; position:relative; overflow:hidden; }
.blog-header::before{ content:''; position:absolute; inset:0; background-image:radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px); background-size:28px 28px; pointer-events:none; }
.blog-header::after{ content:''; position:absolute; bottom:-1px; left:0; right:0; height:48px; background:var(--bg); clip-path:ellipse(55% 100% at 50% 100%); }
.blog-header-inner{position:relative;z-index:2;max-width:640px;margin:0 auto;}
.bh-eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--primary-mid); margin-bottom:18px; }
.bh-eyebrow::before,.bh-eyebrow::after{ content:''; display:block; width:20px; height:1px; background:var(--primary-mid); opacity:.6; }
.blog-header h1{ font-family:var(--serif); font-size:clamp(34px,5vw,54px); font-weight:700; color:#fff; line-height:1.15; margin-bottom:16px; letter-spacing:-.01em; }
.blog-header h1 em{ font-style:italic; color:#6ee9b7; }
.blog-header p{ font-size:16px; color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:28px; }
.header-tabs{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.htab{ padding:6px 16px; border-radius:var(--r-pill); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.75); font-size:13px; font-weight:500; cursor:pointer; transition:all .2s; }
.htab:hover,.htab.active{ background:var(--primary-mid); border-color:var(--primary-mid); color:#fff; }
.section{ padding:64px 0; }
.section-label{ font-size:11px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--primary); margin-bottom:8px; }
.section-title{ font-family:var(--serif); font-size:clamp(26px,3.5vw,36px); font-weight:700; color:#000!important; line-height:1.2; margin-bottom:6px; }
.section-sub{ font-size:15px; color:var(--muted); margin-bottom:36px; }
.featured-grid{ display:grid; gap:24px; }
@media (min-width: 1024px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .featured-grid { grid-template-columns: 1fr; }
}
.feat-card{ background:var(--surface); border-radius:var(--r-xl); overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow-card); transition:transform .25s,box-shadow .25s; display:flex; flex-direction:column; }
.feat-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.feat-img{ width:100%; height:220px; object-fit:cover; background:var(--surface2); display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; }
.feat-img-placeholder{ width:100%; height:220px; display:flex; align-items:center; justify-content:center; position:relative; }
.feat-img-placeholder svg{ opacity:.18; }
.feat-body{ padding:24px 24px 28px; display:flex; flex-direction:column; flex:1; }
.feat-badge{ display:inline-flex; align-items:center; gap:6px; padding:4px 10px; border-radius:var(--r-pill); font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; width:fit-content; }
/* dynamic badge colors – fallback */
.badge-default { background:#e2e3e5; color:#383d41; }
.badge-stories { background:#e6f4ec; color:#145f39; }
.badge-guides { background:#fef3c7; color:#92400e; }
.badge-articles { background:#ede9fe; color:#4c1d95; }
.badge-opportunities { background:#fce7f3; color:#831843; }
/* any other category will use .badge-default – you can add more rules like .badge-{slug} */
.feat-title{ font-family:var(--serif); font-size:20px; font-weight:700;  line-height:1.3; margin-bottom:10px;color:#000; }
.feat-desc{ font-size:14px; color:var(--muted); line-height:1.65; margin-bottom:20px; flex:1; }
.feat-meta{ display:flex; align-items:center; gap:12px; font-size:12px; color:var(--hint); margin-bottom:16px; }
.feat-meta-dot{ width:3px; height:3px; border-radius:50%; background:var(--hint); }
.feat-link{ display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--primary); transition:gap .2s,color .2s; }
.feat-link:hover{ gap:10px; color:var(--primary-dark); }
.cats-section{ background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.cats-section .section{ padding:56px 0; }
@media (max-width: 1399px) {
  .cats-section .section {
    padding: 25px 42px;
  }
}
.cats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.cat-card{ border-radius:var(--r-lg); border:1px solid var(--border); padding:28px 22px; text-align:center; cursor:pointer; background:var(--bg); transition:all .22s; position:relative; overflow:hidden; }
.cat-card::before{ content:''; position:absolute; inset:0; background:var(--primary-light); opacity:0; transition:opacity .22s; }
.cat-card:hover{ border-color:var(--primary-mid); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.cat-card:hover::before{ opacity:1; }
.cat-icon{ width:52px; height:52px; border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; position:relative; z-index:1; transition:transform .22s; background:#f3f4f6; }
.cat-card:hover .cat-icon{ transform:scale(1.08); }
.cat-name{ font-family:var(--serif); font-size:17px; font-weight:700; color:#000!important; margin-bottom:6px; position:relative; z-index:1; }
.cat-desc{ font-size:13px; color:var(--muted); line-height:1.55; position:relative; z-index:1; }
.cat-count{ font-size:11px; font-weight:600; letter-spacing:.06em; color:var(--primary); margin-top:12px; position:relative; z-index:1; }
.cta-section{ background:var(--primary); padding:72px 24px; text-align:center; position:relative; overflow:hidden; }
.cta-section::before{ content:''; position:absolute; inset:0; background-image:radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px); background-size:30px 30px; pointer-events:none; }
.cta-inner{ position:relative; z-index:2; max-width:560px; margin:0 auto; }
.cta-icon{ width:56px; height:56px; border-radius:var(--r-lg); background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.cta-section h2{ font-family:var(--serif); font-size:clamp(26px,4vw,40px); font-weight:700; color:#fff; line-height:1.2; margin-bottom:14px; }
.cta-section h2 em{ font-style:italic; color:#6ee9b7; }
.cta-section p{ font-size:15px; color:rgba(255,255,255,.65); margin-bottom:32px; line-height:1.65; }
.cta-btn{ display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:var(--r-pill); background:#fff; color:var(--primary-dark); font-size:15px; font-weight:700; font-family:var(--sans); cursor:pointer; border:none; transition:all .2s; }
.cta-btn:hover{ background:#f0fdf4; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.15); }
.newsletter-section{ background:var(--bg); padding:72px 24px; }
.newsletter-inner{ max-width:520px; margin:0 auto; text-align:center; }
.nl-badge{ display:inline-flex; align-items:center; gap:6px; padding:5px 14px; border-radius:var(--r-pill); background:var(--primary-light); color:var(--primary-dark); font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; }
.newsletter-inner h2{ font-family:var(--serif); font-size:clamp(24px,3.5vw,34px); font-weight:700; color:#000; line-height:1.2; margin-bottom:10px; }
.newsletter-inner p{ font-size:15px; color:var(--muted); margin-bottom:28px; line-height:1.65; }
.newsletter form,
.wpcf7 form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.wpcf7-submit.nl-btn {
  margin-left: auto;
}
.nl-form {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-pill);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.nl-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,122,74,.12);
}
.nl-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 14px;
    font-family: var(--sans);
    color: var(--text);
    background: transparent;
    min-width: 0;
}
.nl-input::placeholder {
    color: var(--hint);
}
.nl-btn {
    padding: 10px 20px;
    margin: 4px 4px 4px auto; /* pushes button to the right end */
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--sans);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s;
    border-radius: var(--r-pill);
}
.nl-btn:hover {
    background: var(--primary-dark);
}
@media (max-width: 576px) {
    .nl-form {
        flex-direction: column;
        border-radius: var(--r-md);
        overflow: visible;
        border: none;
        box-shadow: none;
        gap: 10px;
    }
    .nl-input {
        width: 100%;
        border: 1px solid var(--border-mid);
        border-radius: var(--r-pill);
        box-shadow: var(--shadow-sm);
    }
    .nl-btn {
        width: 100%;
        margin: 0;
        border-radius: var(--r-pill);
        padding: 14px 20px;
    }
}
.nl-trust{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:16px; font-size:12px; color:var(--hint); flex-wrap:wrap; }
.nl-trust span{ display:flex; align-items:center; gap:5px; }
@media(max-width:768px){ .cats-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .cats-grid{ grid-template-columns:1fr; } .nl-form{ flex-direction:column; border-radius:var(--r-lg); } .nl-btn{ margin:0; border-radius:0 0 var(--r-lg) var(--r-lg); } }

/*single blog page*/
/*:root{*/
/*--primary:#1a7a4a;*/

/*--text:#475569;*/
/*}*/
.blog-wrap{ max-width:1150px; margin:auto; padding:50px 15px; }
.blog-hero{ position:relative; overflow:hidden; border-radius:24px; margin-bottom:35px; }
.blog-hero img{ width:100%; height:520px; object-fit:cover; display:block; }
.blog-overlay{ position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.78),rgba(0,0,0,.15)); }
.blog-hero-content{ position:absolute; left:35px; bottom:35px; color:#fff; z-index:2; max-width:720px; }
.blog-cat{ display:inline-block; padding:7px 15px; border-radius:50px; background:#ffb703; color:#111; font-size:13px; font-weight:700; margin-bottom:14px; }
.blog-hero-content h1{ font-size:42px; line-height:1.2; margin:0 0 10px; }
.blog-meta{ font-size:14px; opacity:.95; }
.blog-grid{ display:grid; grid-template-columns:2.2fr 1fr; gap:35px; }
.blog-main{ background:#fff; padding:35px; border-radius:22px; box-shadow:0 10px 28px rgba(0,0,0,.06); }
.blog-main p{ line-height:1.9; font-size:17px; color:var(--text); }
.blog-main h3 {
    color:#000;
}
.blog-side{ position:sticky; top:25px; height:fit-content; }
.side-box{ background:#fff; padding:22px; border-radius:22px; box-shadow:0 10px 28px rgba(0,0,0,.06); margin-bottom:24px; }
.side-box h3{ margin:0 0 18px; font-size:24px; }
.latest-cards-grid{ display:grid; grid-template-columns:1fr; gap:16px; }
.latest-card{ display:block; text-decoration:none; border:1px solid #edf2f7; border-radius:18px; overflow:hidden; transition:.3s; }
.latest-card:hover{ transform:translateY(-4px); box-shadow:0 10px 24px rgba(0,0,0,.07); }
.latest-img{ height:170px; }
.latest-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.latest-info{ padding:14px; }
.latest-date{ display:block; font-size:11px; font-weight:700; color:var(--primary); margin-bottom:6px; }
.latest-title{ font-size:15px; font-weight:700; line-height:1.5; color:#1f2937; }
.side-box h3 {
    color:#000;
}
.side-box.cta{ text-align:center; background:linear-gradient(135deg,var(--primary),var(--green)); color:#fff; }
.cta h3{ color:#fff; }
.cta a{ display:inline-block; margin-top:10px; padding:11px 20px; background:#fff; color:#111; border-radius:50px; text-decoration:none; font-weight:700; }
.blog-comments-cards-section{ margin-top:55px; padding:40px 0; }
.blog-comments-title{ font-size:32px; font-weight:800; margin-bottom:26px; color:#1f2937; }
.comment-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.comment-card{ border:1px solid #e8eef4; border-radius:16px; padding:22px 20px; display:flex; flex-direction:column; gap:12px; transition:transform .3s, box-shadow .3s, border-color .3s; background:#fff; }
.comment-card:hover{ transform:translateY(-4px); box-shadow:0 12px 28px rgba(11,107,203,.09); border-color:#c7ddf7; }
.comment-card-top{ display:flex; align-items:flex-start; gap:12px; }
.comment-avatar{ width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--green)); color:#fff; font-size:17px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.comment-card-info{ display:flex; flex-direction:column; gap:3px; }
.comment-card-info strong{ font-size:14px; font-weight:700; color:#111827; line-height:1.3; }
.comment-card-info span{ font-size:11px; color:#94a3b8; font-weight:500; }
.comment-text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.read-more-link {
    display: none;
    margin-top: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    width: fit-content;
}
.read-more-link.visible { display: inline-block; }
.view-more-btn-wrap{ text-align:center; margin-top:28px; }
.view-more-btn{ background:linear-gradient(135deg,var(--primary),var(--green)); border:none; padding:10px 32px; border-radius:50px; color:#fff; font-weight:600; font-size:14px; cursor:pointer; transition:opacity .2s, transform .2s; display:inline-flex; align-items:center; gap:8px; }
.view-more-btn:hover{ opacity:.9; transform:translateY(-2px); }
.comments-modal{ display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.75); z-index:9999; justify-content:center; align-items:center; }
.comments-modal.active{ display:flex; }
.modal-container{ background:#fff; width:90%; max-width:850px; max-height:85vh; border-radius:28px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 25px 50px -12px rgba(0,0,0,.25); }
.modal-header{ display:flex; justify-content:space-between; align-items:center; padding:20px 24px; border-bottom:1px solid #eef2f6; }
.modal-header h3{ margin:0; font-size:24px; font-weight:700; color:#1f2937; }
.modal-close{ background:none; border:none; font-size:28px; cursor:pointer; color:#94a3b8; transition:color .2s; line-height:1; padding:0 8px; }
.modal-close:hover{ color:#1f2937; }
.modal-content{ flex:1; overflow-y:auto; padding:24px; }
.modal-comments-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.modal-load-more-wrap{ text-align:center; margin-top:30px; }
.modal-load-more{ background:transparent; border:2px solid var(--primary); color:var(--primary); padding:8px 28px; border-radius:50px; font-weight:600; cursor:pointer; transition:all .2s; }
.modal-load-more:hover{ background:var(--primary); color:#fff; }
.blog-review-form-section{ margin-top:35px; padding:40px; border-radius:24px; background:#fff; box-shadow:0 10px 28px rgba(0,0,0,.06); max-width:680px; margin-left:auto; margin-right:auto; }
.blog-review-form-section .blog-comments-title{ font-size:26px; margin-bottom:20px; }
.review-form-box{ background:#fff; padding:26px; border-radius:18px; border:1px solid #edf2f7; }
.review-form{ display:grid; gap:14px; }
.review-form input, .review-form textarea{ width:100%; padding:14px 16px; border:1px solid #dbe3ea; border-radius:16px; font-size:14px; background:#fff; color:#1f2937; outline:none; box-sizing:border-box; transition:border-color .2s, box-shadow .2s; }
.review-form input:focus, .review-form textarea:focus{ border-color:var(--primary); box-shadow:0 0 0 4px rgba(11,107,203,.08); }
.review-form textarea{ height:140px; resize:none; }
.review-form button{ border:none; padding:13px 26px; border-radius:50px; background:linear-gradient(135deg,var(--primary),var(--green)); color:#fff; font-weight:700; font-size:14px; cursor:pointer; transition:opacity .2s, transform .2s; justify-self:start; }
.review-form button:hover{ opacity:.9; transform:translateY(-2px); }
.review-success{ background:#dcfce7; color:#166534; padding:13px 16px; border-radius:12px; margin-bottom:16px; font-weight:600; font-size:14px; }
.single-comment-popup{ display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.8); z-index:10000; justify-content:center; align-items:center; }
.single-comment-popup.active{ display:flex; }
.popup-container{ background:#fff; width:90%; max-width:550px; border-radius:28px; overflow:hidden; box-shadow:0 25px 50px -12px rgba(0,0,0,0.3); animation:fadeInUp 0.2s ease; display:flex; flex-direction:column; max-height:85vh; }
.popup-header{ display:flex; justify-content:space-between; align-items:center; padding:18px 24px; border-bottom:1px solid #eef2f6; flex-shrink:0; }
.popup-header h4{ margin:0; font-size:20px; font-weight:700; color:#1f2937; }
.popup-close{ background:none; border:none; font-size:28px; cursor:pointer; color:#94a3b8; line-height:1; }
.popup-body{ padding:24px; overflow-y:auto; flex:1; }
.full-comment-author{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.full-comment-avatar{ width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--green)); color:#fff; font-size:20px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.full-comment-meta strong{ font-size:16px; color:#111827; }
.full-comment-meta div{ font-size:12px; color:#94a3b8; margin-top:4px; }
.full-comment-text{ font-size:15px; line-height:1.7; color:var(--text); margin-top:12px; white-space:pre-wrap; }
@keyframes fadeInUp{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:translateY(0); } }
@media(max-width:991px){
    .blog-grid{grid-template-columns:1fr;}
    .blog-side{position:relative;}
    .blog-hero-content h1{font-size:32px;}
    .comment-grid{grid-template-columns:1fr 1fr;}
    .modal-comments-grid{grid-template-columns:1fr 1fr;}
    .latest-cards-grid{grid-template-columns:1fr 1fr; gap:14px;}
}
@media(max-width:600px){
    .comment-grid{grid-template-columns:1fr;}
    .modal-comments-grid{grid-template-columns:1fr;}
    .blog-comments-cards-section{padding:22px 0;}
    .blog-review-form-section{padding:22px 16px;}
    .blog-comments-title{font-size:24px;}
    .latest-cards-grid{grid-template-columns:1fr;}
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #0f0f0f;
  color: rgba(255,255,255,.45);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}
.footer-brand { font-family: var(--serif); font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-links { display: flex; justify-content: center; gap: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ================================================================
   TAGS / PILLS / STATUS
   ================================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tag-green   { background: var(--primary-light); color: var(--primary); }
.tag-amber   { background: var(--pending-bg);    color: var(--pending); }
.tag-red     { background: var(--rejected-bg);   color: var(--rejected); }
.tag-gray    { background: var(--surface2);      color: var(--muted); }
.tag-blue    { background: #dbeafe; color: #1d4ed8; }

/* ================================================================
   ██████████████  DETAIL PAGE  ██████████████
   ================================================================ */
.detail-wrap {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 0 24px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 40px 0 72px;
}

/* Gallery */
.gallery-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  height: 340px;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 10px;
}
.gal-main { position: relative; overflow: hidden; }
.gal-main .gal-placeholder { height: 100%; }
.gal-col { display: flex; flex-direction: column; gap: 8px; }
.gal-thumb { flex: 1; overflow: hidden; }
.gal-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.gal-main .gal-placeholder { background: linear-gradient(135deg,#d1ead9,#e8f5ee); }
.gal-thumb:nth-child(1) .gal-placeholder { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.gal-thumb:nth-child(2) .gal-placeholder { background: linear-gradient(135deg,#dbeafe,#bfdbfe); }

.btn-all-photos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 30px;
  transition: all .15s;
  color: var(--text);
  font-family: var(--sans);
}
.btn-all-photos:hover { background: var(--bg); border-color: var(--primary); color: var(--primary); }

/* Detail header */
.detail-header { margin-bottom: 10px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-title {
  font-size: clamp(24px,4vw,34px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--text);
}
.detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.detail-meta .meta-dot { opacity: .3; }
.detail-meta .meta-verified { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* Detail sections */
.detail-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.detail-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.ds-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -.02em;
}
.detail-desc p { font-size: 15px; color: var(--text); line-height: 1.82; margin-bottom: 14px; }
.detail-desc p:last-child { margin-bottom: 0; }

/* Info tiles */
.info-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.info-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .15s;
}
.info-tile:hover { border-color: var(--primary-mid); }
.info-tile-icon { font-size: 22px; flex-shrink: 0; }
.info-tile label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hint);
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}
.info-tile span { font-size: 13px; font-weight: 600; color: var(--text); }

/* Detail checklist */
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-list li {
  font-size: 14.5px;
  color: var(--text);
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}
.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

/* Photo strip */
.gallery-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.strip-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.strip-thumb:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }

/* Detail sidebar */
.detail-sidebar { position: sticky; top: calc(var(--hh) + 20px); }

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
}
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 18px; color: var(--text); }

.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; }
.contact-ico {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info label { font-size: 10.5px; color: var(--hint); display: block; margin-bottom: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-info span, .contact-info a { font-size: 13px; color: var(--text); word-break: break-all; text-decoration: none; }
.contact-info a { color: var(--primary); }
.contact-info a:hover { text-decoration: underline; }

.sidebar-actions { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); padding-top: 16px; }

.map-mock {
  background: #eaf3de;
  border: 1px solid #c0dd97;
  border-radius: var(--r-lg);
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.map-pin { font-size: 26px; }
.map-label { font-size: 12px; color: #3b6d11; font-weight: 600; }

.quick-facts { display: flex; flex-direction: column; gap: 0; }
.quick-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.quick-fact:last-child { border-bottom: none; padding-bottom: 0; }
.quick-fact .qf-label { color: var(--muted); }
.quick-fact .qf-val { font-weight: 600; color: var(--text); }

/* Related */
.related-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
}
.related-section .rs-inner { max-width: var(--cont); margin: 0 auto; }
.related-section .section-header { margin-bottom: 28px; }

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.lb-panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  max-width: 880px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 80px);
  overflow: auto;
  animation: lbIn .2s ease;
}
@keyframes lbIn { from{ opacity:0; transform:scale(.96) } to{ opacity:1; transform:scale(1) } }
.lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.lb-header h3 { font-size: 14.5px; font-weight: 600; color: var(--text); }
.lb-close {
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}
.lb-close:hover { color: var(--text); }
.lb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 18px; }
.lb-item { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; }
.lb-main { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ================================================================
   ██████████████  BECOME A HOST FORM  ██████████████
   ================================================================ */
/*.form-page { padding: 40px 0 80px; }*/
/*.form-outer {*/
/*  max-width: var(--cont);*/
/*  margin: 0 auto;*/
/*  padding: 0 24px;*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 300px;*/
/*  gap: 48px;*/
/*  align-items: start;*/
/*}*/

/* Form header */
/*.form-header { margin-bottom: 28px; }*/
/*.form-title {*/
/*  font-family: var(--serif);*/
/*  font-size: clamp(28px,4vw,40px);*/
/*  font-weight: 900;*/
/*  line-height: 1.1;*/
/*  margin-bottom: 12px;*/
/*  color: var(--text);*/
/*  letter-spacing: -.04em;*/
/*}*/
/*.form-title em { color: var(--primary); }*/
/*.form-subtitle { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 500px; }*/

 /*Progress steps */
/*.form-progress { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }*/
/*.fp-step { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--hint); }*/
/*.fp-step.active { color: var(--primary); }*/
/*.fp-step.done { color: var(--primary-dark); }*/
/*.fp-dot {*/
/*  width: 28px; height: 28px;*/
/*  border-radius: 50%;*/
/*  border: 2px solid currentColor;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 11.5px;*/
/*  font-weight: 700;*/
/*  flex-shrink: 0;*/
/*  transition: all .2s;*/
/*}*/
/*.fp-step.active .fp-dot { background: var(--primary); border-color: var(--primary); color: #fff; }*/
/*.fp-step.done  .fp-dot { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }*/
/*.fp-step .fp-label { white-space: nowrap; }*/
/*.fp-line { flex: 1; height: 2px; background: var(--border-mid); min-width: 20px; transition: background .3s; }*/
/*.fp-line.done { background: var(--primary); }*/

/* Notice banner */
/*.form-notice {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: 10px;*/
/*  background: var(--primary-light);*/
/*  border: 1px solid rgba(26,122,74,.2);*/
/*  border-radius: var(--r-md);*/
/*  padding: 13px 15px;*/
/*  margin-bottom: 22px;*/
/*  font-size: 13px;*/
/*  color: var(--primary-dark);*/
/*  line-height: 1.6;*/
/*}*/
/*.form-notice.success { background: #f0fdf4; border-color: #86efac; color: #15803d; }*/
/*.notice-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }*/

/* Form step */
/*.form-step.hidden { display: none; }*/

/* Form card */
/*.form-card {*/
/*  background: var(--surface);*/
/*  border: 1px solid var(--border);*/
/*  border-radius: var(--r-xl);*/
/*  padding: 26px 28px;*/
/*  margin-bottom: 16px;*/
/*  box-shadow: var(--shadow-card);*/
/*}*/
/*.form-card-head {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 14px;*/
/*  margin-bottom: 22px;*/
/*  padding-bottom: 16px;*/
/*  border-bottom: 1px solid var(--border);*/
/*}*/
/*.form-card-num { font-family: var(--serif); font-size: 30px; color: var(--primary); opacity: .5; line-height: 1; flex-shrink: 0; }*/
/*.form-card-head h2 { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -.02em; }*/

/* Field groups */
/*.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }*/
/*.field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }*/
/*.field-group:last-child { margin-bottom: 0; }*/
/*.field-group label { font-size: 13px; font-weight: 600; color: var(--text); }*/
/*.field-group .req { color: var(--primary); margin-left: 2px; }*/

/*.field-group input,*/
/*.field-group select,*/
/*.field-group textarea {*/
/*  width: 100%;*/
/*  padding: 10px 13px;*/
/*  border: 1.5px solid var(--border-mid);*/
/*  border-radius: var(--r-md);*/
/*  font-size: 14px;*/
/*  color: var(--text);*/
/*  background: var(--bg);*/
/*  font-family: var(--sans);*/
/*  transition: border-color .15s, box-shadow .15s;*/
/*}*/
/*.field-group input:focus,*/
/*.field-group select:focus,*/
/*.field-group textarea:focus {*/
/*  outline: none;*/
/*  border-color: var(--primary);*/
/*  box-shadow: 0 0 0 3px rgba(26,122,74,.1);*/
/*  background: var(--surface);*/
/*}*/
/*.field-group input::placeholder,*/
/*.field-group textarea::placeholder { color: var(--hint); }*/
/*.field-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }*/
/*.field-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }*/
/*.field-hint { font-size: 11.5px; color: var(--hint); line-height: 1.55; }*/

/* Upload zone */
/*.upload-zone {*/
/*  border: 2px dashed var(--border-mid);*/
/*  border-radius: var(--r-xl);*/
/*  cursor: pointer;*/
/*  transition: all .18s;*/
/*  overflow: hidden;*/
/*}*/
/*.upload-zone:hover, .upload-zone.drag-over { border-color: var(--primary); background: var(--primary-light); }*/
/*.upload-zone-inner { padding: 36px 24px; text-align: center; }*/
/*.upload-icon-wrap {*/
/*  width: 52px; height: 52px;*/
/*  border-radius: 50%;*/
/*  background: var(--primary-light);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin: 0 auto 14px;*/
/*}*/
/*.upload-text { font-size: 14px; color: var(--muted); margin: 0 0 4px; }*/
/*.upload-text span { color: var(--primary); font-weight: 600; }*/
/*.upload-hint { font-size: 12px; color: var(--hint); }*/
/*.upload-previews { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 0 14px 14px; }*/
/*.preview-thumb { position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; background: var(--bg); }*/
/*.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }*/
/*.preview-remove {*/
/*  position: absolute; top: 4px; right: 4px;*/
/*  width: 22px; height: 22px;*/
/*  border-radius: 50%;*/
/*  background: rgba(0,0,0,.5);*/
/*  border: none; color: #fff;*/
/*  font-size: 12px;*/
/*  cursor: pointer;*/
/*  display: flex; align-items: center; justify-content: center;*/
/*}*/

/* Step nav */
/*.step-actions {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  padding: 10px 0 4px;*/
/*}*/

/* Form sidebar */
/*.form-info-col {*/
/*  position: sticky;*/
/*  top: calc(var(--hh) + 24px);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 14px;*/
/*}*/
/*.form-info-card {*/
/*  background: var(--surface);*/
/*  border: 1px solid var(--border);*/
/*  border-radius: var(--r-xl);*/
/*  padding: 22px;*/
/*  box-shadow: var(--shadow-card);*/
/*}*/
/*.form-info-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text); }*/

/* Timeline */
/*.timeline { display: flex; flex-direction: column; gap: 0; }*/
.tl-item { display: flex; gap: 14px; padding-bottom: 20px; position: relative; }
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px; top: 28px; bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--muted);
  flex-shrink: 0; background: var(--surface);
}
.tl-dot.done { background: var(--primary); border-color: var(--primary); color: #fff; }
.tl-content strong { font-size: 13px; font-weight: 600; display: block; margin-bottom: 3px; color: var(--text); }
.tl-content p { font-size: 12px; color: var(--muted); line-height: 1.55; }

 /*Trust items */
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 6px 0; }
.trust-item .ti-icon { font-size: 15px; }

/* ================================================================
   ██████████████  ADMIN DASHBOARD  ██████████████
   ================================================================ */
/*body.admin-body { background: #f5f4f1; }*/

/*.admin-layout {*/
/*  display: grid;*/
/*  grid-template-columns: 230px 1fr;*/
/*  min-height: 100vh;*/
/*}*/

/* Sidebar */
/*.admin-sidebar {*/
/*  background: var(--surface);*/
/*  border-right: 1px solid var(--border);*/
/*  position: sticky;*/
/*  top: 0;*/
/*  height: 100vh;*/
/*  overflow-y: auto;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/
/*.admin-logo {*/
/*  padding: 16px 18px;*/
/*  border-bottom: 1px solid var(--border);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  flex-shrink: 0;*/
/*}*/
/*.admin-badge-label {*/
/*  font-size: 9.5px;*/
/*  font-weight: 700;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: .1em;*/
/*  background: var(--primary-light);*/
/*  color: var(--primary-dark);*/
/*  padding: 3px 8px;*/
/*  border-radius: var(--r-pill);*/
/*}*/
/*.admin-nav { padding: 10px 0; flex: 1; display: flex; flex-direction: column; overflow-y: auto; }*/
/*.admin-nav-section { padding: 6px 10px; border-bottom: 1px solid var(--border); }*/
/*.admin-nav-section:last-child { border-bottom: none; }*/
/*.admin-nav-bottom { margin-top: auto; }*/
/*.admin-nav-label {*/
/*  font-size: 9.5px;*/
/*  font-weight: 700;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: .1em;*/
/*  color: var(--hint);*/
/*  padding: 8px 8px 4px;*/
/*  display: block;*/
/*}*/
/*.admin-nav-item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 9px;*/
/*  padding: 9px 10px;*/
/*  border-radius: var(--r-md);*/
/*  font-size: 13px;*/
/*  color: var(--muted);*/
/*  cursor: pointer;*/
/*  text-decoration: none;*/
/*  transition: all .14s;*/
/*  margin-bottom: 2px;*/
/*}*/
/*.admin-nav-item:hover { background: var(--bg); color: var(--text); }*/
/*.admin-nav-item.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }*/
/*.ani-icon { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }*/
/*.ani-badge {*/
/*  margin-left: auto;*/
/*  font-size: 10px;*/
/*  font-weight: 700;*/
/*  padding: 2px 7px;*/
/*  border-radius: var(--r-pill);*/
/*}*/
/*.ani-badge.amber { background: var(--pending-bg);  color: var(--pending); }*/
/*.ani-badge.green { background: var(--primary-light); color: var(--primary-dark); }*/
/*.ani-badge.red   { background: var(--rejected-bg);  color: var(--rejected); }*/
/*.ani-badge.gray  { background: var(--surface2);     color: var(--muted); }*/

/* Main area */
/*.admin-main { padding: 30px; overflow-x: hidden; }*/
/*.admin-topbar {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  justify-content: space-between;*/
/*  margin-bottom: 26px;*/
/*  gap: 16px;*/
/*}*/
/*.admin-page-title { font-size: 20px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 4px; color: var(--text); }*/
/*.admin-page-sub { font-size: 13px; color: var(--muted); }*/
/*.admin-topbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }*/
/*.admin-user { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }*/
/*.admin-avatar {*/
/*  width: 32px; height: 32px;*/
/*  border-radius: 50%;*/
/*  background: var(--primary-light);*/
/*  color: var(--primary-dark);*/
/*  font-size: 12px;*/
/*  font-weight: 700;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/* Metrics */
/*.admin-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 26px; }*/
/*.metric-card {*/
/*  border-radius: var(--r-lg);*/
/*  padding: 18px;*/
/*  border: 1px solid var(--border);*/
/*  background: var(--surface);*/
/*  box-shadow: var(--shadow-card);*/
/*  transition: box-shadow .18s;*/
/*}*/
/*.metric-card:hover { box-shadow: var(--shadow-md); }*/
/*.metric-card.amber  { background: #fffbf0; border-color: #fac775; }*/
/*.metric-card.teal   { background: #f0fdf8; border-color: var(--primary-mid); }*/
/*.metric-card.red    { background: #fff5f5; border-color: #f09595; }*/
/*.metric-card.neutral{ background: var(--surface); }*/
/*.metric-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }*/
/*.metric-icon { font-size: 18px; }*/
/*.metric-change { font-size: 11px; color: var(--muted); }*/
/*.metric-change.up { color: var(--primary-dark); }*/
/*.metric-val { font-size: 30px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; color: var(--text); font-family: var(--serif); }*/
/*.metric-lbl { font-size: 12px; color: var(--muted); font-weight: 500; }*/
/*.metric-card.amber .metric-val { color: var(--pending); }*/
/*.metric-card.teal  .metric-val { color: var(--primary-dark); }*/
/*.metric-card.red   .metric-val { color: var(--rejected); }*/

/* Tabs */
/*.admin-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 18px; }*/
/*.admin-tab {*/
/*  padding: 10px 18px;*/
/*  font-size: 13.5px;*/
/*  color: var(--muted);*/
/*  cursor: pointer;*/
/*  border-bottom: 2.5px solid transparent;*/
/*  margin-bottom: -2px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 7px;*/
/*  font-family: var(--sans);*/
/*  background: none;*/
/*  border-left: none; border-right: none; border-top: none;*/
/*  transition: all .14s;*/
/*  font-weight: 500;*/
/*}*/
/*.admin-tab:hover { color: var(--text); }*/
/*.admin-tab.active { color: var(--text); border-bottom-color: var(--primary); font-weight: 700; }*/
/*.tab-count {*/
/*  font-size: 10.5px;*/
/*  padding: 2px 7px;*/
/*  border-radius: var(--r-pill);*/
/*}*/
/*.tab-count.amber { background: var(--pending-bg); color: var(--pending); }*/
/*.tab-count.green { background: var(--primary-light); color: var(--primary-dark); }*/
/*.tab-count.red   { background: var(--rejected-bg); color: var(--rejected); }*/
/*.admin-tab-content.hidden { display: none; }*/

/* Listing rows */
/*.listing-row {*/
/*  background: var(--surface);*/
/*  border: 1px solid var(--border);*/
/*  border-radius: var(--r-xl);*/
/*  padding: 16px 18px;*/
/*  margin-bottom: 10px;*/
/*  display: grid;*/
/*  grid-template-columns: 52px 1fr auto;*/
/*  gap: 14px;*/
/*  align-items: start;*/
/*  transition: border-color .15s, box-shadow .15s;*/
/*  box-shadow: var(--shadow-card);*/
/*}*/
/*.listing-row:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); }*/
/*.listing-row.pending-row { border-left: 3px solid var(--accent); }*/
/*.listing-row.rejected-row { opacity: .7; border-left: 3px solid var(--rejected); }*/
/*.listing-row.approved-row { border-left: 3px solid var(--primary-mid); }*/

/*.listing-thumb {*/
/*  width: 52px; height: 52px;*/
/*  border-radius: var(--r-lg);*/
/*  display: flex; align-items: center; justify-content: center;*/
/*  font-size: 22px; flex-shrink: 0;*/
/*}*/
/*.listing-name { font-size: 14.5px; font-weight: 700; margin-bottom: 5px; color: var(--text); letter-spacing: -.02em; }*/
/*.listing-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }*/
/*.listing-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }*/
/*.listing-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }*/
/*.listing-time { font-size: 11.5px; color: var(--hint); }*/

/*.listing-actions { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; min-width: 110px; flex-shrink: 0; }*/

/* All-listings filter */
/*.all-filters-bar { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }*/
/*.search-input {*/
/*  flex: 1; min-width: 160px;*/
/*  padding: 8px 13px;*/
/*  border: 1.5px solid var(--border-mid);*/
/*  border-radius: var(--r-md);*/
/*  font-size: 13px;*/
/*  color: var(--text);*/
/*  background: var(--surface);*/
/*  font-family: var(--sans);*/
/*  transition: border-color .15s;*/
/*}*/
/*.search-input:focus { outline: none; border-color: var(--primary); }*/
/*.all-filters-bar select {*/
/*  padding: 8px 12px;*/
/*  border: 1.5px solid var(--border-mid);*/
/*  border-radius: var(--r-md);*/
/*  font-size: 13px;*/
/*  color: var(--text);*/
/*  background: var(--surface);*/
/*  font-family: var(--sans);*/
/*}*/

/* Approved table */
/*.approved-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-card); }*/
/*.approved-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }*/
/*.approved-table th {*/
/*  text-align: left;*/
/*  padding: 11px 16px;*/
/*  font-size: 10.5px;*/
/*  font-weight: 700;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: .07em;*/
/*  color: var(--hint);*/
/*  background: var(--bg);*/
/*  border-bottom: 1px solid var(--border);*/
/*}*/
/*.approved-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }*/
/*.approved-table tr:last-child td { border-bottom: none; }*/
/*.approved-table tr:hover td { background: #fafaf8; }*/
/*.table-link { color: var(--primary); font-weight: 500; text-decoration: none; }*/
/*.table-link:hover { text-decoration: underline; }*/
/*.tbl-actions { display: flex; gap: 5px; align-items: center; }*/

/* Toast */
/*.admin-toast {*/
/*  position: fixed;*/
/*  bottom: 24px; right: 24px;*/
/*  background: var(--text);*/
/*  color: #fff;*/
/*  padding: 12px 20px;*/
/*  border-radius: var(--r-lg);*/
/*  font-size: 13.5px;*/
/*  font-weight: 500;*/
/*  opacity: 0;*/
/*  transform: translateY(10px);*/
/*  transition: all .25s;*/
/*  pointer-events: none;*/
/*  z-index: 999;*/
/*  max-width: 280px;*/
/*  box-shadow: var(--shadow-md);*/
/*}*/
/*.admin-toast.show { opacity: 1; transform: translateY(0); }*/
/*.admin-toast.toast-success { background: var(--primary-dark); }*/
/*.admin-toast.toast-warn    { background: #7c3b00; }*/
/*.admin-toast.toast-error   { background: var(--rejected); }*/

/* ================================================================
   RESPONSIVE
   ================================================================ */
/*@media (max-width: 1024px) {*/
/*  .admin-metrics { grid-template-columns: repeat(2,1fr); }*/
/*  .detail-layout { grid-template-columns: 1fr 290px; gap: 32px; }*/
/*}*/
/*@media (max-width: 900px) {*/
/*  .how-grid { grid-template-columns: repeat(2,1fr); }*/
/*  .detail-layout { grid-template-columns: 1fr; gap: 28px; }*/
/*  .detail-sidebar { position: static; }*/
/*  .gallery-hero { height: 240px; }*/
/*  .info-tiles { grid-template-columns: repeat(2,1fr); }*/
/*  .gallery-strip { grid-template-columns: repeat(4,1fr); }*/
/*  .form-outer { grid-template-columns: 1fr; gap: 24px; }*/
/*  .form-info-col { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }*/
/*  .field-row { grid-template-columns: 1fr; }*/
/*  .listing-row { grid-template-columns: 40px 1fr; }*/
/*  .listing-actions { grid-column: 1/-1; flex-direction: row; justify-content: flex-start; min-width: unset; }*/
/*  .lb-grid { grid-template-columns: repeat(2,1fr); }*/
/*  .lb-main { grid-column: span 1; grid-row: span 1; }*/
/*  .cards-grid { grid-template-columns: repeat(2,1fr); }*/
/*}*/
/*@media (max-width: 768px) {*/
/*  .nav-links, .nav-cta { display: none; }*/
/*  .nav-hamburger { display: block; }*/
/*  .stats-row { flex-wrap: wrap; }*/
/*  .stat-item { min-width: 140px; }*/
/*  .how-grid { grid-template-columns: 1fr; gap: 36px; }*/
/*  .filter-bar { position: static; }*/
/*  .filter-bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }*/
/*  .result-count { margin-left: 0; }*/
/*  .page-header .ph-inner { flex-direction: column; align-items: flex-start; }*/
/*  .admin-layout { grid-template-columns: 1fr; }*/
/*  .admin-sidebar { display: none; }*/
/*  .admin-main { padding: 20px 16px; }*/
/*  .admin-metrics { grid-template-columns: repeat(2,1fr); }*/
/*}*/
/*@media (max-width: 600px) {*/
/*  .cards-grid { grid-template-columns: 1fr; }*/
/*  .gallery-hero { grid-template-columns: 1fr; height: auto; }*/
/*  .gal-main { height: 220px; }*/
/*  .gal-col { flex-direction: row; height: 110px; }*/
/*  .info-tiles { grid-template-columns: 1fr; }*/
/*  .gallery-strip { grid-template-columns: repeat(3,1fr); }*/
/*  .upload-previews { grid-template-columns: repeat(3,1fr); }*/
/*  .step-actions { flex-direction: column; gap: 8px; }*/
/*  .step-actions > * { width: 100%; justify-content: center; }*/
/*  .form-info-col { grid-template-columns: 1fr; }*/
/*  .section-header { flex-direction: column; gap: 6px; }*/
/*  .admin-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }*/
/*  .admin-tab { white-space: nowrap; font-size: 12.5px; padding: 8px 12px; }*/
/*}*/
