/* ============================================================
   ASHRAYA — master.css
   Premium redesign: White + Blue theme, modern & clean
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --primary:       #1a56db;
  --primary-dark:  #1245b0;
  --primary-light: #e8f0fe;
  --navy:          #08172e;
  --navy-mid:      #0f2d54;
  --accent:        #f59e0b;
  --accent-light:  #fef3c7;
  --text:          #0f172a;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --bg:            #f8faff;
  --bg-card:       #ffffff;
  --bg-soft:       #f0f6ff;
  --border:        rgba(15,23,42,.08);
  --border-blue:   #dbeafe;
  --shadow-sm:     0 2px 12px rgba(26,86,219,.08);
  --shadow-md:     0 8px 32px rgba(15,23,42,.10);
  --shadow-lg:     0 20px 60px rgba(15,23,42,.13);
  --shadow-blue:   0 12px 40px rgba(26,86,219,.18);
  --radius-sm:     12px;
  --radius-md:     20px;
  --radius-lg:     28px;
  --radius-xl:     40px;
  --transition:    all .35s cubic-bezier(.4,0,.2,1);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 82px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  font-weight: 700;
}

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

/* === NAVBAR === */
.ash-navbar {
  padding: 14px 0;
  background: rgba(8,23,46,.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}

.ash-navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(15,23,42,.08);
  padding: 10px 0;
}

/* Brand */
.ash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  transition: var(--transition);
}

.ash-navbar.scrolled .ash-brand { color: var(--text); }

.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), #4a90d9);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

/* Nav links */
.ash-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .93rem;
  color: rgba(255,255,255,.88);
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.ash-navbar.scrolled .nav-link { color: var(--text); }

.ash-navbar .nav-link:hover,
.ash-navbar .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.ash-navbar .nav-link.active {
  font-weight: 600;
}

/* Dropdown */
.ash-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  background: #fff;
  min-width: 240px;
  animation: fadeDown .2s ease;
}

.ash-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.ash-dropdown .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA button in nav */
.btn-nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26,86,219,.30);
}

.btn-nav-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.40);
  color: #fff;
}

/* Mobile toggler */
.ash-toggler {
  border: none;
  background: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.ash-navbar.scrolled .toggler-line { background: var(--text); }

/* === HERO SECTION === */
.hero-ultra {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #04101e 0%, #081d3a 45%, #0f2d54 100%);
  overflow: hidden;
}

/* Animated background dots */
.hero-ultra::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,86,219,.20) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,144,217,.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(26,86,219,.10) 0%, transparent 40%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: .7; transform: scale(1); }
  to   { opacity: 1;  transform: scale(1.05); }
}

/* Dot grid overlay */
.hero-ultra::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .10;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,16,30,.10), rgba(4,16,30,.60));
}

.hero-content { position: relative; z-index: 2; }

/* Eyebrow chip */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(26,86,219,.18);
  border: 1px solid rgba(26,86,219,.35);
  color: #93c5fd;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
}

.eyebrow-chip.dark {
  background: var(--primary-light);
  border-color: var(--border-blue);
  color: var(--primary-dark);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 20px 0 24px;
  max-width: 820px;
}

.hero-title span { color: #60a5fa; }

.hero-copy {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 660px;
  margin-bottom: 36px;
}

/* Hero stat glass card */
.hero-stats-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-stat-kicker {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}

.hero-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  text-align: right;
}

/* CTA buttons */
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(26,86,219,.35);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,86,219,.45);
  color: #fff;
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-weight: 500;
  font-size: .98rem;
  background: rgba(255,255,255,.06);
  transition: var(--transition);
}

.btn-ghost-hero:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #04101e 0%, #081d3a 50%, #0f2d54 100%);
  padding: 100px 0 90px;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero-content { position: relative; z-index: 1; }

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #fff;
  margin: 18px auto 20px;
  max-width: 900px;
  letter-spacing: -.02em;
}

.page-copy {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}

/* === SECTION UTILITIES === */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-white { background: #fff; }

.section-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -.02em;
  margin: 14px 0 18px;
  line-height: 1.15;
}

.section-copy {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}

/* === TRUSTED LOGOS STRIP === */
.trust-strip {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

.trust-logo-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  opacity: .65;
  transition: var(--transition);
  letter-spacing: .02em;
}

.trust-logo-item:hover { opacity: 1; color: var(--primary); }

/* === FEATURE/PROGRAM CARDS === */
.program-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
  border-color: var(--border-blue);
}

.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.program-card:hover .program-icon {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
}

.program-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.program-card:hover h4 { color: var(--primary); }

.program-card p {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.75;
  margin: 0;
}

.program-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.program-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* === STATS COUNTER SECTION === */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(26,86,219,.12);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(26,86,219,.08);
}

.stat-item { text-align: center; position: relative; z-index: 1; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span { color: #60a5fa; }

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

.stat-divider {
  display: none;
}

@media (min-width: 768px) {
  .stat-divider {
    display: block;
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,.12);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* === IMPACT / FEATURE IMAGE SECTION === */
.impact-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  display: block;
}

.impact-image-wrapper { position: relative; }

.impact-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.impact-badge-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
}

.impact-badge-text strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
}

.impact-badge-text span {
  font-size: .82rem;
  color: var(--text-muted);
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: .96rem;
  line-height: 1.6;
}

.check-list li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* === PRIMARY BUTTONS === */
.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-blue);
}

.btn-primary-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,86,219,.40);
  color: #fff;
}

.btn-outline-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--text);
  border: 1.5px solid var(--border-blue);
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  background: #fff;
  transition: var(--transition);
}

.btn-outline-solid:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* === PROJECT CARDS === */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.project-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
  transition: var(--transition);
}

.project-card:hover h4 { color: var(--primary); }

.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
  flex: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 18px;
  transition: var(--transition);
}

.project-link:hover { gap: 10px; }

/* === LEADER CARDS === */
.leader-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.leader-card-img-wrap {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leader-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.leader-card-body { padding: 22px; }

.leader-role {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 6px;
}

.leader-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.leader-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin: 0; }

/* === CAMPAIGN CARDS === */
.campaign-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.campaign-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.campaign-card-body { padding: 24px 28px 28px; }

.campaign-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.campaign-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; }

.campaign-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.campaign-meta-item {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 14px;
}

.campaign-meta-item span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.campaign-meta-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
}

/* Progress bar */
.campaign-progress-wrap {
  height: 10px;
  background: var(--border-blue);
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0 8px;
}

.campaign-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.campaign-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-muted);
}

.campaign-progress-label strong { color: var(--primary); }

/* === NEWS / REPORT CARDS === */
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
}

.news-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
}

.news-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.news-card h5 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.news-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

/* === CONTENT / DETAIL PANELS === */
.content-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* === FORMS === */
.ash-input,
.ash-select,
.ash-textarea {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-blue);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  width: 100%;
  outline: none;
  box-shadow: none !important;
}

.ash-input:focus,
.ash-select:focus,
.ash-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12) !important;
}

.ash-textarea { resize: vertical; min-height: 140px; }

.form-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

/* === DONATION SIDEBAR === */
.donation-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.donation-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.donation-stat-row:last-of-type { border-bottom: none; }
.donation-stat-row span { color: var(--text-muted); font-size: .9rem; }
.donation-stat-row strong { font-weight: 700; color: var(--text); }

/* === WAVE DIVIDERS === */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg { display: block; width: 100%; }

/* === PARTNER CARDS === */
.partner-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
}

.partner-logo-placeholder {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.partner-type {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.partner-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.partner-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  flex: 1;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(26,86,219,.15);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(26,86,219,.10);
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin: 18px 0 20px;
  letter-spacing: -.02em;
}

.cta-copy {
  color: rgba(255,255,255,.70);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === COLLABORATORS / INVOLVED SECTION === */
.involve-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.involve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: var(--border-blue);
}

.involve-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.involve-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.involve-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; }

/* === CONTACT INFO ITEMS === */
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.contact-info-item span { font-size: .98rem; color: var(--text); }

/* === FOOTER === */
.ash-footer { background: var(--navy); margin-top: 0; }

.footer-wave { display: block; line-height: 0; background: var(--bg); }
.footer-wave svg { display: block; }

.footer-body { padding: 80px 0 48px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-decoration: none;
}

.brand-icon-footer {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
}

.footer-tagline {
  color: rgba(255,255,255,.60);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}

.footer-reg-badge i { color: #34d399; }

.footer-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.70);
  font-size: .93rem;
  transition: var(--transition);
}

.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-cta-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,.35);
}

.footer-cta-btn.primary:hover { transform: translateY(-2px); color: #fff; }

.footer-cta-btn.outline {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.80);
}

.footer-cta-btn.outline:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.footer-contact-info {
  display: grid;
  gap: 8px;
}

.footer-contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}

.footer-contact-info i { color: #60a5fa; width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: #fff; }

.footer-credit { color: rgba(255,255,255,.35); }

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.4,0,.2,1), transform .85s cubic-bezier(.4,0,.2,1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .85s cubic-bezier(.4,0,.2,1), transform .85s cubic-bezier(.4,0,.2,1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .85s cubic-bezier(.4,0,.2,1), transform .85s cubic-bezier(.4,0,.2,1);
}

.reveal-visible {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i) * .1s); }

/* === MISC UTILITIES === */
.text-primary { color: var(--primary) !important; }
.text-muted-custom { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.rounded-img { border-radius: var(--radius-xl); }
.shadow-card { box-shadow: var(--shadow-md); }

/* Detail page image */
.detail-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}

/* Feature list for detail pages */
.feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-size: .95rem;
}

.feature-list li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Step wizard */
.step-wizard {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.step-pill {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 1.5px solid var(--border-blue);
  transition: var(--transition);
}

.step-pill.active {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  border-color: transparent;
}

.step-panel { display: none; }
.step-panel.active { display: block; }

/* Amount selector */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-btn {
  padding: 12px 8px;
  border-radius: 12px;
  border: 1.5px solid var(--border-blue);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-size: .9rem;
  transition: var(--transition);
}

.amount-btn:hover, .amount-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* Share row */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-blue);
  transition: var(--transition);
}

.share-btn:hover { background: var(--primary); color: #fff; }

/* === MOBILE COLLAPSE NAV OVERRIDES === */
@media (max-width: 991.98px) {
  body { padding-top: 76px; }

  .navbar-collapse {
    margin-top: 14px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(8,23,46,.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
  }

  .ash-navbar.scrolled .navbar-collapse {
    background: rgba(255,255,255,.97);
  }

  .ash-navbar .nav-link {
    margin-left: 0;
    margin-bottom: 4px;
  }

  .ash-navbar.scrolled .navbar-collapse .nav-link { color: var(--text); }

  .btn-nav-donate { margin-top: 8px; }

  .ash-dropdown {
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    box-shadow: none;
    padding: 4px 8px;
  }

  .ash-dropdown .dropdown-item { color: rgba(255,255,255,.8); }
  .ash-navbar.scrolled .ash-dropdown .dropdown-item { color: var(--text); }

  .impact-badge { bottom: -10px; right: 10px; }
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 56px 0; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.6rem; }
  .page-title { font-size: 2.1rem; }
  .section-title { font-size: 1.9rem; }
  .section-pad { padding: 60px 0; }
  .content-panel { padding: 24px; }
  .donation-sidebar { position: static; }
  .campaign-meta-grid { grid-template-columns: 1fr; }
  .footer-body { padding: 60px 0 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-cta-group { flex-direction: row; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}













/* My edits */

/* logo edits */

.brand-logo{
    height: 52px;
    width: auto;              /* Keeps original aspect ratio */
    max-width: 220px;

    object-fit: contain;

    border-radius: 14px;      /* Rounded corners */

    background: #ffffff;
    padding: 6px 10px;

    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.08),
        0 1px 3px rgba(15, 23, 42, 0.06);

    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo{
    transform: scale(1.02);

    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.12),
        0 2px 6px rgba(15, 23, 42, 0.08);
}