/* File: assets/css/style.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2A6EBB;
    --secondary-color: #FFC107;
    --accent-color: #4CAF50;
    --dark-color: #1E3A5F;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(42, 110, 187, 0.1);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher a {
    display: inline-block;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.language-switcher a.active {
    background-color: var(--light-gray);
}

.language-switcher img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Gallery & Images */
.image-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.caption-frame {
    background-color: rgba(255, 255, 240, 0.9); /* Kuning pucat translucent */
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* File: assets/css/style.css - Tambahan untuk Homepage */

/* Hero Section */
.hero {
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features */
.features {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Projects */
.projects {
    padding: 80px 0;
}

.projects-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.project-date {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Utility Classes */
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.bg-light { background-color: var(--light-color); }
.text-center { text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        margin: 5px 0;
    }
}

/* File: assets/css/style.css - Tambahan untuk About Page */

/* Page Header */
.page-header {
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content */
.about-section {
    padding: 40px 0;
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.02);
}

.placeholder-image {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    color: var(--gray-color);
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Vision & Mission Cards */
.vision-card, .mission-card {
    border: none;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid var(--primary-color);
}

.mission-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid var(--secondary-color);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-icon, .mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

.vision-icon {
    background: rgba(42, 110, 187, 0.1);
    color: var(--primary-color);
}

.mission-icon {
    background: rgba(255, 193, 7, 0.1);
    color: var(--secondary-color);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.vision-card p, .mission-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    padding: 40px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .about-text, .about-image {
        margin-bottom: 40px;
    }
    
    .vision-card, .mission-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* File: assets/css/style.css - Tambahan untuk Goals Page */

/* Goals Grid */
.goals-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.goal-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.goal-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(42, 110, 187, 0.1);
    line-height: 1;
}

.goal-content {
    padding-right: 60px;
}

.goal-content h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.goal-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.goal-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.goal-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Alternate card colors */
.goal-card:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.goal-card:nth-child(2) .goal-icon {
    background: var(--secondary-color);
}

.goal-card:nth-child(2) .goal-content h3:after {
    background: var(--secondary-color);
}

.goal-card:nth-child(3) {
    border-left-color: var(--accent-color);
}

.goal-card:nth-child(3) .goal-icon {
    background: var(--accent-color);
}

.goal-card:nth-child(3) .goal-content h3:after {
    background: var(--accent-color);
}

.goal-card:nth-child(4) {
    border-left-color: #FF6B6B;
}

.goal-card:nth-child(4) .goal-icon {
    background: #FF6B6B;
}

.goal-card:nth-child(4) .goal-content h3:after {
    background: #FF6B6B;
}

.goal-card:nth-child(5) {
    border-left-color: #4ECDC4;
}

.goal-card:nth-child(5) .goal-icon {
    background: #4ECDC4;
}

.goal-card:nth-child(5) .goal-content h3:after {
    background: #4ECDC4;
}

/* Goals CTA */
.goals-cta {
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border-radius: 15px;
    color: white;
    text-align: center;
}

.goals-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.goals-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.goals-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.goals-cta .btn:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .goal-card {
        padding: 30px;
    }
    
    .goal-number {
        font-size: 2.5rem;
    }
    
    .goal-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .goal-icon {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .goals-cta {
        padding: 40px 20px;
    }
    
    .goals-cta h2 {
        font-size: 1.8rem;
    }
}

/* File: assets/css/style.css - Tambahan untuk Gallery Page */

/* Gallery Navigation */
.gallery-nav {
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-tab {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.gallery-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Gallery Content */
.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-header {
    text-align: center;
}

.slide-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Comparison Section */
.comparison-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.comparison-label {
    margin-bottom: 15px;
}

.comparison-label .badge {
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 20px;
}

.comparison-frame {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.comparison-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-frame {
    height: 200px;
    overflow: hidden;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-frame img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px;
    background: rgba(255, 255, 240, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* View More Button */
.view-more-btn {
    padding: 12px 40px;
    font-size: 1rem;
    border-radius: 30px;
}

.view-more-btn i {
    transition: transform 0.3s;
}

.view-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Slide Navigation */
.slide-navigation {
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .slide-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .comparison-frame {
        height: 200px;
    }
}

/* Frame styles for images */
.image-frame {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.image-frame.rounded {
    border-radius: 15px;
}

/* Portrait and landscape specific styles */
.gallery-frame img[data-orientation="portrait"] {
    object-fit: cover;
}

.gallery-frame img[data-orientation="landscape"] {
    object-fit: cover;
}

/* Frame with rounded corners (not sharp) */
.image-frame:not(.sharp) {
    border-radius: 15px;
}

/* Frame with sharp corners */
.image-frame.sharp {
    border-radius: 0;
}

/* File: assets/css/style.css - Tambahan untuk Donation Page */

/* Donation Info */
.donation-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.donation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.donation-methods {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.donation-methods h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.method-card {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.method-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.method-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.5;
}

.donation-cta .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Donation Stats */
.donation-stats {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.donation-stats h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

.progress-section {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.progress-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.progress {
    height: 25px;
    border-radius: 15px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Documentation */
.section-subtitle {
    font-size: 1.8rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.video-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Documentation Grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.doc-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.doc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.doc-frame {
    height: 200px;
    overflow: hidden;
}

.doc-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.doc-item:hover .doc-frame img {
    transform: scale(1.05);
}

.doc-caption {
    padding: 15px;
    background: rgba(255, 255, 240, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Box */
.cta-box {
    background: white;
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: inline-block;
    max-width: 800px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Responsive */
@media (max-width: 992px) {
    .donation-stats {
        margin-top: 40px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid, .doc-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box .btn {
        margin-bottom: 10px;
        width: 100%;
    }
}