/*
Theme Name: 4LegCare Foundation
Theme URI: https://4legcare.org
Author: 4LegCare Foundation
Author URI: https://4legcare.org
Description: A bilingual (English/Hindi) single-page NGO website for 4LegCare Foundation - animal rescue, adoption, volunteering and donations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 4legcare
Tags: single-page, bilingual, ngo, animals, responsive
*/

/* =====================================================================
   GOOGLE FONTS + RESET
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; background: #FAF8F3; color: #1A2B21; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Nunito', sans-serif; }
input, textarea, select { font-family: 'Nunito', sans-serif; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F5F2ED; }
::-webkit-scrollbar-thumb { background: #7BAE8C; border-radius: 3px; }
section { scroll-margin-top: 68px; }

/* =====================================================================
   CSS VARIABLES
   ===================================================================== */
:root {
  --cream:    #FAF8F3;
  --forest:   #2A5A3C;
  --forestDk: #1d3f2a;
  --sage:     #7BAE8C;
  --sageLt:   #e8f4ec;
  --sky:      #4A90C4;
  --skyLt:    #d6eaf8;
  --amber:    #E8A838;
  --amberDk:  #c98a1f;
  --coral:    #E86B5A;
  --charcoal: #1A2B21;
  --muted:    #6B7E6E;
  --white:    #FFFFFF;
  --offwhite: #F5F2ED;
  --gold:     #D4AF37;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Nunito', sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(42,90,60,0.1);
  --shadow-md: 0 8px 32px rgba(42,90,60,0.14);
  --shadow-lg: 0 20px 60px rgba(42,90,60,0.18);
  --transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:none } }
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes pulse    { 0%,100% { transform:scale(1) } 50% { transform:scale(1.04) } }
@keyframes spin     { to { transform:rotate(360deg) } }
@keyframes floatY   { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-12px) } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.92) } to { opacity:1; transform:scale(1) } }
@keyframes slideDown { from { opacity:0; transform:translateY(-16px) } to { opacity:1; transform:none } }
@keyframes shimmer  { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes gradShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.anim-fadeup { animation: fadeUp 0.7s cubic-bezier(.4,0,.2,1) forwards; }

/* =====================================================================
   UTILITY CLASSES
   ===================================================================== */
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg) !important; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 30px; border-radius: 50px;
  font-size: 14px; font-weight: 700; border: none;
  transition: var(--transition); letter-spacing: 0.4px; white-space: nowrap;
  cursor: pointer;
}
.btn-full { width: 100%; }
.btn-primary   { background: var(--forest); color: var(--white); box-shadow: 0 4px 14px rgba(42,90,60,0.22); }
.btn-primary:hover { background: var(--forestDk); box-shadow: 0 10px 28px rgba(42,90,60,0.38); transform: translateY(-2px); }
.btn-amber    { background: var(--amber); color: var(--white); box-shadow: 0 4px 14px rgba(232,168,56,0.25); }
.btn-amber:hover { background: var(--amberDk); box-shadow: 0 10px 28px rgba(232,168,56,0.42); transform: translateY(-2px); }
.btn-coral    { background: var(--coral); color: var(--white); box-shadow: 0 4px 14px rgba(232,107,90,0.22); }
.btn-coral:hover { background: #c4503f; box-shadow: 0 10px 28px rgba(232,107,90,0.38); transform: translateY(-2px); }
.btn-ghost    { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-ghost:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,90,60,0.18); }
.btn-white    { background: var(--white); color: var(--forest); box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn-white:hover { background: rgba(255,255,255,0.92); box-shadow: 0 10px 28px rgba(0,0,0,0.18); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,255,255,0.15); }
.btn-sky { background: var(--sky); color: var(--white); box-shadow: 0 4px 14px rgba(74,144,196,0.22); }
.btn-sky:hover { background: #3a7aac; transform: translateY(-2px); }

/* =====================================================================
   FORMS
   ===================================================================== */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 13px 18px; border-radius: 14px;
  border: 2px solid rgba(123,174,140,0.3); background: var(--white);
  font-size: 14px; color: var(--charcoal); outline: none;
  transition: var(--transition); resize: vertical;
}
.form-control:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(42,90,60,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; }
.form-success {
  text-align: center; padding: 60px 32px;
  background: var(--cream); border-radius: var(--radius-lg);
  animation: scaleIn 0.4s ease;
}
.form-success .success-icon { font-size: 64px; margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-display); font-size: 26px; color: var(--forest); margin-bottom: 12px; }
.form-success p { color: var(--muted); }
.form-error { color: #e53e3e; font-size: 13px; margin-top: 4px; }
.alert-error {
  background: rgba(229,62,62,0.08); color: #e53e3e;
  padding: 10px 14px; border-radius: 10px; margin-bottom: 12px;
  font-size: 13px;
}

/* =====================================================================
   BADGE
   ===================================================================== */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sageLt); border-radius: 50px;
  padding: 5px 16px; margin-bottom: 18px;
  font-size: 11px; color: var(--forest); font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
}
.badge-amber { background: rgba(232,168,56,0.15); color: var(--amber); }
.badge-sky   { background: var(--skyLt); color: var(--sky); }
.badge-coral { background: rgba(232,107,90,0.1); color: var(--coral); }

/* =====================================================================
   NAV
   ===================================================================== */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  transition: var(--transition);
}
#site-nav.scrolled {
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,174,140,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 11px; cursor: pointer; flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 14px rgba(42,90,60,0.3);
}
.nav-logo-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--white); transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 10px; color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px; text-transform: uppercase;
  line-height: 1; margin-top: 2px; transition: color 0.3s;
}
#site-nav.scrolled .nav-logo-name { color: var(--charcoal); }
#site-nav.scrolled .nav-logo-sub  { color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  background: none; border: none; font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,0.88); padding: 6px 10px; border-radius: 8px;
  transition: var(--transition); border-bottom: 2px solid transparent;
}
.nav-link.active, .nav-link:hover { color: var(--amber); }
.nav-link.active { font-weight: 800; border-bottom-color: var(--amber); }
#site-nav.scrolled .nav-link { color: var(--muted); }
#site-nav.scrolled .nav-link.active,
#site-nav.scrolled .nav-link:hover { color: var(--forest); }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: var(--white); transition: var(--transition);
}
#site-nav.scrolled .lang-btn { background: var(--sageLt); border-color: var(--sage); color: var(--forest); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; color: var(--white); }
#site-nav.scrolled .mobile-menu-btn { color: var(--charcoal); }

/* =====================================================================
   HERO
   ===================================================================== */
#home {
  min-height: 100vh; position: relative; display: flex;
  align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d2417 0%, #1a3d26 40%, var(--forest) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatY 5s ease-in-out infinite;
}
.hero-paw-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ctext y='60' x='10' font-size='50'%3E🐾%3C/text%3E%3C/svg%3E");
  background-size: 100px 100px;
}
.hero-image-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%;
  transition: opacity 1.4s ease 0.4s;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #1a3d26 0%, rgba(26,61,38,0.3) 100%); z-index: 1;
}
.hero-image {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 80px 90px; max-width: 680px;
  animation: fadeUp 1s ease 0.1s both;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(50px,6vw,84px);
  font-weight: 700; color: var(--white); line-height: 1.07;
  margin-bottom: 26px; letter-spacing: -1px;
}
.hero-title em { color: var(--amber); font-style: italic; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 44px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px; gap: 12px;
}
.hero-stat-n { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); color: var(--amber); font-weight: 700; }
.hero-stat-l { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 3px; line-height: 1.3; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  animation: floatY 2s ease-in-out infinite; opacity: 0.6;
}
.scroll-box {
  width: 28px; height: 44px; border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-dot {
  width: 4px; height: 10px; border-radius: 2px;
  background: rgba(255,255,255,0.6); animation: floatY 1.5s ease-in-out infinite;
}

/* =====================================================================
   IMPACT BAND
   ===================================================================== */
#impact-band {
  background: linear-gradient(135deg, var(--forest), var(--forestDk));
  padding: 18px 60px; overflow: hidden;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.impact-item {
  font-size: 13.5px; color: rgba(255,255,255,0.82);
  font-weight: 600; letter-spacing: 0.5px;
}

/* =====================================================================
   ABOUT SECTION
   ===================================================================== */
#about { background: var(--cream); }
.about-main {
  padding: 100px 80px; display: flex; gap: 80px;
  align-items: center; flex-wrap: wrap;
}
.about-images {
  flex: 1; min-width: 300px; position: relative; height: 520px;
}
.about-img-1 {
  position: absolute; top: 0; left: 0; width: 65%; height: 70%;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(42,90,60,0.2);
}
.about-img-2 {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 58%;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(42,90,60,0.2);
  border: 4px solid var(--white);
}
.about-img-1 img, .about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-overlay {
  position: absolute; bottom: 38%; left: -16px;
  background: var(--white); border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(42,90,60,0.18);
  display: flex; align-items: center; gap: 12px;
}
.about-badge-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.about-badge-n { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--forest); }
.about-badge-l { font-size: 11px; color: var(--muted); }
.about-leaf-deco {
  position: absolute; top: -20px; right: 30px; width: 80px; height: 80px;
  border-radius: 50%; background: var(--sageLt); border: 3px solid var(--sage);
  display: flex; align-items: center; justify-content: center; font-size: 32px;
}
.about-text { flex: 1.1; min-width: 300px; }
.about-title {
  font-family: var(--font-display); font-size: clamp(34px,4vw,56px);
  font-weight: 700; color: var(--charcoal); line-height: 1.12; margin-bottom: 24px;
}
.about-title em { color: var(--forest); font-style: italic; }
.about-body { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 36px;
}
.about-card {
  background: var(--white); border-radius: 18px; padding: 20px 16px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px;
}
.about-card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--sageLt); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.about-card-title { font-weight: 700; font-size: 13px; color: var(--charcoal); }
.about-card-sub   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Team */
.team-section { padding: 60px 80px 100px; background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 28px; max-width: 1000px; margin: 0 auto;
}
.team-card {
  background: var(--cream); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-sm); text-align: center;
}
.team-card img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; }
.team-card-info { padding: 20px; }
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--charcoal); }
.team-role { font-size: 12px; color: var(--sage); font-weight: 600; margin-top: 4px; }

/* =====================================================================
   GALLERY
   ===================================================================== */
#gallery { padding: 100px 80px; background: var(--cream); }
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; }
.filter-btn {
  padding: 9px 24px; border-radius: 50px;
  border: 2px solid rgba(123,174,140,0.35);
  background: transparent; color: var(--muted);
  font-weight: 700; font-size: 13px; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest); color: var(--white);
  border-color: var(--forest);
}
.gallery-grid { columns: 3 280px; gap: 20px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: 20px; overflow: hidden;
  cursor: pointer; position: relative;
  box-shadow: 0 6px 24px rgba(42,90,60,0.1);
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 55%, rgba(26,43,33,0.85) 100%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  background: var(--amber); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px; text-transform: uppercase;
}
.gallery-label { font-family: var(--font-display); color: var(--white); font-size: 16px; font-weight: 700; margin-top: 6px; }
/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,20,14,0.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.25s ease;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 20px; box-shadow: 0 0 100px rgba(0,0,0,0.6); animation: scaleIn 0.3s ease; }
#lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: rgba(255,255,255,0.12); border: none;
  color: var(--white); font-size: 26px; border-radius: 50%;
  width: 46px; height: 46px; backdrop-filter: blur(4px);
}
#lightbox-label {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.1); padding: 8px 20px;
  border-radius: 50px; backdrop-filter: blur(4px);
  color: var(--white); font-size: 14px; font-weight: 600;
}

/* =====================================================================
   VOLUNTEER
   ===================================================================== */
#volunteer { padding: 100px 80px; background: var(--white); }
.volunteer-wrap { display: flex; gap: 80px; flex-wrap: wrap; align-items: flex-start; }
.volunteer-left { flex: 1; min-width: 280px; }
.volunteer-perks .perk {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream); border-radius: 14px; padding: 14px 18px; margin-bottom: 12px;
}
.volunteer-testimonial {
  background: linear-gradient(135deg, var(--forest), var(--forestDk));
  border-radius: 20px; padding: 28px; margin-top: 32px;
}
.volunteer-testimonial blockquote {
  font-family: var(--font-display); font-size: 17px;
  font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.4); }
.testimonial-name  { font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-since { font-size: 11px; color: rgba(255,255,255,0.55); }
.volunteer-form { flex: 1; min-width: 300px; }

/* =====================================================================
   ADOPT
   ===================================================================== */
#adopt { background: var(--cream); }
.adopt-animals { padding: 100px 80px 60px; }
.animals-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 24px; margin-top: 32px;
}
.animal-card {
  background: var(--white); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 2px solid transparent; transition: var(--transition);
}
.animal-card.selected { border-color: var(--forest); }
.animal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.animal-card-img { height: 200px; overflow: hidden; position: relative; }
.animal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.animal-card:hover .animal-card-img img { transform: scale(1.08); }
.vaccinated-badge {
  position: absolute; top: 12px; right: 12px;
  color: var(--white); font-size: 10px; font-weight: 800;
  letter-spacing: 1px; padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
}
.vaccinated-badge.yes { background: var(--forest); }
.vaccinated-badge.no  { background: var(--amber); }
.animal-card-body { padding: 20px; }
.animal-name  { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--charcoal); }
.animal-breed { font-size: 12px; color: var(--muted); margin-top: 2px; }
.animal-type  { background: var(--sageLt); color: var(--forest); padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; }
.animal-age   { font-size: 12px; color: var(--muted); margin: 8px 0 16px; }
.adopt-form-section { padding: 60px 80px 100px; background: var(--white); }

/* =====================================================================
   CONTACT
   ===================================================================== */
#contact { padding: 100px 80px; background: var(--cream); }
.contact-wrap { display: flex; gap: 80px; flex-wrap: wrap; align-items: flex-start; }
.contact-left { flex: 1; min-width: 280px; }
.contact-right { flex: 1; min-width: 300px; }
.contact-info-item {
  background: var(--white); border-radius: 18px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 3px 14px rgba(42,90,60,0.07); margin-bottom: 14px;
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--sageLt); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.contact-info-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-value { font-size: 14px; color: var(--charcoal); font-weight: 600; margin-top: 3px; }
.map-placeholder {
  margin-top: 28px; border-radius: 20px; overflow: hidden; height: 200px;
  background: linear-gradient(135deg, var(--sageLt), var(--skyLt));
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }

/* =====================================================================
   DONATE MODAL
   ===================================================================== */
#donate-modal {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(10,20,14,0.78); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#donate-modal.open { display: flex; }
.donate-box {
  background: var(--white); border-radius: 32px; width: 100%; max-width: 500px;
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  animation: scaleIn 0.35s cubic-bezier(.4,0,.2,1);
}
.donate-header {
  background: linear-gradient(135deg, var(--forestDk), var(--forest));
  padding: 32px 36px; position: relative; overflow: hidden;
}
.donate-header::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.donate-header h2 {
  font-family: var(--font-display); color: var(--white);
  margin: 10px 0 4px; font-size: 24px; font-weight: 700;
}
.donate-header p { color: rgba(255,255,255,0.65); font-size: 13px; }
.donate-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.15); border: none;
  color: var(--white); font-size: 22px; border-radius: 50%;
  width: 40px; height: 40px; backdrop-filter: blur(4px);
}
.donate-progress { display: flex; gap: 6px; margin-top: 24px; }
.progress-bar {
  height: 4px; flex: 1; border-radius: 2px;
  background: rgba(255,255,255,0.25); transition: background 0.4s;
}
.progress-bar.active { background: var(--amber); }
.donate-body { padding: 28px 36px 36px; }
.currency-grid { display: flex; gap: 8px; margin-bottom: 14px; }
.currency-btn {
  flex: 1; padding: 9px 4px; border-radius: 12px;
  border: 2px solid rgba(123,174,140,0.3);
  background: transparent; font-weight: 700; font-size: 12px;
  color: var(--muted); transition: var(--transition);
}
.currency-btn.active { border-color: var(--forest); background: rgba(42,90,60,0.08); color: var(--forest); }
.preset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 14px; }
.preset-btn {
  padding: 14px; border-radius: 14px;
  border: 2px solid rgba(123,174,140,0.25);
  background: var(--offwhite); font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: var(--charcoal);
  transition: var(--transition);
}
.preset-btn.active { border-color: var(--forest); background: rgba(42,90,60,0.08); color: var(--forest); }
.gateway-grid { display: flex; gap: 8px; margin-bottom: 18px; }
.gateway-btn {
  flex: 1; padding: 11px; border-radius: 12px;
  border: 2px solid rgba(123,174,140,0.25); background: var(--offwhite);
  font-weight: 700; font-size: 12px; color: var(--muted); transition: var(--transition);
}
.gateway-btn.active { border-color: var(--sky); background: var(--skyLt); color: var(--sky); }
.donate-summary {
  background: var(--offwhite); border-radius: 18px; padding: 22px; margin-bottom: 18px;
}
.summary-row {
  display: flex; justify-content: space-between; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(123,174,140,0.15);
}
.summary-row:last-child { border: none; margin: 0; padding: 0; }
.summary-key { font-size: 13px; color: var(--muted); }
.summary-val { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.donate-step { display: none; }
.donate-step.active { display: block; }
.donate-thanks { text-align: center; padding: 16px 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
#footer { background: var(--charcoal); padding: 72px 80px 36px; }
.footer-cta {
  background: linear-gradient(135deg, var(--forest), var(--forestDk));
  border-radius: 28px; padding: 48px 56px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 28px; margin-bottom: 60px;
  box-shadow: 0 16px 50px rgba(42,90,60,0.3);
}
.footer-cta h3 {
  font-family: var(--font-display); font-size: clamp(22px,3vw,36px);
  color: var(--white); font-weight: 700; margin-bottom: 10px;
}
.footer-cta p { color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }
.footer-brand-sub  { font-size: 10px; color: var(--sage); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 13.5px; line-height: 1.75; max-width: 280px; margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  font-size: 16px; transition: var(--transition);
}
.social-btn:hover { background: rgba(123,174,140,0.2); border-color: var(--sage); }
.footer-heading {
  color: var(--white); font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer-link {
  display: block; color: rgba(255,255,255,0.48); font-size: 13.5px;
  margin-bottom: 12px; background: none; border: none; text-align: left;
  transition: color 0.2s; padding: 0;
}
.footer-link:hover { color: var(--sage); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item span { color: rgba(255,255,255,0.48); font-size: 13px; line-height: 1.5; }
.footer-newsletter-input {
  width: 100%; padding: 11px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  font-size: 13px; color: var(--white); outline: none; margin-bottom: 8px;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { color: rgba(255,255,255,0.28); font-size: 12.5px; }

/* =====================================================================
   SECTION HEADINGS SHARED
   ===================================================================== */
.section-title {
  font-family: var(--font-display); font-size: clamp(28px,3.5vw,52px);
  font-weight: 700; color: var(--charcoal); margin-bottom: 14px;
}
.section-title em { color: var(--forest); font-style: italic; }
.section-sub { color: var(--muted); font-size: 16px; max-width: 520px; line-height: 1.75; }

/* =====================================================================
   VOLUNTEER BAND (home CTA)
   ===================================================================== */
#volunteer-band {
  padding: 80px; background: linear-gradient(135deg, var(--charcoal), var(--forest));
  text-align: center;
}
#volunteer-band h2 {
  font-family: var(--font-display); font-size: clamp(28px,3.5vw,52px);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
#volunteer-band p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
#volunteer-band .cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =====================================================================
   LOADING SPINNER
   ===================================================================== */
.spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite; display: inline-block;
}

/* =====================================================================
   TOAST NOTIFICATION
   ===================================================================== */
#toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  background: var(--forest); color: var(--white);
  padding: 14px 24px; border-radius: 14px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: var(--transition);
}
#toast.show { transform: none; opacity: 1; }
#toast.error { background: #e53e3e; }

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
#mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(26,43,33,0.97);
  backdrop-filter: blur(16px); display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  animation: fadeIn 0.25s ease;
}
#mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-display); font-size: 28px; color: var(--white);
  font-weight: 700; padding: 8px 24px; border-radius: 12px; background: none; border: none;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--amber); }
#mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  font-size: 26px; border-radius: 50%; width: 46px; height: 46px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  #site-nav   { padding: 0 24px; }
  .nav-links  { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-content    { padding: 120px 24px 80px; }
  .hero-image-wrap { display: none; }
  .hero-stats      { grid-template-columns: repeat(2,1fr); }
  .about-main, .volunteer-wrap, .contact-wrap { padding: 60px 24px; gap: 40px; }
  .about-images    { display: none; }
  .about-text      { min-width: unset; }
  .gallery-grid    { columns: 2 200px; }
  .adopt-animals, .adopt-form-section, #gallery, #volunteer, #contact { padding: 60px 24px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  #footer { padding: 60px 24px 36px; }
  .footer-cta { padding: 32px 24px; }
  #volunteer-band  { padding: 60px 24px; }
  .form-row        { grid-template-columns: 1fr; }
  .team-section    { padding: 40px 24px; }
  #impact-band     { padding: 14px 24px; gap: 20px; }
  .hero-ctas .btn  { font-size: 14px; padding: 12px 24px; }
}

@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
  .footer-grid  { grid-template-columns: 1fr; }
  .about-cards  { grid-template-columns: 1fr; }
  .animals-grid { grid-template-columns: 1fr; }
  .hero-title   { font-size: 38px; }
}
