/* ==========================================================================
   ACTANIMALS · core styles
   Brand: warm orange + deep navy + clean white
   ========================================================================== */

:root {
	--orange: #ff6b35;
	--orange-dark: #e2531c;
	--pink: #ff3d6e;
	--navy: #0a2540;
	--navy-light: #14304f;
	--teal: #06b6d4;
	--bg: #fbfaf7;
	--bg-alt: #fff;
	--text: #1c2433;
	--muted: #5a6677;
	--line: #e9ecf2;
	--shadow-sm: 0 2px 6px rgba(10, 37, 64, .06);
	--shadow-md: 0 8px 28px rgba(10, 37, 64, .10);
	--shadow-lg: 0 18px 50px rgba(10, 37, 64, .14);
	--r-sm: 8px;
	--r: 14px;
	--r-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
	font-family: 'Poppins', 'Inter', sans-serif;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
	color: var(--navy);
}
h1 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -.02em; }
h2 { font-size: clamp(26px, 3.5vw, 42px); letter-spacing: -.015em; }
h3 { font-size: 20px; }
p { line-height: 1.65; color: var(--muted); margin: 0 0 12px; }

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.accent { color: var(--orange); }

/* Eyebrow / label badges */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--orange);
	background: rgba(255, 107, 53, .1);
	padding: 8px 14px;
	border-radius: 50px;
	margin-bottom: 18px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14.5px;
	border: 0;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
	white-space: nowrap;
	font-family: inherit;
	text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm  { padding: 8px 14px;  font-size: 13px; border-radius: 10px; }
.btn-lg  { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary { background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%); color: #fff; box-shadow: 0 8px 18px rgba(255,107,53,.28); }
.btn-primary:hover { box-shadow: 0 12px 24px rgba(255,107,53,.35); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(10,37,64,.06); color: var(--navy); }
.btn-ghost:hover { background: rgba(10,37,64,.12); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.12); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}
.logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.logo .site-logo-img { height: 36px; width: auto; display: block; }
.site-footer .logo .site-logo-img { height: 44px; }
@media (max-width: 768px) {
	.logo .site-logo-img { height: 30px; }
}
/* Customizer custom logo (uploaded by the org) — the_custom_logo() links itself. */
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo-link img { height: 40px; width: auto; max-width: 240px; }
@media (max-width: 768px) {
	.custom-logo-link img { height: 32px; }
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav a {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 10px;
	color: var(--navy);
	font-weight: 600;
	font-size: 15px;
	transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active, .main-nav .current-menu-item > a { background: rgba(255,107,53,.1); color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-donate { padding: 10px 18px; }

.nav-toggle { display: none; }
.nav-close { display: none; }

/* ==========================================================================
   FLASH MESSAGES
   ========================================================================== */
.flash-stack {
	position: fixed;
	top: 90px;
	right: 24px;
	z-index: 200;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}
.flash {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #1ba373;
	color: #fff;
	padding: 14px 20px;
	border-radius: 12px;
	font-weight: 600;
	box-shadow: var(--shadow-md);
	max-width: 380px;
	animation: slideIn .35s ease;
	pointer-events: auto;
}
.flash.error { background: #c0392b; }
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	position: relative;
	padding: 60px 0 90px;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,107,53,.18), transparent 60%),
		radial-gradient(ellipse 50% 60% at 20% 90%, rgba(6,182,212,.12), transparent 60%),
		var(--bg);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 60px;
	align-items: center;
}
.hero-content h1 { margin-bottom: 18px; }
.hero-lead { font-size: 18px; color: var(--muted); margin-bottom: 28px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: var(--muted);
	font-weight: 600;
}
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-item i { color: var(--orange); font-size: 16px; }

.hero-card {
	background: #fff;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	display: block;
	transition: transform .25s, box-shadow .25s;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(10,37,64,.18); }
.hero-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #fff;
	color: var(--orange);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: var(--shadow-sm);
}
.hero-card-body { padding: 22px; }
.hero-card-body h3 { color: var(--navy); }
.hero-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
}
.price { font-family: 'Poppins'; font-weight: 800; font-size: 24px; color: var(--orange); }
.price small { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
	background: var(--navy);
	color: #fff;
	padding: 48px 0;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.stat { text-align: center; }
.stat-icon {
	width: 60px; height: 60px;
	border-radius: 50%;
	background: rgba(255,107,53,.18);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 12px;
}
.stat h3 {
	font-size: 38px;
	color: #fff;
	margin: 0 0 4px;
	font-weight: 800;
	letter-spacing: -.02em;
}
.stat p { color: rgba(255,255,255,.78); margin: 0; font-weight: 500; }

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.section-head { text-align: center; margin: 0 auto 48px; max-width: 720px; }
.section-head p { font-size: 17px; }
.section-head.light .eyebrow { background: rgba(6,182,212,.12); color: var(--teal); }

/* ==========================================================================
   CAUSES
   ========================================================================== */
.causes { padding: 80px 0; }
.cause-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 36px;
}
.filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 50px;
	background: #fff;
	color: var(--navy);
	font-weight: 600;
	font-size: 14px;
	border: 2px solid var(--line);
	cursor: pointer;
	transition: all .2s;
	text-decoration: none;
	font-family: inherit;
}
.filter-pill:hover, .filter-pill.active {
	background: var(--orange);
	color: #fff;
	border-color: var(--orange);
}

.cause-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.cause-card {
	background: #fff;
	border-radius: var(--r);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .25s, box-shadow .25s;
	display: flex;
	flex-direction: column;
}
.cause-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cause-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cause-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.cause-card:hover .cause-img img { transform: scale(1.05); }
.cause-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(255,255,255,.95);
	color: var(--navy);
	font-weight: 700;
	font-size: 11px;
	padding: 5px 10px;
	border-radius: 50px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.cause-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.cause-body h3 { font-size: 18px; margin-bottom: 6px; }
.cause-body p { font-size: 14px; flex: 1; }
.cause-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
}
.cause-foot .price { font-size: 22px; }
.cause-cta { text-align: center; margin-top: 40px; }
.empty { color: var(--muted); text-align: center; padding: 30px; }

/* ==========================================================================
   VIDEO STRIP
   ========================================================================== */
.video-strip { padding: 60px 0; background: #fff; }
.video-strip-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.video-card {
	background: #fff;
	border-radius: var(--r);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.video-card video, .video-card iframe {
	width: 100%;
	aspect-ratio: 16/9;
	display: block;
	border: 0;
	background: #000;
}
.video-card-body { padding: 16px 20px 20px; }
.video-card-body h4 { font-size: 16px; color: var(--navy); margin: 0 0 4px; }
.video-card-body p { font-size: 14px; margin: 0; }

/* ==========================================================================
   TRANSPARENCY
   ========================================================================== */
.transparency {
	background: linear-gradient(180deg, #f3f7fc 0%, #fff 100%);
	padding: 80px 0;
}
.trans-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.trans-card {
	background: #fff;
	border-radius: var(--r);
	padding: 28px 22px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform .25s, box-shadow .25s;
}
.trans-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trans-icon {
	width: 64px; height: 64px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
.trans-card h3 { font-size: 17px; margin-bottom: 6px; }
.trans-card p { font-size: 14px; margin: 0; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works { padding: 80px 0; }
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.step {
	background: #fff;
	border-radius: var(--r);
	padding: 28px 24px;
	border: 2px solid var(--line);
	position: relative;
	transition: border-color .2s;
}
.step:hover { border-color: var(--orange); }
.step-num {
	font-family: 'Poppins';
	font-weight: 800;
	font-size: 28px;
	color: var(--orange);
	margin-bottom: 8px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; margin: 0; }

/* ==========================================================================
   VOLUNTEER BANNER
   ========================================================================== */
.volunteer-banner { padding: 80px 0; background: #fff; }
.volunteer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.volunteer-img img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vol-list {
	list-style: none;
	padding: 0;
	margin: 18px 0 24px;
}
.vol-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-weight: 500;
	color: var(--text);
}
.vol-list i { color: var(--orange); font-size: 20px; }
.vol-list.big li { font-size: 16px; padding: 10px 0; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: 80px 0; background: #f3f7fc; }
.test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.test-card {
	background: #fff;
	border-radius: var(--r);
	padding: 28px 26px;
	box-shadow: var(--shadow-sm);
	position: relative;
}
.test-card .quote {
	font-size: 38px;
	color: var(--orange);
	opacity: .25;
	position: absolute;
	top: 16px;
	right: 22px;
}
.test-card p { color: var(--text); font-size: 15.5px; line-height: 1.7; }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-family: 'Poppins';
}
.test-author strong { display: block; color: var(--navy); }
.test-author small { color: var(--muted); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
	/* Self-contained warm gradient + soft paw-pattern glow — no external image. */
	background:
		radial-gradient(1200px 400px at 80% -10%, rgba(255,107,53,.28), transparent 60%),
		radial-gradient(900px 380px at 10% 120%, rgba(255,61,110,.22), transparent 60%),
		linear-gradient(135deg, #0a2540 0%, #14304f 100%);
	color: #fff;
	padding: 80px 0;
	text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 580px; margin: 0 auto 28px; }

/* ==========================================================================
   PAGE HERO (about / causes / contact / etc)
   ========================================================================== */
.page-hero {
	padding: 70px 0 50px;
	background: linear-gradient(180deg, rgba(255,107,53,.06) 0%, var(--bg) 100%);
	text-align: center;
}
.page-hero p { font-size: 17px; max-width: 700px; margin: 12px auto 0; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.story { padding: 70px 0; background: #fff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img img { border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.mission { padding: 80px 0; }
.mission-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.mission-card {
	background: #fff;
	border-radius: var(--r);
	padding: 32px 28px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform .25s, box-shadow .25s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mission-icon {
	width: 70px; height: 70px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin: 0 auto 18px;
}

.impact { padding: 80px 0; background: #f3f7fc; }
.impact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.impact-card {
	background: #fff;
	border-radius: var(--r);
	padding: 32px 28px;
	text-align: center;
	box-shadow: var(--shadow-sm);
}
.impact-card h3 {
	font-size: 36px;
	color: var(--orange);
	margin: 0 0 6px;
}

.team { padding: 80px 0; background: #fff; }
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.team-card {
	background: #fff;
	border-radius: var(--r);
	text-align: center;
	padding: 24px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 16px;
	border: 4px solid #fff;
	box-shadow: 0 6px 20px rgba(10,37,64,.10);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin: 0 0 4px; font-size: 17px; }
.team-card span { color: var(--orange); font-weight: 600; font-size: 13px; }
.team-card p { font-size: 13.5px; margin-top: 8px; }

/* ==========================================================================
   CAUSE DETAIL
   ========================================================================== */
.cause-hero { padding: 50px 0 70px; }
.cause-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 50px;
	align-items: start;
}
.cause-main-image {
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: var(--shadow-md);
}
.cause-main-image img { width: 100%; height: 100%; object-fit: cover; }
.cause-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}
.cause-thumbs .thumb {
	width: 70px; height: 70px;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	padding: 0;
	transition: border-color .15s;
}
.cause-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cause-thumbs .thumb.active { border-color: var(--orange); }

.donation-panel {
	background: #fff;
	border-radius: var(--r-lg);
	padding: 32px;
	box-shadow: var(--shadow-md);
}
.cause-cat-tag {
	display: inline-block;
	background: rgba(255,107,53,.12);
	color: var(--orange);
	font-weight: 700;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: 5px 12px;
	border-radius: 50px;
	margin-bottom: 14px;
}
.donation-panel h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }
.lead-price { font-family: 'Poppins'; font-size: 16px; font-weight: 800; color: var(--orange); margin: 0 0 8px; }
.lead-price small { font-size: 13px; font-weight: 600; color: var(--muted); }
.lead-desc { font-size: 14.5px; margin: 0 0 18px; }

/* Impact pills — "Feed N dogs" primary, rupees secondary */
.amount-pills {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 12px;
}
@media (max-width: 899px) { .amount-pill:last-child:nth-child(odd) { grid-column: 1 / -1; } }
@media (min-width: 900px) { .amount-pills { grid-template-columns: repeat(3, 1fr); } }
.amount-pill {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: 58px;
	background: #fff;
	border: 2px solid var(--line);
	padding: 10px 8px;
	border-radius: 12px;
	cursor: pointer;
	transition: all .15s;
	font-family: inherit;
}
.amount-pill:hover { border-color: var(--orange); }
.amount-pill.active { background: var(--orange); border-color: var(--orange); }
.pill-impact { font-weight: 800; font-size: 13.5px; color: var(--navy); }
.pill-amt { font-size: 13px; font-weight: 700; color: var(--muted); }
.amount-pill.active .pill-impact, .amount-pill.active .pill-amt { color: #fff; }
.pill-tag { position: absolute; top: -8px; right: 8px; background: var(--pink); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 50px; }

.donation-form .form-row, .contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}
.donation-form label, .contact-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 12px;
}
.donation-form label small, .contact-form label small { color: var(--muted); font-weight: 500; }
.donation-form input, .donation-form textarea, .donation-form select,
.contact-form input, .contact-form textarea, .contact-form select {
	display: block;
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 14.5px;
	margin-top: 4px;
	background: #fff;
	color: var(--text);
	transition: border-color .15s, box-shadow .15s;
}
.donation-form input:focus, .donation-form textarea:focus, .donation-form select:focus,
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
	outline: 0;
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(255,107,53,.15);
}
.donation-form .full { grid-column: 1 / -1; }

.trust-row {
	display: flex;
	justify-content: space-around;
	margin-top: 18px;
	font-size: 12.5px;
	color: var(--muted);
	font-weight: 600;
}
.trust-row i { color: var(--orange); margin-right: 4px; }

.what-card {
	background: #f7f8fa;
	border-radius: 14px;
	padding: 16px;
	display: flex;
	gap: 16px;
	align-items: center;
	margin-top: 22px;
	border: 1px solid var(--line);
}
.what-card img { width: 110px; height: 110px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.what-card h4 { font-size: 14px; margin: 0 0 4px; }
.what-card p { font-size: 13px; margin: 0; line-height: 1.5; }

.cause-body-section { padding: 50px 0 80px; background: #fff; }
.cause-body-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 50px;
	align-items: start;
}
.cause-description h2 { margin: 8px 0 20px; }
.rich-text { font-size: 15.5px; line-height: 1.8; color: var(--text); }
.rich-text p { color: var(--text); margin-bottom: 14px; }

.cause-video-side video,
.cause-video-side iframe {
	width: 100%;
	border-radius: var(--r);
	border: 0;
	aspect-ratio: 16/9;
	background: #000;
}

.related { padding: 80px 0; background: #f3f7fc; }

/* ==========================================================================
   CONTACT / VOLUNTEER
   ========================================================================== */
.contact-section { padding: 60px 0 80px; }
.contact-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 50px;
	align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info h3 { margin-top: 32px; font-size: 18px; }

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
}
.contact-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 14px;
}
.contact-list i { color: var(--orange); font-size: 18px; flex-shrink: 0; }
.contact-list.big li {
	background: #fff;
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 12px;
	box-shadow: var(--shadow-sm);
}
.contact-list.big i { font-size: 22px; }
.contact-list.big strong { display: block; font-size: 13px; color: var(--navy); }
.contact-list.big span, .contact-list.big a { color: var(--muted); font-size: 14.5px; }

.contact-form {
	background: #fff;
	border-radius: var(--r-lg);
	padding: 36px 36px 30px;
	box-shadow: var(--shadow-md);
}
.contact-form h2 { margin-bottom: 22px; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-section { padding: 60px 0; background: var(--bg); }
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.gallery-cell {
	display: block;
	aspect-ratio: 1;
	border-radius: var(--r-sm);
	overflow: hidden;
	transition: transform .2s, box-shadow .2s;
}
.gallery-cell:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 64px 0 0; margin-top: 40px; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,.7); margin-top: 14px; max-width: 320px; }
.footer-col h5 {
	color: #fff;
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: rgba(255,255,255,.78); transition: color .15s; }
.footer-col a:hover { color: var(--orange); }

.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background .15s, transform .15s;
}
.socials a:hover { background: var(--orange); transform: translateY(-2px); }

.footer-bottom { background: #061a30; padding: 18px 0; }
.footer-bottom-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }
.footer-bottom ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,.6); font-size: 13px; }
.footer-bottom a:hover { color: var(--orange); }

/* ==========================================================================
   FLOATING DONATE BUTTON
   ========================================================================== */
.float-donate {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 80;
	background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
	color: #fff;
	padding: 14px 22px;
	border-radius: 50px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 28px rgba(255,107,53,.45);
	animation: pulse 2.4s ease-in-out infinite;
	font-size: 15px;
}
.float-donate i { font-size: 18px; }
@keyframes pulse {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-3px) scale(1.03); }
}

/* WP-specific: admin bar offset for sticky header */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

/* ==========================================================================
   UPI FALLBACK
   ========================================================================== */
.upi-fallback {
	margin-top: 18px;
	padding: 12px 16px;
	background: #f7f8fa;
	border-radius: 12px;
	border: 1px solid var(--line);
}
.upi-fallback summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 8px;
}
.upi-fallback summary i { color: var(--orange); }
.upi-content { display: flex; gap: 16px; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.upi-content img { width: 140px; height: 140px; flex-shrink: 0; border-radius: 10px; background: #fff; padding: 8px; border: 1px solid var(--line); }
.upi-content p { margin: 0 0 6px; font-size: 14px; color: var(--text); }
.upi-content code { background: #fff; padding: 3px 8px; border-radius: 6px; font-size: 13px; }
.upi-content .muted { color: var(--muted); font-size: 12.5px; line-height: 1.5; }

/* ==========================================================================
   THANK YOU / FAILED / TRACK PAGES
   ========================================================================== */
.celebration-page { padding: 80px 0; text-align: center; }
.celebration-icon {
	width: 92px; height: 92px;
	margin: 0 auto 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	background: linear-gradient(135deg, #1ba373, #06b6d4);
	color: #fff;
	box-shadow: 0 12px 32px rgba(27, 163, 115, .35);
	animation: pop .5s ease;
}
.celebration-icon.failed { background: linear-gradient(135deg, #c0392b, #e2531c); box-shadow: 0 12px 32px rgba(192, 57, 43, .35); }
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.celebration-page h1 { margin-bottom: 12px; }
.celebration-page > .container > p { font-size: 17px; max-width: 620px; margin: 12px auto 28px; color: var(--muted); }
.receipt-card {
	max-width: 520px;
	margin: 36px auto 28px;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	padding: 26px 28px;
	text-align: left;
	border: 1px solid var(--line);
}
.receipt-card h3 { font-size: 16px; margin-bottom: 14px; color: var(--navy); }
.receipt-card dl { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px 14px; margin: 0; font-size: 14px; }
.receipt-card dt { color: var(--muted); font-weight: 500; }
.receipt-card dd { margin: 0; color: var(--text); font-weight: 600; }
.receipt-card .total { grid-column: 1 / -1; padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.receipt-card .total .lbl { color: var(--navy); font-weight: 700; font-size: 15px; }
.receipt-card .total .amt { color: var(--orange); font-family: 'Poppins'; font-weight: 800; font-size: 24px; }
.celebration-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* Track-donation page */
.lookup-form {
	max-width: 480px;
	margin: 0 auto 30px;
	display: flex;
	gap: 10px;
	flex-direction: column;
}
.lookup-form input {
	padding: 14px 16px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
}
.lookup-form input:focus {
	outline: 0;
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(255,107,53,.15);
}
.lookup-table {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.lookup-table th, .lookup-table td { padding: 14px 16px; text-align: left; font-size: 14px; }
.lookup-table th { background: #f3f7fc; color: var(--navy); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.lookup-table tr + tr td { border-top: 1px solid var(--line); }
.lookup-table .status { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.lookup-success {
	margin: 18px auto 0;
	padding: 18px 22px;
	background: linear-gradient(135deg, #d1f4e3, #a7e9c5);
	border-radius: 14px;
	color: #0e6c4a;
	text-align: center;
	font-weight: 600;
	font-size: 15px;
	max-width: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.lookup-success i { font-size: 22px; color: #1ba373; }
.lookup-success.error { background: #fee2e2; color: #b1281b; }
.lookup-success.error i { color: #c0392b; }
.lookup-table .status-success  { background: #d1f4e3; color: #1ba373; }
.lookup-table .status-pending  { background: #fef3c7; color: #a06b00; }
.lookup-table .status-failed   { background: #fee2e2; color: #c0392b; }
.lookup-table .status-refunded { background: #e0e7ff; color: #4338ca; }
@media (max-width: 600px) {
	.lookup-table { font-size: 12.5px; }
	.lookup-table th, .lookup-table td { padding: 10px 12px; }
}

/* ==========================================================================
   POLISH LAYER · animations, dividers, hero blobs, ticker, donor wall
   ========================================================================== */

/* Scroll-reveal initial state — JS adds .visible to fade in */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
	will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* SVG wave dividers between sections */
.wave-divider {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }
.wave-divider.flip svg { transform: rotate(180deg); }

/* Hero polish — blobs + paw decorations */
.hero { isolation: isolate; }
.hero::before, .hero::after {
	content: '';
	position: absolute;
	z-index: -1;
	background: url('../images/blob.svg') center/contain no-repeat;
	pointer-events: none;
}
.hero::before { width: 480px; height: 480px; top: -120px; right: -120px; }
.hero::after  { width: 360px; height: 360px; bottom: -100px; left: -120px; opacity: .7; }
.hero-paw {
	position: absolute;
	font-size: 38px;
	color: var(--orange);
	opacity: .14;
	pointer-events: none;
	animation: float 6s ease-in-out infinite;
}
.hero-paw.p1 { top: 12%;  left: 6%;  transform: rotate(-15deg); }
.hero-paw.p2 { top: 28%;  right: 4%; transform: rotate(20deg);  animation-delay: 1s; }
.hero-paw.p3 { bottom: 14%; left: 42%; transform: rotate(-8deg); animation-delay: 2s; }
@keyframes float {
	0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
	50%      { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}
.hero-paw.p1 { --rot: -15deg; }
.hero-paw.p2 { --rot: 20deg; }
.hero-paw.p3 { --rot: -8deg; }

/* Live counter badge above hero card */
.live-counter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border-radius: 50px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	box-shadow: 0 4px 14px rgba(10,37,64,.10);
	margin-bottom: 16px;
}
.live-counter .pulse {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: #1ba373;
	box-shadow: 0 0 0 4px rgba(27,163,115,.2);
	animation: livepulse 1.6s ease-in-out infinite;
}
@keyframes livepulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(27,163,115,.2); }
	50%      { box-shadow: 0 0 0 8px rgba(27,163,115,.05); }
}
.live-counter strong { color: var(--orange); }

/* Donor activity ticker — bottom-right toast that cycles */
.donor-toast {
	position: fixed;
	bottom: 100px;
	left: 24px;
	z-index: 70;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 50px;
	padding: 10px 18px 10px 10px;
	box-shadow: 0 8px 24px rgba(10,37,64,.14);
	border: 1px solid var(--line);
	max-width: 320px;
	transform: translateX(-120%);
	opacity: 0;
	transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s;
	pointer-events: none;
}
.donor-toast.show { transform: translateX(0); opacity: 1; }
.donor-toast .dt-avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--pink));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}
.donor-toast .dt-text { font-size: 13px; line-height: 1.35; color: var(--text); }
.donor-toast .dt-text strong { color: var(--navy); font-weight: 700; }
.donor-toast .dt-text small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }
@media (max-width: 768px) {
	.donor-toast { bottom: 84px; left: 12px; right: 12px; max-width: none; }
}

/* Cause card — tilt + shine effect */
.cause-card { transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s; transform-style: preserve-3d; will-change: transform; position: relative; }
.cause-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--r);
	background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,.4) 100%);
	opacity: 0;
	transition: opacity .35s;
	pointer-events: none;
	z-index: 2;
}
.cause-card:hover::before { opacity: 1; }
.cause-card .cause-helped-today {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0,0,0,.65);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 4px;
	z-index: 2;
	letter-spacing: .03em;
}
.cause-card .cause-helped-today i { color: #ff6b35; font-size: 11px; }

/* Tilt on hover (subtle) */
@media (hover: hover) {
	.cause-card:hover { transform: translateY(-6px) rotateX(2deg) rotateY(-2deg); box-shadow: 0 24px 48px rgba(10,37,64,.18); }
}

/* Filter pill — animated underline */
.cause-filters .filter-pill { position: relative; }

/* Press / trust-badge strip */
.press-strip {
	padding: 50px 0;
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.press-strip .label {
	text-align: center;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--muted);
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.press-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 28px;
	align-items: center;
	max-width: 980px;
	margin: 0 auto;
}
.press-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--navy);
	opacity: .55;
	transition: opacity .2s, transform .2s;
	letter-spacing: -.02em;
}
.press-item:hover { opacity: 1; transform: translateY(-2px); }
.press-item .press-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.press-item i { color: var(--orange); font-size: 22px; }
@media (max-width: 768px) { .press-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

/* Donor wall — rotating avatars */
.donor-wall { padding: 70px 0 80px; background: #fff; }
.donor-wall .wall-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	max-width: 760px;
	margin: 0 auto 24px;
}
.donor-wall .wall-avatar {
	width: 50px; height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--pink));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-family: 'Poppins';
	font-size: 16px;
	border: 3px solid #fff;
	box-shadow: 0 4px 10px rgba(10,37,64,.10);
	transition: transform .25s;
}
.donor-wall .wall-avatar:hover { transform: scale(1.15) translateY(-3px); z-index: 2; }
.donor-wall .wall-avatar.alt-1 { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.donor-wall .wall-avatar.alt-2 { background: linear-gradient(135deg, #1ba373, #0f766e); }
.donor-wall .wall-avatar.alt-3 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.donor-wall .wall-avatar.alt-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.donor-wall .more-pill {
	width: auto;
	padding: 0 16px;
	background: var(--navy);
	font-size: 14px;
}

/* Birthday CTA */
.birthday-cta {
	position: relative;
	padding: 90px 0;
	background:
		radial-gradient(ellipse at 80% 30%, rgba(255,107,53,.18), transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(6,182,212,.14), transparent 50%),
		#fff7f0;
	overflow: hidden;
	text-align: center;
}
.birthday-cta::before {
	content: '🎂';
	position: absolute;
	font-size: 200px;
	opacity: .06;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.birthday-cta .container { position: relative; }
.birthday-cta h2 { font-size: clamp(28px, 4vw, 42px); }
.birthday-cta p { font-size: 17px; max-width: 600px; margin: 12px auto 28px; }
.birthday-perks {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	max-width: 880px;
	margin: 38px auto 36px;
}
.birthday-perk {
	background: #fff;
	border-radius: 16px;
	padding: 22px 18px;
	box-shadow: 0 6px 20px rgba(10,37,64,.06);
	transition: transform .25s, box-shadow .25s;
}
.birthday-perk:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(10,37,64,.12); }
.birthday-perk .icon {
	width: 56px; height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--pink));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 12px;
}
.birthday-perk h4 { font-size: 14px; margin: 0 0 4px; }
.birthday-perk p { font-size: 12.5px; margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .birthday-perks { grid-template-columns: repeat(2, 1fr); } }

/* Newsletter strip */
.newsletter {
	padding: 70px 0;
	background: linear-gradient(135deg, var(--navy) 0%, #14304f 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.newsletter::before {
	content: '';
	position: absolute;
	width: 400px; height: 400px;
	background: url('../images/blob.svg') center/contain no-repeat;
	top: -100px; right: -100px;
	opacity: .5;
	filter: hue-rotate(180deg);
}
.newsletter .container { position: relative; text-align: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.78); max-width: 560px; margin: 12px auto 26px; }
.newsletter form {
	max-width: 460px;
	margin: 0 auto;
	display: flex;
	gap: 8px;
	background: #fff;
	border-radius: 50px;
	padding: 6px;
}
.newsletter input {
	flex: 1;
	border: 0;
	background: none;
	padding: 12px 18px;
	font-size: 15px;
	font-family: inherit;
	color: var(--text);
	outline: 0;
}
.newsletter button {
	background: linear-gradient(135deg, var(--orange), var(--pink));
	color: #fff;
	border: 0;
	padding: 12px 22px;
	border-radius: 50px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

/* Bottom mobile nav (Thaagam-style) — fixed-height so we can stack against it */
:root { --bottom-nav-height: 64px; }
.bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 -4px 16px rgba(10,37,64,.06);
	padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.bottom-nav-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: 500px;
	margin: 0 auto;
	align-items: center;
}
.bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 6px 4px;
	color: var(--muted);
	font-size: 10.5px;
	font-weight: 600;
	transition: color .2s;
}
.bottom-nav-item i { font-size: 22px; line-height: 1; }
.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--orange); }
.bottom-nav-item.heart {
	background: linear-gradient(135deg, var(--orange), var(--pink));
	color: #fff;
	width: 56px; height: 56px;
	border-radius: 50%;
	margin: -22px auto 0;
	box-shadow: 0 8px 18px rgba(255,107,53,.45);
	font-size: 0;
}
.bottom-nav-item.heart i { font-size: 26px; }
.bottom-nav-item.heart:hover { color: #fff; transform: translateY(-2px); }
@media (max-width: 768px) {
	.bottom-nav { display: block; }
	.float-donate { display: none; }
	body { padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px)); }
}

/* Sticky donate bar (mobile cause page) — sits directly on top of bottom-nav */
.sticky-donate {
	display: none;
	position: fixed;
	bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
	left: 0; right: 0;
	z-index: 85;
	background: #fff;
	border-top: 1px solid var(--line);
	padding: 10px 16px;
	box-shadow: 0 -4px 14px rgba(10,37,64,.10);
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.sticky-donate .sd-price {
	font-family: 'Poppins';
	font-weight: 800;
	font-size: 18px;
	color: var(--orange);
}
.sticky-donate .sd-price small { color: var(--muted); font-size: 12px; font-weight: 500; }
@media (max-width: 768px) {
	body.single-cause .sticky-donate { display: flex; }
	body.single-cause { padding-bottom: calc(var(--bottom-nav-height) + 76px + env(safe-area-inset-bottom, 0px)); }
}

/* Confetti container */
.confetti {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 999;
	overflow: hidden;
}
.confetti span {
	position: absolute;
	top: -20px;
	width: 10px;
	height: 14px;
	border-radius: 3px;
	animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
	0%   { transform: translateY(0) rotate(0); opacity: 1; }
	100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Heart pulse on like-style buttons */
.btn-primary i.ri-heart-fill { transition: transform .2s; }
.btn-primary:hover i.ri-heart-fill { animation: heartbeat 1s ease infinite; }
@keyframes heartbeat {
	0%, 100% { transform: scale(1); }
	30%      { transform: scale(1.18); }
	60%      { transform: scale(.96); }
}

/* Section spacing tightening on small screens */
@media (max-width: 768px) {
	.donor-wall, .press-strip, .birthday-cta, .newsletter { padding: 50px 0; }
	.donor-toast .dt-text { font-size: 12px; }
}

/* Modal backdrop dim — for mobile drawer */
body.no-scroll { overflow: hidden; }

/* ── Give once / Give monthly toggle ── */
.freq-toggle {
	display: flex;
	gap: 6px;
	background: #f0f2f5;
	border-radius: 12px;
	padding: 5px;
	margin-bottom: 16px;
}
.freq-opt {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 11px 10px;
	border-radius: 9px;
	font-weight: 700;
	font-size: 14px;
	font-family: inherit;
	color: var(--muted);
	cursor: pointer;
	transition: background .2s, color .2s, box-shadow .2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.freq-opt.active {
	background: #fff;
	color: var(--orange);
	box-shadow: 0 2px 8px rgba(10,37,64,.10);
}
.freq-note {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff7ed;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 12.5px;
	color: #9a5418;
	margin: 0 0 16px;
}
.freq-note i { color: var(--orange); }

/* ── Accessibility ── */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--navy);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 10px 0;
	font-weight: 700;
}
.skip-link:focus {
	left: 0;
	outline: 3px solid var(--orange);
}
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
	outline: 3px solid rgba(255,107,53,.6);
	outline-offset: 2px;
	border-radius: 6px;
}

/* ==========================================================================
   MOBILE-FIRST POLISH
   ========================================================================== */

/* Active-press feedback on every primary CTA. iOS-friendly. */
.btn, .filter-pill, .amount-pill, .freq-opt,
.bottom-nav-item, .float-donate, .pwa-install-btn, .share-btn,
.upi-fallback summary {
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active, .filter-pill:active, .amount-pill:active,
.freq-opt:active, .share-btn:active, .pwa-install-btn:active {
	transform: scale(0.97);
}

/* Larger touch targets (Apple HIG: 44pt). */
@media (max-width: 768px) {
	.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 40px; }
	.btn    { min-height: 44px; }
	.btn-lg { min-height: 52px; padding: 16px 24px; }
	.filter-pill { min-height: 40px; padding: 10px 16px; }
	.bottom-nav-item { min-height: 44px; }
	input, select, textarea {
		font-size: 16px !important; /* prevents iOS zoom-on-focus */
	}
}

/* UPI big button — high contrast, hard to miss */
.btn-upi {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	background: linear-gradient(135deg, #00875A 0%, #0e7490 100%);
	color: #fff;
	padding: 13px 18px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 15px;
	margin-top: 12px;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0, 135, 90, .25);
	transition: transform .15s, box-shadow .15s;
}
.btn-upi:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 135, 90, .35); color: #fff; }
.btn-upi i { font-size: 20px; margin-right: 6px; }
.btn-upi small { font-size: 11px; font-weight: 500; opacity: .85; margin-top: 2px; letter-spacing: .03em; }

/* Share row */
.share-row {
	display: flex;
	gap: 8px;
	margin-top: 14px;
	align-items: stretch;
}
.share-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 12px;
	background: #f3f7fc;
	border: 0;
	font-weight: 600;
	font-size: 14px;
	color: var(--navy);
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
}
.share-btn:hover { background: #e7eef7; color: var(--navy); }
.share-btn.wa {
	background: #25D366;
	color: #fff;
	flex: 0 0 56px;
	font-size: 22px;
}
.share-btn.wa:hover { background: #1ebe5a; color: #fff; }

/* Floating WhatsApp button — bottom-left (so it doesn't collide with floating donate) */
.float-whatsapp {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 78;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
	text-decoration: none;
}
.float-whatsapp:hover { color: #fff; transform: translateY(-2px); }
.float-whatsapp .fw-pulse {
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 3px solid rgba(37, 211, 102, .5);
	animation: fwpulse 2s ease-in-out infinite;
	pointer-events: none;
}
@keyframes fwpulse {
	0%   { transform: scale(1);    opacity: .9; }
	100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 768px) {
	.float-whatsapp {
		bottom: calc(var(--bottom-nav-height) + 16px + env(safe-area-inset-bottom, 0px));
		left: 16px;
		width: 50px;
		height: 50px;
		font-size: 25px;
	}
	body.single-cause .float-whatsapp {
		display: none; /* donate page: WhatsApp lives in the help-line; sticky pay bar owns this corner */
	}
}

/* PWA install prompt — bottom toast */
.pwa-install-prompt {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translate(-50%, 120%);
	transition: transform .35s cubic-bezier(.34,1.56,.64,1);
	z-index: 95;
	max-width: 380px;
	width: calc(100% - 32px);
}
.pwa-install-prompt.show { transform: translate(-50%, 0); }
.pwa-install-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 12px 40px rgba(10, 37, 64, .18);
	border: 1px solid var(--line);
}
.pwa-install-inner img { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.pwa-install-text { flex: 1; line-height: 1.3; }
.pwa-install-text strong { display: block; color: var(--navy); font-size: 14px; }
.pwa-install-text small { color: var(--muted); font-size: 12px; }
.pwa-install-btn {
	background: linear-gradient(135deg, var(--orange), var(--pink));
	color: #fff;
	border: 0;
	padding: 10px 16px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	font-family: inherit;
}
.pwa-install-close {
	background: none;
	border: 0;
	color: var(--muted);
	font-size: 22px;
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
}
@media (max-width: 768px) {
	.pwa-install-prompt {
		bottom: calc(var(--bottom-nav-height) + 12px + env(safe-area-inset-bottom, 0px));
	}
	body.single-cause .pwa-install-prompt {
		display: none; /* never interrupt a donation with an install prompt */
	}
}

/* Cause filters on mobile: horizontal scroll with snap */
@media (max-width: 768px) {
	.cause-filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		justify-content: flex-start;
		gap: 8px;
		padding: 6px 18px 14px;
		margin-left: -18px;
		margin-right: -18px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.cause-filters::-webkit-scrollbar { display: none; }
	.filter-pill {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}
}

/* iOS dynamic-viewport-height fix for any 100vh elements (none currently
   use 100vh — keep this here in case future sections want it) */
@supports (height: 100dvh) {
	.is-full-vh { height: 100dvh !important; }
}

/* Cleaner h2 underline accent on section heads */
.section-head h2 { position: relative; }
.section-head h2::after {
	content: '';
	display: block;
	width: 56px;
	height: 4px;
	background: linear-gradient(90deg, var(--orange), var(--pink));
	border-radius: 4px;
	margin: 14px auto 0;
}

/* ==========================================================================
   RESCUE HOMEPAGE — hero, helpline, goal, story, money breakdown
   ========================================================================== */

/* ── Rescue hero ── */
.rescue-hero { position: relative; overflow: hidden; padding: 56px 0 72px; background: linear-gradient(180deg, #fff6ef 0%, var(--bg) 100%); }
.rescue-hero .hero-grid { position: relative; z-index: 2; align-items: center; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 1; pointer-events: none; }
.hero-blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,107,53,.35), transparent 68%); top: -120px; right: -80px; }
.hero-blob-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,61,110,.22), transparent 68%); bottom: -140px; left: -120px; }
.rescue-hero h1 { font-size: clamp(30px, 4.6vw, 52px); }
.rescue-hero h1 .accent { display: block; }
.rescue-hero .hero-lead { font-size: 17.5px; max-width: 540px; }

/* Report-injured-dog button (co-primary, emergency red) */
.btn-rescue { background: #fff; color: var(--navy); border: 2px solid #ffd7c9; box-shadow: 0 6px 18px rgba(255,107,53,.14); align-items: center; }
.btn-rescue i { color: #e2531c; font-size: 20px; }
.btn-rescue span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; text-align: left; }
.btn-rescue span small { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .01em; }
.btn-rescue:hover { border-color: var(--orange); box-shadow: 0 10px 24px rgba(255,107,53,.22); }

/* Hero visual + illustration + floating goal card */
.hero-visual { position: relative; }
.hero-illustration { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-illustration svg { width: 100%; height: auto; display: block; }

/* Uploadable photos + placeholder frames (hero & story) */
.hero-photo, .story-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.media-ph {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 10px; text-align: center; aspect-ratio: 4 / 3; padding: 22px; border-radius: inherit;
	background: linear-gradient(160deg, #fff1e8, #ffe1cd);
	border: 2px dashed #ffbfa3; color: var(--muted);
}
.media-ph-ic { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,107,53,.14); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.media-ph-txt { font-weight: 700; color: var(--navy); font-size: 15px; }
.media-ph-link { font-size: 13px; font-weight: 600; color: var(--orange); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.media-ph-link:hover { color: var(--pink); }
.media-ph-hero .media-ph-ic { width: 76px; height: 76px; font-size: 38px; }
.media-ph-story { padding: 16px; gap: 8px; }
.media-ph-story .media-ph-ic { width: 46px; height: 46px; font-size: 22px; }
.hero-goal-card {
	position: absolute; left: -14px; bottom: -22px; width: min(260px, 74%);
	background: #fff; border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-lg);
	border: 1px solid var(--line);
}
.hgc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.hgc-label { font-size: 12px; font-weight: 700; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.hgc-label i { color: var(--orange); }
.hgc-pct { font-family: 'Poppins',sans-serif; font-weight: 800; color: var(--orange); font-size: 18px; }
.hgc-bar { height: 9px; border-radius: 50px; background: #f0f2f5; overflow: hidden; }
.hgc-bar span { display: block; height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--orange), var(--pink)); transition: width .8s ease; }
.hgc-nums { margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.hgc-nums strong { color: var(--navy); font-family: 'Poppins'; font-size: 15px; margin-right: 4px; }

/* ── Emergency helpline band ── */
.helpline-band { background: linear-gradient(100deg, #e2531c, #ff6b35); color: #fff; }
.helpline-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 24px; flex-wrap: wrap; }
.helpline-left { display: flex; align-items: center; gap: 14px; }
.helpline-pulse { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; position: relative; }
.helpline-pulse::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); animation: hlpulse 1.8s ease-out infinite; }
@keyframes hlpulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.helpline-copy { display: flex; flex-direction: column; line-height: 1.25; }
.helpline-copy strong { font-size: 16px; }
.helpline-copy span { font-size: 13px; opacity: .92; }
.helpline-actions { display: flex; gap: 10px; align-items: center; }
.helpline-call, .helpline-wa { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 11px 18px; border-radius: 50px; white-space: nowrap; }
.helpline-call { background: #fff; color: #e2531c; font-size: 16px; }
.helpline-call:hover { color: #e2531c; transform: translateY(-1px); }
.helpline-wa { background: #1ebe5a; color: #fff; }
.helpline-wa:hover { color: #fff; transform: translateY(-1px); }

/* ── Monthly goal thermometer ── */
.goal-section { padding: 56px 0; background: var(--bg); }
.goal-card { background: #fff; border-radius: 22px; padding: 34px 36px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.goal-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.goal-head h2 { margin: 6px 0 0; font-size: clamp(22px, 3vw, 30px); }
.goal-cta { flex-shrink: 0; }
.goal-bar-wrap { margin: 6px 0 18px; }
.goal-bar { height: 26px; border-radius: 50px; background: #f0f2f5; overflow: hidden; box-shadow: inset 0 1px 3px rgba(10,37,64,.08); }
.goal-fill { display: flex; align-items: center; justify-content: flex-end; height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--orange), var(--pink)); min-width: 44px; transition: width 1s cubic-bezier(.25,.46,.45,.94); position: relative; }
.goal-fill-pct { color: #fff; font-weight: 800; font-size: 12.5px; padding-right: 12px; font-family: 'Poppins'; }
.goal-figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; }
.gf { background: #f8f9fb; border-radius: 12px; padding: 14px 16px; text-align: center; }
.gf strong { display: block; font-family: 'Poppins'; font-weight: 800; font-size: 20px; color: var(--navy); }
.gf span { font-size: 12.5px; color: var(--muted); }
.gf-accent { background: #fff2ec; }
.gf-accent strong { color: var(--orange); }
.goal-note { margin: 0; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.goal-note i { color: #1ba373; }

/* ── Rescue story (before → after) ── */
.rescue-story { padding: 80px 0; background: #fff; }
.story-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.story-step { position: relative; background: var(--bg); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.story-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story-illus { position: relative; }
.story-illus svg { width: 100%; height: auto; display: block; }
.story-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.95); color: var(--navy); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 5px 11px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.story-body { padding: 20px 22px 24px; }
.story-n { font-family: 'Poppins'; font-weight: 800; font-size: 13px; color: var(--orange); letter-spacing: .1em; }
.story-body h3 { margin: 4px 0 8px; font-size: 19px; }
.story-body p { font-size: 14px; margin: 0; }
.story-arrow { position: absolute; top: 42%; right: -18px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 12px rgba(255,107,53,.4); }
.story-cta { text-align: center; margin-top: 40px; }

/* ── Where money goes ── */
.money-goes { padding: 80px 0; background: linear-gradient(180deg, #f3f7fc, #fff); }
.money-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.money-intro h2 { margin-bottom: 12px; }
.money-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; }
.money-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.money-trust i { color: #1ba373; font-size: 17px; }
.money-bars { display: flex; flex-direction: column; gap: 18px; }
.money-row-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.money-row-label { font-size: 14.5px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.money-row-label i { color: var(--orange); font-size: 18px; }
.money-row-pct { font-family: 'Poppins'; font-weight: 800; color: var(--muted); font-size: 14px; }
.money-track { height: 12px; border-radius: 50px; background: #e9edf3; overflow: hidden; }
.money-track span { display: block; height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--orange), var(--pink)); transition: width 1s ease; }

/* ── Recent supporters chips (donate page social proof — real data only) ── */
.recent-supporters { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 0 16px; }
.recent-supporters::-webkit-scrollbar { display: none; }
.rs-chip { flex-shrink: 0; white-space: nowrap; font-size: 11.5px; font-weight: 600; color: var(--navy); background: #f7f8fa; border: 1px solid var(--line); border-radius: 50px; padding: 6px 12px; }
.rs-chip i { color: var(--pink); margin-right: 3px; }

/* ── Responsive ── */
@media (max-width: 900px) {
	.money-grid { grid-template-columns: 1fr; gap: 30px; }
	.story-track { grid-template-columns: 1fr; gap: 32px; }
	.story-arrow { top: auto; bottom: -26px; right: 50%; transform: translateX(50%) rotate(90deg); }
}
@media (max-width: 768px) {
	.rescue-hero { padding: 32px 0 48px; }
	.hero-cta { flex-direction: column; align-items: stretch; }
	.hero-cta .btn { justify-content: center; }
	.btn-rescue span { align-items: center; }
	.hero-visual { margin-top: 8px; }
	.hero-goal-card { position: static; width: 100%; margin-top: 14px; left: 0; bottom: 0; }
	.helpline-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
	.helpline-actions { width: 100%; }
	.helpline-call { flex: 1; justify-content: center; }
	.goal-card { padding: 24px 20px; }
	.goal-head { flex-direction: column; align-items: stretch; }
	.goal-cta { width: 100%; justify-content: center; }
	.goal-figures { grid-template-columns: 1fr; gap: 10px; }
	.gf { display: flex; align-items: baseline; justify-content: space-between; text-align: left; }
	.gf strong { font-size: 18px; }
	.rescue-story, .money-goes { padding: 50px 0; }
}

/* ══════════ Donation page conversion layer ══════════ */

/* Impact equivalence chip ("Your ₹35 = one warm meal") */
.impact-equiv { background: rgba(255,107,53,.08); border: 1px dashed var(--orange); border-radius: 10px; padding: 8px 12px; font-size: 13.5px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }

/* Mini impact counters (real, admin-controlled) */
.mini-impact { font-size: 12.5px; color: var(--muted); margin: 0 0 12px; }
.mini-impact i { color: var(--orange); margin-right: 4px; }
.mini-impact strong { color: var(--orange); font-family: 'Poppins', sans-serif; }

/* Frequency toggle sub-line */
.freq-opt { flex-direction: column; gap: 0; min-height: 48px; }
.freq-main { display: inline-flex; align-items: center; gap: 6px; }
.freq-sub { display: block; font-size: 10.5px; font-weight: 600; color: var(--muted); }
.freq-opt.active .freq-sub { color: rgba(255,255,255,.85); }

/* Quantity stepper + hidden amount + live impact line */
.donation-form .form-row.qty-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; position: relative; }
.ql-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.qty-stepper { display: flex; align-items: center; gap: 6px; }
.qty-stepper input { width: 64px; text-align: center; }
.qty-step { width: 48px; height: 48px; border-radius: 10px; border: 2px solid var(--line); background: #fff; font-size: 22px; font-weight: 700; color: var(--navy); cursor: pointer; font-family: inherit; transition: border-color .15s; }
.qty-step:hover { border-color: var(--orange); }
.amt-hidden { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.impact-line { font-size: 13.5px; color: var(--navy); margin: 2px 0 14px; min-height: 1.4em; }
.impact-line strong { color: var(--orange); }

/* Optional-field accordions */
.form-optional { margin: 0 0 12px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px 4px; }
.form-optional summary { min-height: 48px; display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; color: var(--navy); cursor: pointer; list-style: none; }
.form-optional summary::-webkit-details-marker { display: none; }
.form-optional summary i { color: var(--orange); }
.form-optional[open] { padding-bottom: 12px; }
.form-optional.attention { border-left: 3px solid var(--orange); }
.field-help { display: block; font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 5px; line-height: 1.45; }
.field-help i { color: var(--orange); font-size: 11px; }

/* Photo-proof promise box */
.proof-promise { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,107,53,.08); border: 1.5px solid rgba(255,107,53,.35); border-radius: 12px; padding: 12px 14px; margin: 16px 0 14px; }
.proof-promise-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 19px; }
.proof-promise-text strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.proof-promise-text p { font-size: 12.5px; line-height: 1.5; color: var(--text); margin: 0; }

/* Pay CTA + named rails */
.pay-cta { min-height: 56px; font-size: 17px; }
.pay-methods { text-align: center; font-size: 11.5px; color: var(--muted); margin: 8px 0 0; }

/* Statutory small print + human exit */
.reg-line { font-size: 11.5px; line-height: 1.6; color: var(--muted); text-align: center; margin: 10px 0 0; }
.reg-line i { color: var(--orange); margin-right: 3px; }
.reg-line strong { color: var(--navy); }
.help-line { display: flex; flex-direction: column; gap: 6px; align-items: center; margin: 12px 0 0; font-size: 12px; color: var(--muted); text-align: center; }
.help-wa { color: #25D366; font-weight: 700; font-size: 13px; }
.help-refund a { color: var(--orange); font-weight: 600; text-decoration: underline; }

/* UPI: demoted accordion (Razorpay on) / Step-2 (Razorpay off) */
.upi-direct { margin-top: 14px; }
.upi-direct summary { font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; min-height: 44px; display: flex; align-items: center; gap: 8px; list-style: none; }
.upi-direct summary::-webkit-details-marker { display: none; }
.upi-direct summary i { color: var(--orange); }
.upi-payee-note { font-size: 12px; font-weight: 600; color: var(--navy); text-align: center; margin: 10px 0 6px; }
.upi-payee-note i { color: #00875A; }
.upi-receipt-note { font-size: 11.5px; color: var(--muted); text-align: center; margin: 8px 0 0; line-height: 1.5; }
.upi-receipt-note a, .upi-content .muted a { color: #25D366; font-weight: 700; }
.upi-step-head { font-weight: 700; font-size: 14px; color: var(--navy); margin: 14px 0 6px; text-align: center; }

/* Sticky pay bar internals (live total + one-thumb pay) */
.sticky-donate { transition: transform .25s ease; }
.sticky-donate.is-hidden { transform: translateY(120%); }
.sd-info { min-width: 0; }
.sd-price { display: flex; align-items: baseline; gap: 2px; }
.sd-price small { color: var(--muted); font-size: 12px; font-weight: 600; }
.sd-units { color: var(--muted); font-size: 12px; display: block; white-space: nowrap; }
.sd-pay { flex: 1; max-width: 62%; min-height: 52px; }

/* Deep-link + anchor comfort */
#donationForm { scroll-margin-top: 90px; }

/* Impact stats band on the cause page */
.cause-stats-band { padding: 48px 0 0; }
.cause-stats-band .section-head { margin-bottom: 26px; }

/* Donate page: remove CTA competitors on mobile — the pay bar owns the bottom */
@media (max-width: 768px) {
	body.single-cause .bottom-nav { display: none; }
	body.single-cause .sticky-donate { bottom: 0; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
	body.single-cause { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
	.trust-row { display: grid; grid-template-columns: 1fr; gap: 6px; justify-items: start; font-size: 12.5px; }
}

/* Direct bank transfer rows (donate page) */
.bank-direct summary i { color: var(--orange); }
.bank-rows { background: #f7f8fa; border: 1px solid var(--line); border-radius: 10px; padding: 6px 14px; margin-top: 8px; }
.bank-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.bank-row:last-child { border-bottom: 0; }
.bank-row span { color: var(--muted); flex-shrink: 0; }
.bank-row b { font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; font-size: 13.5px; color: var(--navy); text-align: right; word-break: break-all; }

/* ── Thank-you page: share + monthly upsell ── */
.btn-wa { background: #1ebe5a; color: #fff; }
.btn-wa:hover { background: #17a94e; color: #fff; }
.ty-share, .ty-upsell { max-width: 560px; margin: 22px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; box-shadow: var(--shadow-sm); text-align: center; }
.ty-share h3, .ty-upsell h3 { margin: 0 0 6px; font-size: 18px; }
.ty-share p, .ty-upsell p { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.ty-share-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ty-upsell { display: flex; align-items: center; gap: 16px; text-align: left; border: 2px solid rgba(255,107,53,.35); background: #fff8f3; }
.ty-upsell-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.ty-upsell-body { flex: 1; }
.ty-upsell-body p { margin: 0; }
.ty-upsell .btn { flex-shrink: 0; }
@media (max-width: 560px) {
	.ty-upsell { flex-direction: column; text-align: center; }
	.ty-share-btns { flex-direction: column; }
}

/* ── Campaign / urgent appeal hero ── */
.campaign-hero { background: radial-gradient(900px 400px at 85% -10%, rgba(255,107,53,.35), transparent 60%), linear-gradient(135deg, #7a1425, #0a2540); color: #fff; padding: 56px 0 64px; }
.campaign-inner { max-width: 780px; }
.campaign-eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #ffd7c9; font-weight: 800; font-size: 12.5px; letter-spacing: .1em; padding: 8px 16px; border-radius: 50px; margin-bottom: 18px; }
.campaign-pulse { width: 10px; height: 10px; border-radius: 50%; background: #ff5a5a; position: relative; }
.campaign-pulse::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(255,90,90,.6); animation: hlpulse 1.4s ease-out infinite; }
.campaign-hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 12px; letter-spacing: -.01em; }
.campaign-lead { color: rgba(255,255,255,.88); font-size: 17px; max-width: 60ch; margin-bottom: 24px; }
.campaign-goal { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 18px 20px; margin-bottom: 24px; }
.campaign-track { height: 22px; border-radius: 50px; background: rgba(0,0,0,.3); overflow: hidden; margin-bottom: 12px; }
.campaign-track span { display: flex; align-items: center; justify-content: flex-end; height: 100%; min-width: 46px; padding-right: 10px; border-radius: 50px; background: linear-gradient(90deg, var(--orange), var(--pink)); font-weight: 800; font-size: 12px; color: #fff; transition: width 1s ease; }
.campaign-figs { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.8); }
.campaign-figs strong { color: #fff; font-family: 'Poppins', sans-serif; font-size: 16px; margin-right: 4px; }
.campaign-need strong { color: #ffb08e; }
.btn-urgent { background: linear-gradient(135deg, #ff5a3c, var(--pink)); color: #fff; box-shadow: 0 10px 26px rgba(255,61,110,.45); font-weight: 800; }
.btn-urgent:hover { transform: translateY(-2px); color: #fff; }
.campaign-hero .hero-trust { margin-top: 18px; }
.campaign-hero .trust-item { color: rgba(255,255,255,.85); }
.campaign-hero .trust-item i { color: #ffb08e; }
@media (max-width: 560px) {
	.campaign-hero { padding: 36px 0 46px; }
	.campaign-figs { flex-direction: column; gap: 4px; }
}

/* ── Header helpline chip ── */
.header-helpline { display: inline-flex; align-items: center; gap: 9px; padding: 6px 12px; border-radius: 12px; border: 1.5px solid #ffd7c9; background: #fff8f3; }
.header-helpline i { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 14px; }
.header-helpline .hh-txt { display: flex; flex-direction: column; line-height: 1.15; }
.header-helpline small { font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.header-helpline b { font-size: 13.5px; color: var(--navy); white-space: nowrap; }
.header-helpline:hover { border-color: var(--orange); }
@media (max-width: 1100px) { .header-helpline .hh-txt { display: none; } .header-helpline { padding: 8px; border-radius: 50%; } }
@media (max-width: 480px) { .header-helpline { display: none; } }

/* ── Volunteer quick-signup (homepage banner) ── */
.vol-quick { margin-top: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); max-width: 480px; }
.vol-quick .vq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.vol-quick input { width: 100%; border: 2px solid var(--line); border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 14.5px; color: var(--text); background: #fff; min-height: 48px; }
.vol-quick input:focus { outline: none; border-color: var(--orange); }
.vol-quick input[name="phone"] { margin-bottom: 10px; }
.vol-quick .vq-note { margin: 10px 0 0; font-size: 12px; color: var(--muted); line-height: 1.5; }
.vol-quick .vq-note i { color: #1ebe5a; }
.vol-quick .vq-note a { color: var(--orange); font-weight: 600; text-decoration: underline; }
@media (max-width: 560px) { .vol-quick { max-width: 100%; } .vol-quick .vq-row { grid-template-columns: 1fr; } }
