
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #1f2937;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-square {
    width: 56px;
    height: 56px;
    /*background: linear-gradient(135deg, #f97316, #ea580c);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease;
}

.logo-square:hover {
    transform: scale(1.05);
}

.logo-square span {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ea580c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #374151;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    color: #374151;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-link:hover {
    background: #fff7ed;
    color: #ea580c;
}

.mobile-donate {
    margin: 0.5rem 1.5rem 0;
    width: calc(100% - 3rem);
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ea580c;
    border: 2px solid #ea580c;
}

.btn-outline:hover {
    background: #fff7ed;
}

.btn-white {
    background: white;
    color: #ea580c;
}

.btn-white:hover {
    background: #fff7ed;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.8), rgba(255, 255, 255, 0.9), rgba(220, 252, 231, 0.8));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(251, 146, 60, 0.1), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(34, 197, 94, 0.1), transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fed7aa;
    color: #c2410c;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 2rem;
}

.gradient-text {
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #ea580c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
}

.contact-icon {
    background: #d1fae5;
    padding: 0.75rem;
    border-radius: 9999px;
    color: #059669;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 14px;
    color: #6b7280;
}

.contact-number {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.stats-card {
    position: absolute;
    bottom: -24px;
    left: 32px;
    right: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 0 1rem;
}

.stat-divider {
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

/* About Section */
.about-section {
    padding: 96px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fed7aa;
    color: #c2410c;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-green {
    background: #d1fae5;
    color: #065f46;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 64px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.years-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(249, 115, 22, 0.3);
    max-width: 280px;
}

.years-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.years-text {
    color: #fed7aa;
}

.about-content {
    padding: 0 1rem;
}

.content-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-box {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    border-radius: 8px;
}

.quote-text {
    color: #374151;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ea580c;
    font-size: 32px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-description {
    color: #6b7280;
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 96px 0;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.5), white, rgba(220, 252, 231, 0.5));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-12px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 32px;
}

.icon-red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
}

.icon-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.icon-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.icon-purple {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    color: #9333ea;
}

.icon-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #ec4899;
}

.icon-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #f59e0b;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
}

.cta-banner {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 25px rgba(249, 115, 22, 0.3);
    margin-top: 4rem;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 20px;
    color: #fed7aa;
    max-width: 768px;
    margin: 0 auto 2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    color: #fed7aa;
}

/* Gallery Section */
.gallery-section {
    padding: 96px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

.gallery-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-text p {
    font-size: 14px;
    color: #e5e7eb;
}

/* Gallery Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #fb923c;
}

.modal-content {
    max-width: 1200px;
    width: 100%;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.modal-text {
    margin-top: 1.5rem;
    text-align: center;
    color: white;
}

.modal-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-text p {
    color: #d1d5db;
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.5), white, rgba(220, 252, 231, 0.5));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.info-text {
    color: #6b7280;
    line-height: 1.6;
}

.donation-card {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 15px rgba(249, 115, 22, 0.3);
}

.donation-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.donation-description {
    color: #fed7aa;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
}

.form-group textarea {
    resize: none;
}

.map-wrapper {
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    height: 384px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 14px;
    color: #9ca3af;
}

.footer-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list button,
.footer-list li {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-list button:hover {
    color: #fb923c;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #f97316;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright i {
    color: #f97316;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .stats-card {
        left: 16px;
        right: 16px;
    }
    
    .years-badge {
        position: static;
        margin-top: 1rem;
    }
    
    .values-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}