/* ============================================================
   SUTANUTIR SAKHYA — Main Stylesheet
   Warm, trust-building, donation-optimised NGO theme.
   ============================================================ */

/* ---------- Design Tokens -------------------------------- */
:root {
  --ss-primary:        #0d6e6e;   /* deep teal */
  --ss-primary-dark:   #0a5656;
  --ss-primary-light:  #e6f4f4;
  --ss-accent:         #e8833a;   /* warm amber - donation CTA */
  --ss-accent-dark:    #c86b26;
  --ss-accent-light:   #fdf1e6;
  --ss-earth:          #f5f0e6;   /* soft cream background */
  --ss-green:          #3a8a5c;
  --ss-text:           #1f2937;
  --ss-muted:          #5e6b7a;
  --ss-border:         #e4e7ec;
  --ss-white:          #ffffff;
  --ss-dark:           #162126;
  --ss-light-bg:       #fafaf7;

  --shadow-sm: 0 1px 2px rgba(16,24,40,.05);
  --shadow:    0 4px 16px rgba(16,24,40,.08);
  --shadow-lg: 0 20px 48px rgba(16,24,40,.12);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
}

/* ---------- Reset & Base --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ss-text);
  background: var(--ss-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ss-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ss-primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--ss-dark);
  line-height: 1.25;
  margin: 0 0 .65em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1rem; }

/* Utility ------------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ss-primary);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--ss-muted); font-size: 1.05rem; }
.text-center { text-align: center; }

/* Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn i { font-size: 1rem; }
.btn-primary {
  background: var(--ss-accent);
  color: var(--ss-white);
  box-shadow: 0 6px 18px rgba(232,131,58,.3);
}
.btn-primary:hover {
  background: var(--ss-accent-dark);
  color: var(--ss-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,131,58,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ss-white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--ss-white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ss-primary);
  border-color: var(--ss-primary);
}
.btn-outline:hover { background: var(--ss-primary); color: var(--ss-white); transform: translateY(-2px); }
.btn-dark { background: var(--ss-primary); color: var(--ss-white); }
.btn-dark:hover { background: var(--ss-primary-dark); color: var(--ss-white); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.02rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ---------- Header / Navigation -------------------------- */
.site-topbar {
  background: var(--ss-primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 9px 0;
}
.site-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-topbar a { color: rgba(255,255,255,.85); }
.site-topbar a:hover { color: var(--ss-white); }
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 14px; }

.site-header {
  background: var(--ss-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ss-dark);
  text-decoration: none;
}
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-green));
  display: flex; align-items: center; justify-content: center;
  color: var(--ss-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-text .brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ss-dark);
  line-height: 1.1;
}
.brand-text .brand-tag {
  display: block;
  font-size: .7rem;
  color: var(--ss-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 12px 16px;
  color: var(--ss-text);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--ss-primary); background: var(--ss-primary-light); }
.nav-menu .has-sub > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 8px;
  font-size: .75rem;
  opacity: .6;
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--ss-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
  z-index: 50;
}
.has-sub:hover > .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu li a {
  display: block;
  padding: 10px 14px;
  color: var(--ss-text);
  font-size: .9rem;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}
.nav-submenu li a:hover { background: var(--ss-primary-light); color: var(--ss-primary); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  background: var(--ss-primary-light);
  color: var(--ss-primary);
  border: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ---------- Hero ---------------------------------------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  background: linear-gradient(135deg, #0d6e6e 0%, #0a5656 60%, #083f3f 100%);
  color: var(--ss-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(232,131,58,.18), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(58,138,92,.25), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
.hero-content .eyebrow { color: #f5d9b5; }
.hero h1 {
  color: var(--ss-white);
  font-size: clamp(2.3rem, 3.5vw + 1rem, 4rem);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #f5d9b5, var(--ss-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust-item { display: flex; gap: 10px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.85); }
.hero-trust-item i { color: #f5d9b5; font-size: 1.1rem; }

/* Hero visual card */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--ss-white);
  color: var(--ss-text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card h3 { color: var(--ss-dark); margin-bottom: 6px; }
.hero-card > p { color: var(--ss-muted); font-size: .92rem; margin-bottom: 20px; }
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.amount-btn {
  padding: 12px 8px;
  border: 2px solid var(--ss-border);
  background: var(--ss-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--ss-text);
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-body);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--ss-accent);
  background: var(--ss-accent-light);
  color: var(--ss-accent-dark);
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ss-primary-light);
  color: var(--ss-primary-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 14px;
}

/* ---------- Impact Stats -------------------------------- */
.stats {
  background: var(--ss-earth);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(13,110,110,.12);
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  font-weight: 700;
  color: var(--ss-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--ss-muted);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .5px;
}

/* ---------- About Section ------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d8e8e8, #f5f0e6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main-placeholder {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--ss-primary);
  opacity: .6;
}
.about-quote {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ss-white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border-left: 4px solid var(--ss-accent);
}
.about-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: .95rem;
  color: var(--ss-dark);
  margin: 0;
}
.about-quote small { color: var(--ss-muted); font-size: .8rem; }
.about-content p { color: var(--ss-muted); line-height: 1.85; }
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.mv-box {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ss-primary-light);
  border-top: 3px solid var(--ss-primary);
}
.mv-box h4 {
  display: flex; align-items: center; gap: 10px;
  color: var(--ss-primary);
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.mv-box p { font-size: .9rem; color: var(--ss-text); margin: 0; line-height: 1.6; }

/* ---------- Programs ----------------------------------- */
.bg-earth { background: var(--ss-earth); }
.bg-light { background: var(--ss-light-bg); }
.bg-dark { background: var(--ss-dark); color: var(--ss-white); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--ss-white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ss-border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ss-primary-light);
}
.program-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ss-primary-light), #cfe9e9);
  color: var(--ss-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
}
.program-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.program-card p { color: var(--ss-muted); font-size: .92rem; flex-grow: 1; }
.program-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ss-primary);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 16px;
}
.program-link:hover { gap: 10px; }

/* ---------- Donate Section (big CTA strip) --------------- */
.donate-cta {
  position: relative;
  background: linear-gradient(135deg, var(--ss-primary) 0%, var(--ss-primary-dark) 100%);
  color: var(--ss-white);
  padding: 72px 0;
  overflow: hidden;
}
.donate-cta::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,131,58,.2), transparent 70%);
  pointer-events: none;
}
.donate-cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.donate-cta h2 { color: var(--ss-white); margin-bottom: 14px; }
.donate-cta p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.05rem; }
.donate-amounts-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.da-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.da-item i { color: var(--ss-accent); font-size: 1.2rem; }
.da-item-text strong { display: block; font-size: 1.05rem; color: var(--ss-white); }
.da-item-text span { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ---------- Volunteer ----------------------------------- */
.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.volunteer-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--ss-primary-light);
  color: var(--ss-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.benefit-item h4 { font-size: 1rem; margin: 0 0 4px; }
.benefit-item p { font-size: .85rem; color: var(--ss-muted); margin: 0; }

/* ---------- Forms --------------------------------------- */
.form-card {
  background: var(--ss-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ss-border);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ss-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ss-border);
  border-radius: var(--radius-sm);
  background: var(--ss-white);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ss-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--ss-primary);
  box-shadow: 0 0 0 4px rgba(13,110,110,.12);
}
textarea.form-control { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: .9rem;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-msg.success { background: #e8f6ee; color: #1c6b38; border-left: 4px solid var(--ss-green); }
.form-msg.error   { background: #fdecec; color: #a03030; border-left: 4px solid #d54848; }

/* ---------- Testimonials ------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--ss-white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ss-border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--ss-accent-light);
  line-height: 1;
}
.testimonial-card p {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--ss-text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex; gap: 14px; align-items: center;
  border-top: 1px solid var(--ss-border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-green));
  color: var(--ss-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name strong { display: block; color: var(--ss-dark); font-weight: 600; }
.testimonial-name span { font-size: .82rem; color: var(--ss-muted); }

/* ---------- Gallery ------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ss-earth);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,110,110,.7), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex; align-items: flex-end; justify-content: center;
  color: white; padding: 14px;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-caption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  color: var(--ss-white);
  font-weight: 500;
  font-size: .85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--ss-border);
  background: var(--ss-white);
  border-radius: 999px;
  color: var(--ss-text);
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--ss-primary);
  background: var(--ss-primary);
  color: var(--ss-white);
}

/* ---------- Partners ----------------------------------- */
.partners-strip {
  padding: 48px 0;
  background: var(--ss-light-bg);
  border-top: 1px solid var(--ss-border);
  border-bottom: 1px solid var(--ss-border);
}
.partners-label {
  text-align: center;
  color: var(--ss-muted);
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  align-items: center;
}
.partner-item {
  text-align: center;
  color: var(--ss-muted);
  font-weight: 500;
  font-size: .85rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: color .2s ease, background .2s ease;
}
.partner-item:hover { color: var(--ss-primary); background: var(--ss-white); }

/* ---------- Page Banner -------------------------------- */
.page-banner {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--ss-primary) 0%, var(--ss-primary-dark) 100%);
  color: var(--ss-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232,131,58,.15), transparent 50%);
}
.page-banner h1 { color: var(--ss-white); position: relative; }
.breadcrumb {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--ss-white); }
.breadcrumb i { font-size: .7rem; opacity: .7; }

/* ---------- Donate Page -------------------------------- */
.donate-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.donate-info { }
.donate-amount-card {
  background: var(--ss-white);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
  border: 1.5px solid var(--ss-border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .2s ease;
}
.donate-amount-card:hover {
  border-color: var(--ss-primary);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}
.donate-amount-card .amount-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--ss-primary-light);
  color: var(--ss-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.donate-amount-card .amount-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ss-accent-dark);
  font-weight: 700;
  margin: 0 0 4px;
}
.donate-amount-card p { margin: 0; color: var(--ss-muted); font-size: .9rem; }

.bank-card {
  background: var(--ss-primary-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
  border-left: 4px solid var(--ss-primary);
}
.bank-card h4 {
  display: flex; align-items: center; gap: 10px;
  color: var(--ss-primary-dark);
  margin-bottom: 14px;
}
.bank-table {
  width: 100%;
  border-collapse: collapse;
}
.bank-table td {
  padding: 8px 0;
  font-size: .9rem;
  vertical-align: top;
}
.bank-table td:first-child { color: var(--ss-muted); width: 160px; }
.bank-table td:last-child { color: var(--ss-dark); font-weight: 600; }

/* ---------- Content Pages ------------------------------- */
.content-page { padding: 64px 0; }
.content-page p { color: var(--ss-muted); line-height: 1.85; }
.content-page h2, .content-page h3 { color: var(--ss-dark); margin-top: 2em; }
.content-page ul, .content-page ol { padding-left: 20px; margin: 1em 0; color: var(--ss-muted); }
.content-page ul li, .content-page ol li { padding: 4px 0; list-style: disc; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--ss-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--ss-border);
  transition: all .25s ease;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-photo {
  width: 110px; height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-green));
  color: var(--ss-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin: 0 0 4px; font-size: 1.15rem; }
.team-card .team-role { color: var(--ss-primary); font-size: .85rem; font-weight: 600; margin-bottom: 12px; display: block; }
.team-card p { color: var(--ss-muted); font-size: .88rem; line-height: 1.6; margin: 0; }

.publications-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pub-card {
  background: var(--ss-white);
  border: 1px solid var(--ss-border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .25s ease;
}
.pub-card:hover { box-shadow: var(--shadow); border-color: var(--ss-primary-light); }
.pub-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--ss-accent-light);
  color: var(--ss-accent-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.pub-card h4 { margin: 0 0 6px; font-size: 1.05rem; }
.pub-card p { margin: 0 0 10px; color: var(--ss-muted); font-size: .88rem; }
.pub-card .pub-year { color: var(--ss-primary); font-weight: 600; font-size: .82rem; }

/* ---------- Contact Page ------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.contact-info-box {
  background: var(--ss-primary);
  color: var(--ss-white);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-info-box h3 { color: var(--ss-white); margin-bottom: 20px; }
.contact-info-box > p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ss-accent);
  font-size: 1.05rem;
}
.contact-info-item strong { display: block; font-weight: 600; margin-bottom: 2px; color: var(--ss-white); }
.contact-info-item a, .contact-info-item span { color: rgba(255,255,255,.85); font-size: .92rem; }
.contact-info-item a:hover { color: var(--ss-white); }
.contact-social {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; gap: 12px;
}
.contact-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--ss-white);
}
.contact-social a:hover { background: var(--ss-accent); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 350px; border: 0; }

/* ---------- Footer -------------------------------------- */
.site-footer {
  background: var(--ss-dark);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--ss-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  transition: color .2s ease, padding .2s ease;
}
.footer-col ul li a:hover { color: var(--ss-accent); padding-left: 4px; }
.footer-about p { font-size: .92rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--ss-accent); color: var(--ss-white); transform: translateY(-2px); }
.footer-contact li {
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.footer-contact li i {
  position: absolute; left: 0; top: 10px;
  color: var(--ss-accent);
  font-size: .95rem;
}
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--ss-accent); }

.footer-bottom {
  margin-top: 48px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; }

/* Scroll-to-top ----------------------------------------- */
.scroll-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ss-accent);
  color: var(--ss-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .3s ease;
  z-index: 100;
  border: 0;
  font-size: 1rem;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--ss-accent-dark); transform: translateY(-2px); }

/* Mobile Menu ------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ss-white);
  z-index: 400;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  right: 20px; top: 20px;
  width: 44px; height: 44px;
  border: 0;
  background: var(--ss-earth);
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ss-text);
}
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--ss-border);
  color: var(--ss-text);
  font-weight: 500;
  font-size: 1.05rem;
}
.mobile-nav ul li a:hover { color: var(--ss-primary); }
.mobile-nav .nav-submenu {
  position: static;
  box-shadow: none; padding: 0 0 0 16px;
  opacity: 1; visibility: visible; transform: none;
  background: transparent;
  min-width: 0;
}
.mobile-nav .nav-submenu li a { padding: 10px 0; font-size: .92rem; color: var(--ss-muted); border-bottom: 0; }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* AOS lite animation ----------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE =============================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .donate-cta-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item { border-bottom: 1px solid rgba(13,110,110,.12); padding-bottom: 24px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
  .donate-page-grid { grid-template-columns: 1fr; }
  .about-quote { position: static; margin-top: 16px; max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .site-topbar .container { flex-direction: column; gap: 8px; font-size: .78rem; text-align: center; }
  .nav-menu, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .hero { padding: 64px 0 80px; }
  .hero-ctas .btn { flex: 1; justify-content: center; min-width: 140px; }
  .programs-grid { grid-template-columns: 1fr; }
  .volunteer-benefits { grid-template-columns: 1fr; }
  .donate-amounts-display { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .about-mv { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .brand-text .brand-tag { display: none; }
  .hero h1 { font-size: 2rem; }
  .donation-amounts { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: .8rem; }
}

/* ----- Admin stripped styles (loaded only in admin) ---- */
.admin-body { background: #f1f5f9; font-family: var(--font-body); margin: 0; }
.admin-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: var(--ss-dark); color: #e2e8f0; padding: 24px 0; }
.admin-side .admin-brand { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-side .admin-brand strong { display: block; color: var(--ss-white); font-family: var(--font-heading); font-size: 1.15rem; }
.admin-side .admin-brand small { color: rgba(255,255,255,.55); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; }
.admin-side nav { margin-top: 20px; }
.admin-side nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  border-left: 3px solid transparent;
  transition: all .2s ease;
}
.admin-side nav a:hover, .admin-side nav a.active {
  background: rgba(255,255,255,.04);
  color: var(--ss-white);
  border-left-color: var(--ss-accent);
}
.admin-side nav a i { width: 20px; text-align: center; }
.admin-main { padding: 32px; }
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid #e2e8f0;
}
.admin-header h1 { margin: 0; font-size: 1.6rem; }
.admin-card {
  background: var(--ss-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.admin-stat {
  background: var(--ss-white); padding: 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--ss-primary);
}
.admin-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--ss-dark); }
.admin-stat span { color: var(--ss-muted); font-size: .85rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e2e8f0; }
.admin-table th { background: #f8fafc; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ss-muted); }
.admin-table tr:hover { background: #f8fafc; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 600; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }
.badge-info    { background: #dbeafe; color: #1e40af; }

@media (max-width: 900px) {
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-side { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
