:root {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --accent-teal: #1abc9c;
    --text-dark: #2c3e50;
    --white: #ffffff;
}
/* Full Screen Hero Section */
/* THE PREMIUM DONATE BUTTON (Reference Image Style) */
.donate-btn {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%) !important;
    color: #ffffff !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    border: none;
    gap: 10px;
    margin-left: 10px;
}

.donate-btn i {
    font-size: 1.1rem;
}

.donate-btn:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
    filter: brightness(1.1);
}

/* Outline when on the Donate Page to show it is Active */
.donate-btn.active {
    outline: 2px solid #ff7e5f;
    outline-offset: 3px;
}
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Gradient Overlay (Important) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    color: white;
}

/* Heading */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

/* Paragraph */
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    font-weight: 600;
}

.stat-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* White Box */
.hero-box {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 70px 60px;
    border-radius: 40px;
    max-width: 900px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    text-align: center;
}

.hero-box h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.hero-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.btn-main.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.btn-main.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-main.secondary:hover {
    background: var(--primary-color);
    color: white;
}
.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
/* Glass Effect Button */

.glass-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* Main Content Area */
.donate-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 15px; }
.underline { width: 80px; height: 4px; background: var(--primary-color); margin: 0 auto 20px; }

/* Cards Grid */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.goods-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s;
    border-bottom: 5px solid transparent;
}

.goods-card:hover {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.money-card {
    background: linear-gradient(145deg, #ffffff, #fff7f0);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 20px; right: -35px;
    background: var(--accent-teal);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
}

.action-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.icon-circle {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

/* Form Styling */
.donation-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.06);}

.form-visual {
    background: var(--primary-color);
    color: white;
    padding: 60px;
}

.visual-header {
    text-align: center;
    margin-bottom: 25px;
}

.visual-header img {
    width: 90px;          /* Increased size */
    height: 90px;
    object-fit: contain;
    margin-bottom: 15px;
}
.visual-header h3 {
    font-size: 1.8rem;
    margin-top: 10px;
}
.form-benefits { list-style: none; padding: 0; margin-top: 30px; }
.form-benefits li { margin-bottom: 15px; font-weight: 600; }
.form-benefits i { margin-right: 10px; color: #ffe0c2; }

.form-container { padding: 60px; }
.input-group { margin-bottom: 30px; }
.input-group label { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.input-group label i { color: var(--primary-color); width: 25px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

input, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    background: #fafafa;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
}

/* Checkbox Styling */
.custom-checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; }
.checkbox-item input { display: none; }
.checkbox-item .box {
    display: block;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.checkbox-item input:checked + .box {
    background: var(--primary-color);
    color: white;
}

.pahal-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.pahal-btn:hover { background: var(--secondary-color); transform: scale(1.02); }

@media (max-width: 992px) {
    .donation-form-wrapper { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-main { width: 100%; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-container, .form-visual { padding: 30px; }
}
