/* ═══════════════════════════════════════════════════
   PEST CONTROL PARTY OF INDIA — Main Stylesheet
   Theme: Dark Neumorphic | Logo Orange + Dark
   Primary: #ff6a00  |  Dark accent: #e05500
   Alert / target: #ff2200
═══════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #080808;
  --surface:     #111111;
  --surface-2:   #0c0c0c;
  --surface-3:   #151515;

  /* Primary — Logo Orange */
  --orange:      #ff6a00;
  --orange-dark: #e05500;
  --orange-dim:  #cc4d00;
  --orange-pale: rgba(255,106,0,0.12);
  --orange-glow: rgba(255,106,0,0.5);

  /* Secondary — Alert Red-Orange */
  --red:         #ff2200;
  --red-dark:    #cc1a00;

  /* Text */
  --text:        #e8e8e8;
  --text-muted:  #888888;
  --text-faint:  #444444;

  /* Shadows */
  --shadow-dark:  rgba(0,0,0,0.88);
  --shadow-light: rgba(255,255,255,0.04);

  /* Radius */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --transition: 0.25s ease;
}

/* ─── RESET / BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--bg); }
::-webkit-scrollbar-thumb    { background: var(--orange); border-radius: 3px; }

/* ══════════════════════════════════════════════════
   NEUMORPHIC COMPONENTS
══════════════════════════════════════════════════ */

.neu {
  background: var(--surface);
  box-shadow:
     8px  8px 20px var(--shadow-dark),
    -4px -4px 12px var(--shadow-light);
  border-radius: var(--radius-md);
}
.neu:hover {
  box-shadow:
     12px  12px 28px var(--shadow-dark),
    -6px  -6px 16px rgba(255,255,255,0.055);
}

.neu-sm {
  background: var(--surface);
  box-shadow:
     5px  5px 12px var(--shadow-dark),
    -3px -3px  8px var(--shadow-light);
  border-radius: var(--radius-sm);
}

.neu-inset {
  background: var(--surface-2);
  box-shadow:
    inset  5px  5px 12px var(--shadow-dark),
    inset -3px -3px  8px rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}

.stat-box {
  background: var(--surface-2);
  box-shadow:
    inset 4px 4px 10px var(--shadow-dark),
    inset -2px -2px 6px rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  user-select: none;
}

/* Primary — Orange (replaces btn-green, class kept for HTML compat) */
.btn-green {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow:
    0 0 28px rgba(255,106,0,0.5),
    6px 6px 14px var(--shadow-dark),
    -3px -3px 8px var(--shadow-light);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 45px rgba(255,106,0,0.7),
    8px 8px 18px var(--shadow-dark);
}
.btn-green:active {
  transform: translateY(0);
  box-shadow:
    inset 4px 4px 8px rgba(0,0,0,0.55),
    0 0 14px rgba(255,106,0,0.35);
}

/* Secondary — Red alert */
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow:
    0 0 24px rgba(255,34,0,0.45),
    6px 6px 14px var(--shadow-dark);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(255,34,0,0.65),
    8px 8px 18px var(--shadow-dark);
}
.btn-red:active {
  transform: translateY(0);
  box-shadow: inset 4px 4px 8px rgba(0,0,0,0.55);
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════════ */

/* .neon now means Orange glow */
.neon {
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255,106,0,0.65);
}

.red-glow {
  color: var(--red);
  text-shadow: 0 0 14px rgba(255,34,0,0.65);
}

.counter-glow {
  color: var(--orange);
  text-shadow:
    0 0 28px rgba(255,106,0,0.95),
    0 0 55px rgba(255,106,0,0.45);
}

/* Demand numbers — orange to red gradient */
.demand-num {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   TAGS / CHIPS
══════════════════════════════════════════════════ */

.tag {
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.35);
  color: var(--orange);
  font-size: 0.62rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: inline-block;
  line-height: 1.8;
}

.tag-red {
  background: rgba(255,34,0,0.1);
  border-color: rgba(255,34,0,0.35);
  color: var(--red);
}

/* ══════════════════════════════════════════════════
   FORM INPUTS
══════════════════════════════════════════════════ */

.neu-input {
  background: var(--surface-2);
  box-shadow:
    inset 5px 5px 12px var(--shadow-dark),
    inset -3px -3px 6px rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 0.9rem;
  font-family: inherit;
}

.neu-input:focus {
  border-color: rgba(255,106,0,0.5);
  box-shadow:
    inset 5px 5px 12px var(--shadow-dark),
    inset -3px -3px 6px rgba(255,255,255,0.03),
    0 0 14px rgba(255,106,0,0.22);
}

.neu-input::placeholder { color: #3a3a3a; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */

.nav-glass {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,106,0,0.12);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow:
     3px  3px  8px rgba(0,0,0,0.85),
    -2px -2px  6px rgba(255,255,255,0.04),
     0   0   16px rgba(255,106,0,0.25);
  transition: box-shadow var(--transition), transform var(--transition);
}
.nav-logo:hover .nav-logo-img {
  box-shadow:
     4px  4px 10px rgba(0,0,0,0.9),
    -2px -2px  6px rgba(255,255,255,0.05),
     0   0   28px rgba(255,106,0,0.5);
  transform: scale(1.05) rotate(-2deg);
}

.nav-logo-text .brand   { font-size: 0.72rem; font-weight: 900; color: #fff; letter-spacing: 2px; line-height: 1.2; }
.nav-logo-text .tagline {
  font-size: 0.52rem; font-weight: 900;
  color: var(--orange);
  letter-spacing: 2.5px; line-height: 1;
  text-shadow: 0 0 10px rgba(255,106,0,0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--orange); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid rgba(255,106,0,0.08);
}
.nav-mobile.open { max-height: 460px; }
.nav-mobile-inner {
  padding: 8px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.nav-mobile-link:hover { color: var(--orange); }
.nav-mobile-link:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Subtle orange vignette radiating from bottom-center */
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255,106,0,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(80,20,0,0.75) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(50,10,0,0.4) 0%, transparent 55%),
    linear-gradient(to bottom,
      rgba(8,8,8,0.25) 0%,
      rgba(8,8,8,0.65) 55%,
      rgba(8,8,8,1)    100%);
}

.hero-motes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.mote {
  position: absolute;
  border-radius: 50%;
  animation: mote-pulse 3.5s ease-in-out infinite;
}

@keyframes mote-pulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 0.6;  transform: scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  text-align: center;
}

.hero-logo-img {
  height: 170px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 36px rgba(255,106,0,0.55));
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  /* Orange-tinted inset badge */
  background: rgba(255,106,0,0.07);
  border: 1px solid rgba(255,106,0,0.2);
  box-shadow:
    inset 2px 2px 6px rgba(0,0,0,0.7),
    0 0 16px rgba(255,106,0,0.12);
}

.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: ping 1.3s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,106,0,0.7); }
  60%       { opacity: 0.6; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(255,106,0,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #ccc;
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
}

/* Counter box */
.counter-box {
  display: inline-block;
  padding: 28px 44px;
  border-radius: var(--radius-lg);
}

@keyframes counter-glow-pulse {
  0%, 100% {
    box-shadow:
       0 0 22px rgba(255,106,0,0.35),
       8px 8px 22px var(--shadow-dark),
      -4px -4px 12px var(--shadow-light);
  }
  50% {
    box-shadow:
       0 0 55px rgba(255,106,0,0.65),
       0 0 90px rgba(255,106,0,0.2),
       8px 8px 22px var(--shadow-dark);
  }
}
.counter-box { animation: counter-glow-pulse 2.5s ease-in-out infinite; }

.counter-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 3px; color: var(--text-faint); margin-bottom: 8px; }
.counter-value { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; }
.counter-sub   { font-size: 0.7rem; color: var(--text-faint); margin-top: 6px; }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-cue-text { font-size: 0.6rem; letter-spacing: 3px; color: var(--text-faint); margin-bottom: 6px; }
.scroll-cue svg  { color: var(--orange); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════ */

.section { padding: 96px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Orange divider (primary) */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,106,0,0.3), transparent);
  max-width: 500px;
  margin: 0 auto;
}

/* Red divider (danger sections) */
.divider-red {
  background: linear-gradient(to right, transparent, rgba(255,34,0,0.28), transparent);
}

.spray-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,106,0,0.5), transparent);
  max-width: 200px;
  margin: 20px auto 0;
}

/* ══════════════════════════════════════════════════
   DEMANDS
══════════════════════════════════════════════════ */

.demands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.demand-card {
  padding: 32px;
  transition: transform var(--transition);
  /* Faint orange top border accent */
  border-top: 2px solid rgba(255,106,0,0.15);
}
.demand-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255,106,0,0.45);
}

.demand-card-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }

.demand-cta-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,106,0,0.06), rgba(255,34,0,0.05));
  border: 1px solid rgba(255,106,0,0.12);
}

/* ══════════════════════════════════════════════════
   ROACH OF THE DAY
══════════════════════════════════════════════════ */

.roach-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

.roach-feature { padding: 32px; position: relative; overflow: hidden; }
.roach-badge   { position: absolute; top: 16px; right: 16px; }

.roach-image { height: 220px; margin-bottom: 24px; overflow: hidden; }
.roach-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.roach-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

.roach-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }

.roach-sidebar { display: flex; flex-direction: column; gap: 20px; }
.roach-sidebar-card { padding: 24px; }

.fact-item {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  border-left: 2px solid rgba(255,106,0,0.2);
}
.fact-item:last-child { margin-bottom: 0; }
.fact-label { font-size: 0.65rem; font-weight: 800; margin-bottom: 4px; }

.progress-row { margin-bottom: 16px; }
.progress-row:last-child { margin-bottom: 0; }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 8px; }
.progress-track {
  background: var(--surface-2);
  box-shadow: inset 3px 3px 8px var(--shadow-dark), inset -2px -2px 4px rgba(255,255,255,0.02);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}
.progress-fill { height: 100%; border-radius: 4px; }
/* Orange primary fill */
.fill-green  { background: linear-gradient(to right, var(--orange), var(--orange-dark)); }
.fill-red    { background: linear-gradient(to right, var(--red), var(--red-dark)); }
.fill-yellow { background: linear-gradient(to right, #facc15, #f59e0b); }

/* ══════════════════════════════════════════════════
   SUCCESS STORIES
══════════════════════════════════════════════════ */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.story-card {
  padding: 24px;
  transition: transform var(--transition);
  border-bottom: 2px solid transparent;
}
.story-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--orange);
}

.story-image { height: 150px; margin-bottom: 16px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.story-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

.story-kicker { font-size: 0.62rem; font-weight: 800; letter-spacing: 2px; color: var(--orange); margin-top: 6px; }

/* ══════════════════════════════════════════════════
   GALLERY / MASONRY
══════════════════════════════════════════════════ */

.masonry { columns: 3; column-gap: 16px; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; }

.gallery-card {
  padding: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow:
    10px 10px 24px var(--shadow-dark),
    -5px -5px 14px rgba(255,255,255,0.05),
    0 0 18px rgba(255,106,0,0.15);
}

.gallery-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.gallery-img-placeholder { font-size: 3.5rem; text-align: center; padding: 20px; }

.gallery-tags { margin-top: 8px; padding: 0 2px; display: flex; gap: 6px; flex-wrap: wrap; }
.gallery-cta { text-align: center; margin-top: 40px; }
.gallery-cta-inner { display: inline-block; padding: 28px 40px; border-radius: var(--radius-lg); }

/* ══════════════════════════════════════════════════
   JOIN FORM
══════════════════════════════════════════════════ */

.join-form-wrap { max-width: 720px; margin: 0 auto; }
.form-card { padding: 40px 48px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row      { margin-bottom: 20px; }
.form-row-last { margin-bottom: 32px; }

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-note { text-align: center; font-size: 0.72rem; color: var(--text-faint); margin-top: 14px; }

.form-success { display: none; text-align: center; padding: 60px 0; }
.form-success .success-icon { font-size: 4.5rem; margin-bottom: 20px; }

/* ══════════════════════════════════════════════════
   DONATE
══════════════════════════════════════════════════ */

.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.donate-qr-card { padding: 32px; }
.donate-qr-img { height: 220px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.donate-qr-img img { height: 190px; width: 190px; object-fit: contain; }
.donate-upi-box { padding: 16px; text-align: center; }
.donate-upi-label { font-size: 0.65rem; color: var(--text-faint); margin-bottom: 4px; }
.donate-upi-id    { font-size: 1.1rem; font-weight: 900; color: var(--orange); }

.donate-info { display: flex; flex-direction: column; gap: 20px; }
.donate-info-card { padding: 24px; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text); }
.check-icon { flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.transparency-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */

.footer {
  border-top: 1px solid rgba(255,106,0,0.12);
  padding: 64px 24px 32px;
  /* Faint orange top glow */
  box-shadow: 0 -1px 40px rgba(255,106,0,0.05);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo  { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow:
     4px  4px 14px rgba(0,0,0,0.92),
    -2px -2px  8px rgba(255,255,255,0.04),
     0   0   24px rgba(255,106,0,0.28);
  transition: box-shadow var(--transition), transform var(--transition);
}
.footer-logo:hover .footer-logo-img {
  box-shadow:
     5px  5px 16px rgba(0,0,0,0.96),
    -2px -2px  8px rgba(255,255,255,0.05),
     0   0   38px rgba(255,106,0,0.5);
  transform: scale(1.04) rotate(-2deg);
}

.footer-logo-text .brand   { font-size: 0.85rem; font-weight: 900; color: #fff; letter-spacing: 2px; line-height: 1.3; }
.footer-logo-text .tagline {
  font-size: 0.58rem; font-weight: 900;
  color: var(--orange);
  letter-spacing: 3px; line-height: 1;
  text-shadow: 0 0 10px rgba(255,106,0,0.6);
}

.footer-desc { font-size: 0.82rem; color: var(--text-faint); line-height: 1.7; max-width: 340px; margin-bottom: 16px; }

.footer-nav-title { font-size: 0.65rem; font-weight: 800; letter-spacing: 3px; color: var(--orange); margin-bottom: 20px; }

.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.82rem; color: var(--text-faint); transition: color var(--transition); }
.footer-nav a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,106,0,0.08);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom-text { font-size: 0.72rem; color: var(--text-faint); }

/* ══════════════════════════════════════════════════
   ANIMATION UTILITIES
══════════════════════════════════════════════════ */

@keyframes fly-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fly-1 { animation: fly-up 0.7s ease 0.1s  forwards; opacity: 0; }
.fly-2 { animation: fly-up 0.7s ease 0.25s forwards; opacity: 0; }
.fly-3 { animation: fly-up 0.7s ease 0.4s  forwards; opacity: 0; }
.fly-4 { animation: fly-up 0.7s ease 0.55s forwards; opacity: 0; }
.fly-5 { animation: fly-up 0.7s ease 0.7s  forwards; opacity: 0; }
.fly-6 { animation: fly-up 0.7s ease 0.85s forwards; opacity: 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Particles — orange + red-orange */
.particle {
  position: fixed;
  width: 7px; height: 7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: particle-fly 0.95s ease-out forwards;
}
@keyframes particle-fly {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.2); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .roach-grid  { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-burger { display: block; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .form-card   { padding: 28px 20px; }

  .masonry { columns: 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-logo-img { height: 130px; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 340px; }

  .section { padding: 64px 16px; }
}
