/* Page Title */
.page-title {
	text-align: center;
	padding: 60px 20px 30px;
}

.page-title h1 {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.subtitle {
	font-size: 20px;
	color: #666;
	font-weight: 400;
}

/* Donation Info */
.donate-info {
	max-width: 800px;
	margin: 40px auto;
	padding: 0 20px;
}

.info-card {
	background: #f8f8f8;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
}

.info-card h2 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.info-card p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 25px;
}

.info-card ul {
	list-style: none;
	padding: 0;
	text-align: left;
	max-width: 500px;
	margin: 0 auto;
}

.info-card li {
	font-size: 16px;
	padding: 10px 0;
	color: #555;
}

/* Donation Amounts */
.donation-amounts {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

.donation-amounts > h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 40px;
}

.amounts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.amount-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	transition: transform 0.3s, box-shadow 0.3s;
}

.amount-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.amount-card.featured {
	border: 3px solid #52833f;
	box-shadow: 0 8px 24px rgba(82, 131, 63, 0.3);
}

.popular-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: #FFD700;
	color: #333;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.amount-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.amount-card h3 {
	font-size: 36px;
	font-weight: 900;
	color: #333;
	margin-bottom: 10px;
}

.amount-card p {
	font-size: 16px;
	color: #666;
	margin-bottom: 25px;
}

.donate-btn {
	width: 100%;
	padding: 14px;
	background: #ee6f5e;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.donate-btn:hover {
	background: #dc5847;
	transform: translateY(-2px);
}

/* Custom Amount Card */
.amount-card.custom {
	background: linear-gradient(135deg, #52833f 0%, #42692f 100%);
	color: #fff;
}

.amount-card.custom h3,
.amount-card.custom p {
	color: #fff;
}

.custom-input {
	width: 100%;
	padding: 12px;
	font-size: 18px;
	border: 2px solid #fff;
	border-radius: 6px;
	text-align: center;
	margin-bottom: 15px;
	font-weight: 600;
}

.amount-card.custom .donate-btn {
	background: #fff;
	color: #52833f;
}

.amount-card.custom .donate-btn:hover {
	background: #f0f0f0;
}

/* Thank You Section */
.thank-you {
	max-width: 800px;
	margin: 60px auto;
	padding: 40px 20px;
	text-align: center;
	background: #FFF9E6;
	border-radius: 12px;
}

.thank-you p {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
}

.thank-you .note {
	font-size: 14px;
	color: #888;
	margin-bottom: 0;
}

/* Success Page */
.success-container {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.success-card {
	max-width: 600px;
	background: #fff;
	padding: 60px 40px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.success-icon {
	font-size: 80px;
	margin-bottom: 30px;
	animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
	0%, 100% { transform: scale(1); }
	10%, 30% { transform: scale(1.1); }
	20%, 40% { transform: scale(1); }
}

.success-card h1 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.donation-amount {
	font-size: 24px;
	color: #52833f;
	font-weight: 700;
	margin-bottom: 20px;
}

.success-message {
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.6;
}

.info-box {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 30px;
	text-align: left;
}

.info-box h2 {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	text-align: center;
}

.info-box ul {
	list-style: none;
	padding: 0;
}

.info-box li {
	font-size: 16px;
	color: #555;
	padding: 8px 0;
	border-bottom: 1px solid #e0e0e0;
}

.info-box li:last-child {
	border-bottom: none;
}

.actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
}

.btn-primary {
	background: #ee6f5e;
	color: #fff;
}

.btn-primary:hover {
	background: #dc5847;
	transform: translateY(-2px);
}

.btn-secondary {
	background: #f0f0f0;
	color: #333;
}

.btn-secondary:hover {
	background: #e0e0e0;
}

.receipt-note {
	margin-top: 20px;
}

.receipt-note small {
	color: #999;
	font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
	.page-title h1 {
		font-size: 36px;
	}

	.info-card {
		padding: 30px 20px;
	}

	.donation-amounts > h2 {
		font-size: 28px;
	}

	.amounts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.success-card {
		padding: 40px 20px;
	}

	.success-card h1 {
		font-size: 28px;
	}

	.actions {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
	}
}