/* Zakat Page Styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Zakat Hero Section */
.zakat-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zakat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="zakat-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23ffffff" opacity="0.1"/><path d="M10 10 L20 20 M20 10 L10 20" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23zakat-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.zakat-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
     
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.zakat-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
     
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.zakat-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
     
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
     
    color: #2c3e50;
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* What is Zakat Section */
.what-is-zakat {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.definition-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.definition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.definition-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
     
    color: #2c3e50;
    margin-bottom: 15px;
}

.definition-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Benefits Section */
.zakat-benefits {
    padding: 80px 0;
    background: white;
}

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

.benefit-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #1e3c72;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.benefit-icon.spiritual { background: linear-gradient(135deg, #667eea, #764ba2); }
.benefit-icon.growth { background: linear-gradient(135deg, #f093fb, #f5576c); }
.benefit-icon.protection { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.benefit-icon.community { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.benefit-icon.justice { background: linear-gradient(135deg, #fa709a, #fee140); }
.benefit-icon.reward { background: linear-gradient(135deg, #a8edea, #fed6e3); }

.benefit-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
     
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.trust-section .section-header h2 {
    color: white;
}

.trust-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
     
    margin-bottom: 15px;
}

.pillar-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Zakat Usage Section */
.zakat-usage {
    padding: 80px 0;
    background: #f8f9fa;
}

.usage-categories {
    display: grid;
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.category-header .category-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
     
    margin: 0 20px;
    flex: 1;
}

.category-percentage {
    font-size: 1.5rem;
     
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
}

.category-content {
    padding: 30px;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.category-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #6c757d;
}

.category-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.impact-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.impact-number {
    font-size: 2rem;
     
    color: #1e3c72;
}

.impact-label {
    color: #6c757d;
     
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    background: white;
}

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

.proof-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.proof-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e3c72;
}

.proof-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
     
    color: #2c3e50;
    margin-bottom: 15px;
}

.proof-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.proof-link {
    color: #1e3c72;
    text-decoration: none;
     
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.proof-link:hover {
    color: #2a5298;
    transform: translateX(5px);
}

/* CTA Section */
.zakat-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
     
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
     
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: white;
    color: #1e3c72;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .zakat-hero {
        padding: 80px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .zakat-definition,
    .benefits-grid,
    .trust-pillars,
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .category-header h3 {
        margin: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .what-is-zakat,
    .zakat-benefits,
    .trust-section,
    .zakat-usage,
    .proof-section,
    .zakat-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .definition-card,
    .pillar-item,
    .proof-item {
        padding: 25px 20px;
    }
    
    .category-content {
        padding: 25px 20px;
    }
}
