/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f8f9fa;
    font-size: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin-bottom: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
    color: rgba(255,255,255,0.8);
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-active {
    background-color: rgba(255,255,255,0.2) !important;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(52, 152, 219, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e8f4f8" width="1200" height="600"/><circle fill="%23bde0ff" cx="200" cy="150" r="80"/><circle fill="%2385c1f5" cx="800" cy="300" r="120"/><circle fill="%234a90e2" cx="1000" cy="100" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
}

.hero .container {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    height: 100%;
}

/* Hero variations for other pages */
.hero[style*="padding"] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(52, 152, 219, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e8f4f8" width="1200" height="600"/><circle fill="%23bde0ff" cx="200" cy="150" r="80"/><circle fill="%2385c1f5" cx="800" cy="300" r="120"/><circle fill="%234a90e2" cx="1000" cy="100" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero[style*="padding"] .container {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    height: 100%;
}

.hero[style*="padding"] h2 {
    font-size: 3.5rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    order: 1;
    display: block;
    line-height: 1.2;
}

.hero[style*="padding"] p {
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    order: 2;
    display: block;
}

.hero h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    order: 1;
}

.hero p {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
    line-height: 1.8;
    text-align: center;
    width: 100%;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    order: 2;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    width: 100%;
    margin: 0 auto;
    order: 3;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Main Content Styles */
main {
    padding: 0;
    width: 100%;
    max-width: 100vw;
    margin-top: 0;
}

.section {
    margin-bottom: 5rem;
    background: white;
    border-radius: 15px;
    padding: 3rem 4rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    width: 100%;
}

.section:first-child {
    margin-top: 5rem;
}

.section h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    border-bottom: 4px solid #3498db;
    padding-bottom: 1rem;
    font-weight: 600;
}

/* Objectives List */
.objectives {
    list-style: none;
    padding-left: 0;
}

.objectives li {
    padding: 1.5rem;
    margin: 1rem 0;
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.7;
}

.objectives li:hover {
    background: linear-gradient(90deg, #e9ecef, #dee2e6);
    transform: translateX(5px);
}

.objectives li::before {
    content: "🎯";
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin: 4rem 0;
    width: 100%;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border-top: 5px solid #3498db;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Forms */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
    background: white;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* Success and Error Messages */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Modern Donation Section */
.modern-donation-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.donation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.donation-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.donation-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.donation-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Card Styles */
.amount-selection-card,
.purpose-selection-card,
.payment-methods-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amount-selection-card:hover,
.purpose-selection-card:hover,
.payment-methods-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.step-indicator {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Amount Buttons */
.amount-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.amount-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.2);
}

.amount-btn.selected {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    transform: scale(1.05);
}

.amount-btn .currency {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
}

.amount-btn .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.amount-btn.custom-btn {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.custom-text {
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
}

.custom-sub {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-top: 0.3rem;
}

/* Custom Amount Input */
.custom-amount-input {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-amount-input input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.input-currency {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 600;
    color: #6c757d;
}

/* Selected Amount Display */
.selected-amount-display {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.amount-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-summary .label {
    font-weight: 500;
    color: #155724;
}

.amount-summary .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #155724;
}

/* Purpose Options */
.purpose-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.purpose-option {
    display: block;
    cursor: pointer;
}

.purpose-option input[type="radio"] {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
}

.purpose-option:hover .option-content {
    border-color: #667eea;
    background: #f8f9ff;
}

.purpose-option input:checked + .option-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
}

.option-icon {
    font-size: 2rem;
    margin-right: 1rem;
    min-width: 3rem;
    text-align: center;
}

.option-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.option-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0.5rem;
}

.payment-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.payment-tab:hover {
    background: rgba(102,126,234,0.1);
}

.payment-tab.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.tab-icon {
    font-size: 1.2rem;
}

/* Payment Content */
.payment-content {
    position: relative;
}

.payment-method {
    display: none;
}

.payment-method.active {
    display: block;
}

.payment-info {
    margin-bottom: 2rem;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.payment-info p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Bank Details Modern */
.bank-info h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bank-details-modern {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 500;
    color: #6c757d;
    min-width: 40%;
}

.detail-row .value {
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
    font-family: 'Courier New', monospace;
}

/* Modern Donate Buttons */
.donate-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donate-btn.primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.donate-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40,167,69,0.4);
}

.donate-btn.secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.donate-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .donation-form-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .payment-methods-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .modern-donation-section {
        padding: 0 1rem;
    }
    
    .donation-header h2 {
        font-size: 2.5rem;
    }
    
    .donation-form-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amount-selection-card,
    .purpose-selection-card,
    .payment-methods-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .amount-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .donation-header h2 {
        font-size: 2rem;
    }
    
    .amount-selection-card,
    .purpose-selection-card,
    .payment-methods-card {
        padding: 1rem;
    }
    
    .amount-btn .amount {
        font-size: 1.5rem;
    }
}

/* Enhanced Donation Section Styling */
.donate-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 3rem 0;
}

.donate-form-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.donation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.donation-amounts-section,
.payment-methods-section {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.donation-amounts-section h4,
.payment-methods-section h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.donation-amount {
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.donation-amount:hover {
    background: rgba(255,255,255,0.2);
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.donation-amount.selected {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-color: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(52,152,219,0.4);
}

.custom-amount-section {
    margin-bottom: 1.5rem;
}

.custom-input {
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.custom-input:focus {
    background: white;
    border-color: #3498db;
    box-shadow: 0 0 15px rgba(52,152,219,0.4);
}

.donation-type-section label {
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.donation-select {
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    color: #2c3e50;
}

.selected-amount-display {
    text-align: center;
    background: rgba(46,204,113,0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(46,204,113,0.5);
    margin-top: 1.5rem;
}

.selected-amount-display p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-card {
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.payment-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.payment-card h5 {
    color: #2c3e50;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.payment-card p {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.payment-features {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: rgba(46,204,113,0.1);
    color: #27ae60;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(46,204,113,0.3);
}

.payment-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46,204,113,0.3);
}

.bank-details {
    background: rgba(52,152,219,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid rgba(52,152,219,0.3);
}

.bank-details p {
    margin: 0.5rem 0;
    color: #2c3e50;
    font-weight: bold;
    text-align: left;
}

.copy-details {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-details:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

/* Responsive Design for Donation Section */
@media (max-width: 968px) {
    .donation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .donate-form-section {
        padding: 2rem 1rem;
    }
    
    .donation-amounts-section,
    .payment-methods-section {
        padding: 1.5rem;
    }
    
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-form-section h3 {
        font-size: 2rem;
    }
}

/* Visitor Counter */
.visitor-counter {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.visitor-counter h4 {
    margin-bottom: 0.5rem;
}

.visitor-count {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0 2rem 0;
    text-align: center;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #3498db;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-section a:hover {
    color: #3498db;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2c3e50, #3498db);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 95%;
        max-width: 95%;
        padding: 3rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
    }
    
    .section {
        padding: 2rem;
        width: 100%;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Logo Adjustments */
    .logo {
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.8rem;
    }
    
    .logo-sub {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 60vh;
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 95%;
        padding: 0;
        margin: 0 auto;
        height: 100%;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .section {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hero variations mobile styles */
    .hero[style*="padding"] {
        min-height: 40vh;
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
    }
    
    .hero[style*="padding"] .container {
        width: 95%;
        padding: 0;
        margin: 0 auto;
    }
    
    .hero[style*="padding"] h2 {
        font-size: 2.2rem;
    }
    
    .hero[style*="padding"] p {
        font-size: 1.1rem;
    }

    /* Very Small Screen Logo Adjustments */
    .logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-sub {
        font-size: 0.9rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
        display: none; /* Hide tagline on very small screens */
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.form-actions .btn {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Progress Bar Styles */
.progress-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Details/Summary Styles */
details {
    margin-top: 1rem;
}

details summary {
    cursor: pointer;
    color: #3498db;
    font-weight: bold;
    padding: 0.5rem 0;
}

details summary:hover {
    color: #2980b9;
}

details[open] summary {
    margin-bottom: 0.5rem;
}

details p {
    padding-left: 1rem;
    color: #666;
}
