/* ===== DONATION PAGE - MOBILE-FIRST REDESIGN ===== */

/* Global Resets */
* { box-sizing: border-box; }

/* Mobile-first: All base styles are for mobile */

/* Hero Section */
.donation-hero {
	position: relative;
	padding: 5rem 1rem 2rem;
	background: linear-gradient(135deg, #fff6f2 0%, #ffe9e1 100%);
	border-bottom: 1px solid #f0e0db;
	text-align: center;
}

.donation-title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.8rem, 5vw, 3.4rem);
	letter-spacing: -1px;
	line-height: 1.1;
	color: #1a1a1a;
	position: relative;
	display: inline-block;
	padding-bottom: 0.5rem;
}

.donation-title:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 70px;
	height: 4px;
	background: #8c1424;
	border-radius: 4px;
}

.donation-lead {
	margin: 0 auto 1.2rem;
	max-width: 560px;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	color: var(--text-light);
	line-height: 1.55;
}

.trust-badges {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--text-light);
}

.trust-badges li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(255,255,255,0.8);
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	border: 1px solid #f2e4de;
}

.trust-badges svg {
	color: #2ca563;
	flex-shrink: 0;
}

/* Methods Section */
.donation-methods {
	padding: 3rem 1rem;
}

.methods-head {
	text-align: center;
	margin-bottom: 2rem;
}

.methods-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Method Cards */
.method-card {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: 0 4px 16px -8px rgba(90,25,30,.2);
}

.method-card-head {
	text-align: center;
	margin-bottom: 1.5rem;
}

.method-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffe9e1, #ffd4c4);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.8rem;
}

.method-icon svg {
	width: 24px;
	height: 24px;
}

.method-card-head h3 {
	margin: 0 0 0.4rem;
	font-size: 1.3rem;
	color: var(--brand);
}

.method-card-head .sub {
	margin: 0;
	color: var(--text-light);
	font-size: 0.9rem;
}

/* Wallets Minimal */
.wallets-minimal-bg {
	background: transparent;
	padding: 0;
	margin-top: 1.5rem;
}

.wallets-minimal-stack {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding: 0.5rem 0;
}

.wallet-card-minimal {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 16px;
	padding: 1.5rem 1rem;
	box-shadow: 0 2px 8px -4px rgba(90,25,30,.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	width: 100%;
	max-width: 100%;
}

/* Add separator between wallets */
.wallet-card-minimal:not(:last-child) {
	margin-bottom: 0.5rem;
	position: relative;
}

.wallet-card-minimal:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, transparent, #f2e3dc, transparent);
}

.wallet-logo-minimal {
	width: auto;
	height: auto;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

.wallet-logo-img {
	max-width: 120px !important;
	max-height: 50px !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	display: block;
}

.wallet-minimal-body {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.wallet-minimal-row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.8rem;
	width: 100%;
}

.wallet-minimal-number {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #5a1321;
	background: #fff7f3;
	padding: 1rem 1.2rem;
	border-radius: 12px;
	border: 1.5px solid #f3e1db;
	letter-spacing: 1px;
	text-align: center;
	word-break: break-all;
	width: 100%;
	box-sizing: border-box;
	text-decoration: none;
	display: block;
	transition: all 0.2s ease;
}

.wallet-minimal-number:hover {
	background: #ffeee5;
	border-color: #e3c8bf;
	transform: translateY(-1px);
}

.copy-btn-minimal {
	width: 100%;
	padding: 0.85rem 1rem;
	font-size: 1rem;
	border-radius: 12px;
	border: 1.5px solid #efd7cd;
	background: #fff;
	color: #7a4a45;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.2s;
	box-sizing: border-box;
	text-align: center;
}

.copy-btn-minimal:hover, .copy-btn-minimal:active {
	background: #fff0ea;
	color: #5a1321;
	border-color: #e3c8bf;
}

.copy-btn-minimal.copied {
	background: #d4f4dd;
	color: #0f5d26;
	border-color: #a9e4a9;
}

.qr-btn-minimal {
	width: 100%;
	padding: 0.9rem 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 12px;
	border: 2px solid #e3106e;
	background: #e3106e;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s;
	letter-spacing: 0.3px;
}

.qr-btn-minimal:hover, .qr-btn-minimal:active {
	background: #c70d5e;
	border-color: #c70d5e;
	transform: translateY(-1px);
}

.brand-nagad .qr-btn-minimal {
	border-color: #ff7a00;
	background: #ff7a00;
}

.brand-nagad .qr-btn-minimal:hover {
	background: #e66d00;
	border-color: #e66d00;
}

/* Bank Details */
.bank-dl {
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.bank-row {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	background: #fff7f3;
	border-radius: 12px;
	border: 1px solid #f3e1db;
}

.bank-row dt {
	font-size: 0.7rem;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--text-light);
	font-weight: 700;
	margin: 0;
}

.bank-row dd {
	margin: 0;
	font-weight: 600;
	color: var(--text);
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.7rem;
	width: 100%;
}

.bank-pill-number {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #5a1321;
	background: #fff;
	padding: 0.75rem 1.2rem;
	border-radius: 32px;
	border: 1.5px solid #f3e1db;
	letter-spacing: 1.2px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	word-break: break-all;
}

.copy-btn-minimal.bank-pill-btn {
	width: auto;
	min-width: 100px;
	padding: 0.6rem 1.8rem;
	font-size: 0.95rem;
	height: auto;
	box-sizing: border-box;
	border-radius: 32px;
	border: 1.5px solid #d4b5a6;
	background: linear-gradient(135deg, #fff 0%, #fef9f6 100%);
	color: #6b4a3e;
	font-weight: 600;
	letter-spacing: 0.4px;
	transition: all 0.25s ease;
	cursor: pointer;
	display: inline-block;
	box-shadow: 0 2px 6px -2px rgba(90, 19, 33, 0.1);
}

.copy-btn-minimal.bank-pill-btn:hover,
.copy-btn-minimal.bank-pill-btn:active {
	background: linear-gradient(135deg, #fef6f1 0%, #ffeee5 100%);
	color: #5a1321;
	border-color: #c19f8c;
	box-shadow: 0 4px 10px -3px rgba(90, 19, 33, 0.15);
	transform: translateY(-1px);
}

.copy-btn-minimal.bank-pill-btn.copied {
	background: linear-gradient(135deg, #d4f4dd 0%, #c2f0d0 100%);
	color: #0f5d26;
	border-color: #8ed4a1;
	box-shadow: 0 2px 8px -2px rgba(15, 93, 38, 0.2);
}

.method-card .note {
	margin-top: 1rem;
	padding: 0.8rem;
	background: #fff7f3;
	border-radius: 10px;
	font-size: 0.85rem;
	text-align: center;
	color: #6d3d38;
}

/* Impact Section */
.donation-impact {
	padding: 3rem 1rem;
}

.impact-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.impact-card {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 16px;
	padding: 1.5rem 1rem;
	box-shadow: 0 2px 8px -4px rgba(90,25,30,.15);
	text-align: center;
}

.impact-card .num {
	font-family: var(--font-serif);
	font-size: 2.5rem;
	font-weight: 900;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 0.5rem;
}

.impact-card .lbl {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.3;
}

/* Usage Section */
.donation-usage {
	padding: 3rem 1rem;
}

.usage-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.usage-card {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 16px;
	padding: 1.2rem;
	box-shadow: 0 2px 8px -4px rgba(90,25,30,.15);
}

.usage-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffe9e1, #ffd4c4);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.usage-icon svg {
	width: 24px;
	height: 24px;
}

.usage-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.8rem;
}

.usage-head h3 {
	margin: 0;
	font-size: 1.05rem;
}

.usage-head .pct {
	font-weight: 800;
	color: var(--brand);
	font-size: 1rem;
}

.progress {
	background: #fff4ef;
	border: 1px solid #f6d7cf;
	border-radius: 999px;
	height: 8px;
	position: relative;
	overflow: hidden;
	margin-bottom: 0.8rem;
}

.progress .bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: var(--w, 0);
	background: var(--grad);
	border-radius: inherit;
	transition: width 0.6s ease;
}

.usage-card p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.4;
}

/* CTA Section */
.donation-contact-cta {
	padding: 3rem 1rem;
}

.cta-card {
	background: linear-gradient(135deg, #fff6f2, #ffe9e1);
	border: 1px solid #f5e3dd;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 4px 16px -8px rgba(90,25,30,.2);
}

.cta-card h3 {
	margin: 0 0 0.8rem;
	font-size: 1.4rem;
	color: var(--brand);
}

.cta-card p {
	margin: 0 0 1.5rem;
	color: var(--text-light);
	line-height: 1.5;
}

.cta-card .btn {
	width: 100%;
	max-width: 300px;
}

/* Testimonials */
.donation-testimonials {
	padding: 3rem 1rem;
}

.testi-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}

.testi {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 16px;
	padding: 1.2rem;
	box-shadow: 0 2px 8px -4px rgba(90,25,30,.15);
	font-style: italic;
	color: var(--text-light);
	line-height: 1.5;
}

.testi cite {
	display: block;
	margin-top: 0.8rem;
	font-style: normal;
	font-weight: 600;
	color: var(--brand);
	font-size: 0.9rem;
}

/* FAQ Section */
.donation-faq {
	padding: 3rem 1rem;
}

.faq-list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.faq-list details {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 2px 8px -4px rgba(90,25,30,.15);
}

.faq-list summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--brand);
	list-style: none;
	padding-right: 1.5rem;
	position: relative;
}

.faq-list summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.5rem;
	font-weight: 400;
	transition: transform 0.2s;
}

.faq-list details[open] summary::after {
	content: '−';
}

.faq-list p {
	margin: 0.8rem 0 0;
	color: var(--text-light);
	line-height: 1.5;
	font-size: 0.9rem;
}

/* Thanks Section */
.donation-thanks {
	padding: 3rem 1rem;
}

/* QR Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
	padding: 1rem;
}

.modal.is-visible {
	visibility: visible;
	opacity: 1;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	cursor: pointer;
}

.modal-content {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
	text-align: center;
	z-index: 10000;
}

.modal-close {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
	background: #f5f5f5;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.modal-close:hover, .modal-close:active {
	background: #e0e0e0;
	color: #333;
}

.modal-body h3 {
	margin: 0 0 1rem;
	font-size: 1.2rem;
	color: var(--brand);
}

.qr-code-img {
	width: 200px;
	height: 200px;
	margin: 0 auto 1rem;
	background: #f7f7f7;
	border: 2px solid #eee;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.qr-code-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.modal-body p {
	margin: 0;
	color: var(--text-light);
	font-size: 0.95rem;
}

.modal-body strong {
	color: var(--text);
	font-weight: 700;
}

/* Utility */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ===== TABLET & DESKTOP (768px+) ===== */
@media (min-width: 768px) {
	.donation-hero {
		padding: 6rem 2rem 3rem;
	}

	.methods-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 1000px;
		gap: 2rem;
	}

	.wallet-minimal-row {
		flex-direction: row;
		align-items: center;
	}

	.wallet-minimal-number {
		flex: 1;
	}

	.copy-btn-minimal {
		width: auto;
		min-width: 100px;
	}

	.qr-btn-minimal {
		max-width: 200px;
		margin: 0.7rem auto;
	}

	.bank-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.bank-row dt {
		min-width: 140px;
		flex-shrink: 0;
	}

	.bank-row dd {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.8rem;
	}

	.bank-pill-number {
		width: auto;
		display: inline-block;
		text-align: left;
		min-width: 140px;
	}

	.copy-btn-minimal.bank-pill-btn {
		width: auto;
		min-width: 80px;
	}

	.impact-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.usage-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testi-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.cta-card {
		display: flex;
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 2rem;
	}

	.cta-card p {
		margin: 0;
	}

	.cta-card .btn {
		width: auto;
		flex-shrink: 0;
	}
}

/* LARGE DESKTOP (1024px+) */
@media (min-width: 1024px) {
	.donation-hero {
		padding: 7rem 2rem 4rem;
	}

	.usage-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.methods-grid {
		max-width: 1200px;
	}
}

/* Old styles preserved below for compatibility (trimmed to avoid conflicts with new wallet-minimal styles) */
/* Glassmorphism Wallets Section */
.wallets-glass-bg {
	background: linear-gradient(120deg, #fff8f3 60%, #ffe6e0 100%);
	border-radius: 32px;
	box-shadow: 0 8px 48px -12px rgba(90,25,30,.10);
	padding: 2.5rem 1.2rem 2.7rem;
	margin-bottom: 2.5rem;
	margin-top: 1.2rem;
	position: relative;
	overflow: visible;
}
.wallets-flex {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}
.wallet-card.glass {
	background: rgba(255,255,255,0.65);
	border: 1.5px solid #f2e4de;
	border-radius: 28px;
	box-shadow: 0 8px 32px -10px rgba(90,25,30,.13), 0 1.5px 0 #f7e6e0;
	backdrop-filter: blur(8px) saturate(1.2);
	-webkit-backdrop-filter: blur(8px) saturate(1.2);
	padding: 2.2rem 2.1rem 2.1rem 2.1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 270px;
	max-width: 320px;
	margin-bottom: 0;
	position: relative;
	transition: box-shadow .22s, transform .22s;
}
.wallet-card.glass:hover {
	box-shadow: 0 18px 48px -12px rgba(90,25,30,.18), 0 2px 0 #f7e6e0;
	transform: translateY(-6px) scale(1.025);
}
.wallet-logo-circle {
	width: 92px;
	height: 92px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 24px -8px #e9c9bc;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
	position: relative;
	z-index: 2;
}
.wallet-logo {
	max-width: 70px;
	max-height: 70px;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px #f7e6e0);
}
.wallet-body {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
}
.wallet-acc-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .7rem;
	margin-top: .2rem;
	margin-bottom: .2rem;
}
.wallet-acc-number {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1.18rem;
	font-weight: 600;
	color: var(--text);
	background: #fff7f3;
	padding: .38rem .7rem;
	border-radius: 11px;
	border: 1.2px solid #f3e1db;
	letter-spacing: 1.2px;
	box-shadow: 0 1px 4px -2px #e9c9bc;
}
.copy-icon {
	padding: .22rem .48rem;
	font-size: 1.08rem;
	border-radius: 8px;
	border: 1.2px solid #efd7cd;
	background: #fff;
	color: #7a4a45;
	cursor: pointer;
	margin-left: .22rem;
	transition: background .18s, color .18s, box-shadow .18s;
	box-shadow: 0 1px 4px -2px #e9c9bc;
}
.copy-icon:hover {
	background: #fff0ea;
	color: #5a1321;
	box-shadow: 0 2px 8px -2px #e9c9bc;
}
.qr-btn.big {
	min-width: 150px;
	border: none;
	background: linear-gradient(90deg, #e3106e 0%, #ff7a00 100%);
	color: #fff;
	padding: 1rem 1.2rem;
	font-size: 1.13rem;
	font-weight: 700;
	border-radius: 16px;
	cursor: pointer;
	transition: background .18s, box-shadow .18s, transform .18s;
	box-shadow: 0 4px 18px -6px #e9c9bc;
	letter-spacing: .2px;
	margin-top: .2rem;
}
.qr-btn.big:hover {
	background: linear-gradient(90deg, #ff7a00 0%, #e3106e 100%);
	color: #fff;
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 24px -8px #e9c9bc;
}
@media (max-width: 900px) {
	.wallets-flex { gap: 1.2rem; }
	.wallet-card.glass { min-width: 220px; padding: 1.5rem 1rem 1.5rem 1rem; }
	.wallet-logo-circle { width: 70px; height: 70px; }
	.wallet-logo { max-width: 50px; max-height: 50px; }
}
.wallet-card {
	position: relative;
	background: #fff;
	border: 1.5px solid #f2e4de;
	border-radius: 22px;
	box-shadow: 0 8px 32px -10px rgba(90,25,30,.13), 0 1.5px 0 #f7e6e0;
	transition: transform .22s cubic-bezier(.4,1.6,.6,1), box-shadow .22s;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
	margin-bottom: 6px;
}
.wallet-card:hover {
	transform: translateY(-6px) scale(1.025);
	box-shadow: 0 18px 48px -12px rgba(90,25,30,.18), 0 2px 0 #f7e6e0;
}
.wallet-accent {
	height: 6px;
	width: 100%;
	background: linear-gradient(90deg, var(--brand-accent, #e3106e), #fff0 80%);
	border-radius: 22px 22px 0 0;
	margin-bottom: 0.5rem;
}
.brand-bkash .wallet-accent { --brand-accent: #e3106e; }
.brand-nagad .wallet-accent { --brand-accent: #ff7a00; }
.wallet-header {
	padding: 2.1rem 1rem 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 140px;
}
.wallet-logo.large-logo {
	max-width: 170px;
	max-height: 80px;
	filter: drop-shadow(0 2px 8px #f7e6e0);
}
@media (max-width: 560px){
	.wallet-header { min-height: 110px; }
	.wallet-logo.large-logo { max-width: 120px; max-height: 60px; }
}
.wallet-acc-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	margin-top: .3rem;
	margin-bottom: .3rem;
}
.wallet-acc-number {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1.18rem;
	font-weight: 600;
	color: var(--text);
	background: #fff7f3;
	padding: .38rem .7rem;
	border-radius: 11px;
	border: 1.2px solid #f3e1db;
	letter-spacing: 1.2px;
}
.wallet-card.brand-bkash .wallet-acc-number{ background: linear-gradient(90deg,#fff,#fff2f7); border-color:#f1d4e3; }
.wallet-card.brand-nagad .wallet-acc-number{ background: linear-gradient(90deg,#fff,#fff6ee); border-color:#edd7c5; }
.copy-icon {
	padding: .22rem .48rem;
	font-size: 1.08rem;
	border-radius: 8px;
	border: 1.2px solid #efd7cd;
	background: #fff;
	color: #7a4a45;
	cursor: pointer;
	margin-left: .22rem;
	transition: background .18s, color .18s, box-shadow .18s;
	box-shadow: 0 1px 4px -2px #e9c9bc;
}
.copy-icon:hover {
	background: #fff0ea;
	color: #5a1321;
	box-shadow: 0 2px 8px -2px #e9c9bc;
}
.wallet-footer {
	padding: 1.1rem 1rem 1.3rem 1rem;
	margin-top: .5rem;
	display: flex;
	justify-content: center;
	background: #fff9f6;
	border-top: 1.2px solid #f2e4de;
}
.wallet-footer.single-btn {
	padding: 1.1rem 1rem 1.3rem 1rem;
	margin-top: .5rem;
	display: flex;
	justify-content: center;
	background: #fff9f6;
	border-top: 1.2px solid #f2e4de;
}
.wallet-footer .qr-btn {
	min-width: 130px;
	border: 1.2px solid #f0dacc;
	background: linear-gradient(135deg, #8c1424, #5a1321);
	color: #fff;
	padding: .8rem 1.3rem;
	font-size: 1.08rem;
	font-weight: 700;
	border-radius: 13px;
	cursor: pointer;
	transition: .2s;
	box-shadow: 0 4px 10px -5px rgba(90,25,30,.13);
	letter-spacing: .2px;
}
.wallet-footer .qr-btn:hover {
	background: linear-gradient(135deg, #a83249, #ff9153);
	color: #fff;
	border-color: #e9c9bc;
	transform: translateY(-1px) scale(1.04);
	box-shadow: 0 8px 18px -8px rgba(120,30,40,.18);
}
.wallet-grid {
	gap: 2.2rem;
	margin-bottom: 1.2rem;
}
.donation-hero-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 2rem;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}
@media (max-width: 920px) {
	.donation-hero { padding: 3rem 1.2rem; }
	.donation-hero-grid { grid-template-columns: 1fr; }
	.donation-hero-visual { display: none; }
}

.donation-lead {
	margin: 0 auto 1.4rem;
	max-width: 560px;
	font-size: clamp(1rem, 1.6vw, 1.1rem);
	color: var(--text-light);
	line-height: 1.6;
}
.hero-cta {
	margin-bottom: 2rem;
}
.donation-hero-visual .visual-placeholder {
	height: 320px;
	border-radius: 24px;
	background: linear-gradient(135deg, #fff6f2, #fdebe4);
	border: 1px solid #f5e3dd;
}

/* Trust badges under hero */
.trust-badges {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: .85rem;
	color: var(--text-light);
}
.trust-badges li {
	display: flex;
	align-items: center;
	gap: .4rem;
}
.trust-badges svg {
	color: #2ca563;
}

.donation-methods .container { max-width: 1100px; }
.methods-head { margin: 0 auto 1.5rem; }

/* New: Methods grid */
.methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.2rem;
}
.method-card {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 20px;
	padding: 1.3rem;
	box-shadow: 0 18px 40px -22px rgba(90,25,30,.28);
	transition: transform .25s ease, box-shadow .25s ease;
}
.method-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -28px rgba(90,25,30,.35); }
.method-card-head {
	display: grid;
	grid-template-columns: 44px 1fr;
	grid-template-areas: "icon title" 
						 "sub sub";
	gap: .6rem .8rem;
	align-items: start;
	margin-bottom: .8rem;
}
.method-icon {
	grid-area: icon;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--grad-soft);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
}
.method-icon svg { width: 22px; height: 22px; }
.method-card-head h3 { grid-area: title; margin: 0; font-size: 1.1rem; }
.method-card-head .sub { grid-area: sub; margin: .35rem 0 .2rem; color: var(--text-light); font-size: .9rem; text-align: center; }
/* Center the bank reference line */
.method-card .note { text-align: center; margin-top: .9rem; color: #6d3d38; }

/* Wallets card: keep helper line directly under title, left-aligned (no overlap) */
.method-card.wallets .method-card-head {
	grid-template-areas: "icon title" 
						 "icon sub";
}
.method-card.wallets .method-card-head h3 { align-self: center; }
.method-card.wallets .method-card-head .sub {
	grid-area: sub;
	margin: .15rem 0 0 0;
	text-align: left;
}

/* Bank card: helper line directly under title, centered */
.method-card.bank .method-card-head {
	grid-template-areas: "icon title" 
						 "icon sub";
}
.method-card.bank .method-card-head .sub {
	grid-area: sub;
	margin: .15rem 0 0 0;
	text-align: left;
}

/* Inline copy in wallet number */
.wallet-acc-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	margin-top: .2rem;
	margin-bottom: .2rem;
}
.wallet-acc-number {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text);
	background: #fff7f3;
	padding: .35rem .55rem;
	border-radius: 10px;
	border: 1px solid #f3e1db;
}
.wallet-card.brand-bkash .wallet-acc-number{ background: linear-gradient(90deg,#fff,#fff2f7); border-color:#f1d4e3; }
.wallet-card.brand-nagad .wallet-acc-number{ background: linear-gradient(90deg,#fff,#fff6ee); border-color:#edd7c5; }
.copy-icon {
	padding: .2rem .4rem;
	font-size: 1rem;
	border-radius: 8px;
	border: 1px solid #efd7cd;
	background: #fff;
	color: #7a4a45;
	cursor: pointer;
	margin-left: .2rem;
	transition: background .18s, color .18s;
}
.copy-icon:hover {
	background: #fff0ea;
	color: #5a1321;
}

/* Mobile Wallet Card Grid */
.wallet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.2rem;
	align-items: stretch;
}

.wallet-card {
	background: #fff;
	border: 1px solid #f2e4de;
	border-radius: 20px;
	box-shadow: 0 16px 36px -20px rgba(90,25,30,.25);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}
.wallet-card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -28px rgba(90,25,30,.35); }

.wallet-header {
	padding: 1.6rem 1rem 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 130px; /* bigger to showcase logos */
}
.wallet-logo {
	max-width: 140px;
	max-height: 70px;
	object-fit: contain;
}
@media (max-width: 560px){
	.wallet-header { min-height: 110px; }
	.wallet-logo { max-width: 120px; max-height: 60px; }
}

.wallet-body {
	text-align: center;
	padding: 0 1rem;
	flex-grow: 1;
}
.wallet-acc-label {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
	margin: 0 0 .2rem;
}
.wallet-acc-number {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text);
	margin: 0;
}

.wallet-footer {
	padding: 1rem 1rem 1.2rem 1rem;
	margin-top: .5rem;
	display: flex;
	justify-content: center;
	background: #fff9f6;
	border-top: 1px solid #f2e4de;
}
.wallet-footer.single-btn {
	padding: 1rem 1rem 1.2rem 1rem;
	margin-top: .5rem;
	display: flex;
	justify-content: center;
	background: #fff9f6;
	border-top: 1px solid #f2e4de;
}
.wallet-footer .qr-btn {
	min-width: 120px;
	border: 1px solid #f0dacc;
	background: linear-gradient(135deg, #8c1424, #5a1321);
	color: #fff;
	padding: .7rem 1.2rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 12px;
	cursor: pointer;
	transition: .2s;
	box-shadow: 0 4px 10px -5px rgba(90,25,30,.13);
	letter-spacing: .2px;
}
.wallet-footer .qr-btn:hover {
	background: linear-gradient(135deg, #a83249, #ff9153);
	color: #fff;
	border-color: #e9c9bc;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px -8px rgba(120,30,40,.18);
}
.copy-btn.copied {
    background: #c7f2c7;
    color: #0f5d26;
    border-color: #a9e4a9;
}

/* Brand Colors */
.wallet-card.brand-bkash .wallet-header { background: linear-gradient(135deg, #fff, #fff2f7); }
.wallet-card.brand-nagad .wallet-header { background: linear-gradient(135deg, #fff, #fff8f0); }
.wallet-card.brand-rocket .wallet-header { background: linear-gradient(135deg, #fff, #f6f2ff); }

.qr { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	margin-top: 1rem;
}
.qr-btn { background: linear-gradient(135deg, #8c1424, #5a1321); color:#fff; border: none; border-radius: 12px; padding: .8rem 1rem; font-weight: 800; letter-spacing:.2px; }
.qr-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(120,30,40,.45); }

/* Brand accents via variables on the row */
.mb-row.brand-bkash { --brand-accent: #e3106e; background:linear-gradient(90deg, rgba(227,16,110,.06), transparent 45%); }
.mb-row.brand-nagad { --brand-accent: #ff7a00; background:linear-gradient(90deg, rgba(255,122,0,.06), transparent 45%); }
.mb-row.brand-rocket { --brand-accent: #6b3df2; background:linear-gradient(90deg, rgba(107,61,242,.06), transparent 45%); }

/* Mobile tweaks: stack number and button under title */
@media (max-width: 560px){
	.mb-row { grid-template-columns: 1fr; gap:.5rem; }
	.mb-number, .copy-btn { justify-self: start; }
}

.bank-dl {
	margin: 0 auto;
	display: grid;
	gap: .8rem;
	background: #fff;
	border: 1px solid #f2e4de;
	border-radius: 18px;
	padding: 1.2rem;
	box-shadow: 0 10px 26px -16px rgba(90,25,30,.2);
}
.bank-row { display:grid; grid-template-columns: 160px minmax(0,1fr); gap:.8rem; align-items:center; }
.bank-row dt { font-size:.72rem; letter-spacing:1.4px; text-transform:uppercase; color:var(--text-light); font-weight:800; }
.bank-row dd { margin:0; display:flex; align-items:center; gap:.55rem; font-weight:600; }
.acc { background:#fff7f3; padding:.2rem .5rem; border-radius:8px; border:1px solid #f3e1db; }

.donation-impact .impact-grid { margin-top:1.6rem; display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1rem; }
.impact-card { background:#fff; border-radius:20px; padding:1.1rem .9rem; box-shadow:var(--elev-1); text-align:center; }
.impact-card .num { font-family: var(--font-serif); font-size:1.8rem; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; font-weight:900; }
.impact-card .lbl { font-size:.8rem; color:var(--text-light); }

.donation-faq .faq-list details { background:#fff; border:1px solid #f2e3dc; border-radius:16px; padding:.8rem 1rem; box-shadow:0 4px 12px -8px rgba(90,25,30,.25); }
.donation-faq .faq-list details + details { margin-top:.7rem; }
.donation-faq summary { cursor:pointer; font-weight:700; }

.donation-thanks .lead { color: var(--text-light); }

.donation-contact-cta .lead { max-width:780px; margin:0 auto; }

.donation-usage .container { max-width: 1100px; }
.usage-grid {
	margin-top: 1.6rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}
.usage-card {
	background: #fff;
	border: 1px solid #f2e3dc;
	border-radius: 18px;
	padding: 1.1rem;
	box-shadow: 0 6px 16px -10px rgba(90,25,30,.15);
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.usage-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--grad-soft);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
}
.usage-icon svg { width: 24px; height: 24px; }
.usage-content { flex-grow: 1; }
.usage-card h3 { margin: .2rem 0 .4rem; font-size: 1rem; }
.usage-card p { margin: 0; font-size: .85rem; color: var(--text-light); }

/* Usage cards progress bars */
.usage-card .usage-head { display:flex; justify-content:space-between; align-items:center; margin:0 0 .5rem; }
.usage-card .pct { font-weight:800; color:var(--brand); font-size:.9rem; }
.progress { background:#fff4ef; border:1px solid #f6d7cf; border-radius:999px; height:8px; position:relative; overflow:hidden; margin:0 0 .6rem; }
.progress .bar { position:absolute; left:0; top:0; bottom:0; width:var(--w,0); background:var(--grad); border-radius:inherit; box-shadow:0 6px 16px -8px rgba(120,30,40,.45); }

/* (accordion styles removed) */

/* CTA button polish */
.donation-contact-cta .cta-card {
	background: var(--grad-soft);
	border: 1px solid #f5e3dd;
	border-radius: 24px;
	padding: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	box-shadow: var(--elev-1);
}
@media (max-width: 640px) {
	.donation-contact-cta .cta-card {
		flex-direction: column;
		text-align: center;
	}
}
.donation-contact-cta .cta-card h3 {
	margin: 0 0 .4rem;
	font-size: 1.3rem;
	color: var(--brand);
}
.donation-contact-cta .cta-card p {
	margin: 0;
	color: var(--text-light);
	max-width: 480px;
}
.donation-contact-cta .cta-card .btn {
	flex-shrink: 0;
}

/* Testimonials */
.donation-testimonials .testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1rem; margin-top:1rem; }
.donation-testimonials .testi { background:#fff; border:1px solid #f2e3dc; border-radius:18px; padding:1rem; box-shadow:0 6px 16px -10px rgba(90,25,30,.25); font-style:italic; color:var(--text-light); }
.donation-testimonials .testi cite { display:block; margin-top:.6rem; font-style:normal; font-weight:700; color:var(--brand); }

/* QR Code Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s, visibility .3s;
}
.modal.is-visible {
	visibility: visible;
	opacity: 1;
}
.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.6);
	cursor: pointer;
}
.modal-content {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
	text-align: center;
	transform: scale(.9);
	transition: transform .3s;
}
.modal.is-visible .modal-content {
	transform: scale(1);
}
.modal-close {
	position: absolute;
	top: .8rem;
	right: .8rem;
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
}
.modal-close:hover { color: #333; }
.modal-body #qr-modal-title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
}
.modal-body .qr-code-img {
	width: 220px;
	height: 220px;
	margin: 0 auto 1rem;
	background: #f7f7f7;
	border: 1px solid #eee;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
	color: #888;
}
.modal-body p {
	margin: 0;
	color: var(--text-light);
}
.modal-body strong {
	color: var(--text);
}

