.banner-section {
    max-width: 2560px;
    margin: 0 auto;
}

.slide-item {
    position: relative;
    height: 600px;
}

.image-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.slide-team { background-image: url('/images/hero/team-united-aid.webp'); }
.slide-elderly { background-image: url('/images/hero/ageless-grace.webp'); }
.slide-children { background-image: url('/images/hero/young-hearts.webp'); }

.slide-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #25283a;
    z-index: -1;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    z-index: 1;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.slide-content p {
    max-width: 700px;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-banner {
    display: inline-block;
    background: #59A9EA;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background: #25283a;
    color: #fff;
}

.banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.banner-carousel .owl-nav button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-size: 2rem !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

.banner-carousel .owl-nav button:hover {
    background: #59A9EA !important;
}

.banner-carousel .owl-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.banner-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 0;
}

.banner-carousel .owl-dot.active span {
    background: #59A9EA !important;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-image {
        order: -1;
    }

    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .banner-carousel .owl-nav {
        display: none;
    }

    .counter-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .counter-item {
        flex: 1 1 40%;
    }

    .counter-divider {
        display: none;
    }
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    background: rgb(237, 241, 245);
    overflow: hidden;
}

.about-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-decor .arc {
    position: absolute;
    top: -450px;
    left: -350px;
    width: 750px;
    height: 750px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
}

.about-decor .circle-1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-title {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 3.75rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.about-content h3 {
    font-family: 'Yeseva One', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #25283a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.btn-about {
    display: inline-block;
    background: #59A9EA;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #25283a;
    color: #fff;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.image-grid img {
    width: 195px;
    height: 150px;
    aspect-ratio: 195 / 150;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-grid figure:hover img {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #25283a;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mission-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.mission-subtitle {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 1.25rem;
    font-weight: 400;
}

.mission-header h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 10px 0 20px;
}

.mission-header p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    text-align: center;
    padding: 40px 25px;
}

.pillar-card:hover .pillar-icon i {
    transform: scale(1.1);
}

.pillar-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -70%);
}

.pillar-card:nth-child(1) .pillar-icon::before { background: rgba(90, 154, 154, 0.4); }
.pillar-card:nth-child(2) .pillar-icon::before { background: rgba(107, 122, 138, 0.4); }
.pillar-card:nth-child(3) .pillar-icon::before { background: rgba(139, 115, 85, 0.4); }
.pillar-card:nth-child(4) .pillar-icon::before { background: rgba(122, 138, 90, 0.4); }

.pillar-icon i {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.pillar-card:nth-child(1) .pillar-icon i { color: #59A9EA; }
.pillar-card:nth-child(2) .pillar-icon i { color: #59A9EA; }
.pillar-card:nth-child(3) .pillar-icon i { color: #d4a574; }
.pillar-card:nth-child(4) .pillar-icon i { color: #d4a574; }

.pillar-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.circle-decor {
    position: absolute;
    border-radius: 50%;
    border: 60px solid rgba(200, 215, 230, 0.3);
    pointer-events: none;
}

.circle-one {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.circle-two {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.vision-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.vision-row:last-child {
    margin-bottom: 0;
}

.vision-row.reverse .vision-content {
    order: 1;
}

.vision-row.reverse .vision-image {
    order: 2;
}


.vision-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/4;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vision-subtitle {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 1.25rem;
}

.vision-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.5rem;
    color: #25283a;
    margin: 10px 0 20px;
}

.vision-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.btn-vision {
    display: inline-block;
    background: #59A9EA;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-vision:hover {
    background: #25283a;
    color: #fff;
}

/* Counter Section */
.counter-section {
    background: #25283a;
    padding: 60px 0;
}

.counter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.counter-item {
    text-align: center;
    width: 220px;
}

.counter-number {
    font-family: 'Yeseva One', serif;
    font-size: 3.5rem;
    font-weight: 400;
    display: block;
    min-width: 150px;
    height: 55px;
    line-height: 55px;
    margin-bottom: 10px;
    contain: layout paint;
}

.counter-number.blue { color: #59A9EA; }
.counter-number.yellow { color: #d4a84b; }
.counter-number.purple { color: #9b7ed9; }
.counter-number.orange { color: #e89b5a; }

.counter-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

.counter-divider {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    transform: rotate(20deg);
}

/* Causes Section */
.causes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.causes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.causes-header {
    text-align: center;
    margin-bottom: 50px;
}

.causes-subtitle {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 1.25rem;
}

.causes-header h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.5rem;
    color: #25283a;
    margin-top: 10px;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cause-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cause-icon {
    width: 55px;
    height: 55px;
    background: #59A9EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cause-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.cause-card h3 {
    font-size: 1.25rem;
    color: #25283a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cause-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Latest Activities Section */
.latest-section {
    padding: 80px 0;
    background: #edf1f5;
}

.latest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.latest-image img {
    width: 400px;
    height: 460px;
    aspect-ratio: 400 / 460;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.latest-subtitle {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 1.25rem;
}

.latest-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.5rem;
    color: #25283a;
    margin: 10px 0 20px;
    line-height: 1.2;
}

.latest-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.btn-latest {
    display: inline-block;
    background: #59A9EA;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-latest:hover {
    background: #25283a;
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-carousel .owl-stage-outer {
    padding: 10px 0;
}

.gallery-carousel .owl-item {
    padding: 0 10px;
}

/* Help Section */
.help-section {
    padding: 80px 0;
    background: #25283a;
    text-align: center;
}

.help-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.help-section h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.help-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    text-align: left;
}

.btn-help {
    display: inline-block;
    background: #59A9EA;
    color: #fff;
    padding: 16px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-help:hover {
    background: #fff;
    color: #25283a;
}

@media (max-width: 576px) {
    .slide-item {
        height: 400px;
    }

    .slide-team { background-image: url('/images/hero/mobile/team-united-aid.webp'); }
    .slide-elderly { background-image: url('/images/hero/mobile/ageless-grace.webp'); }
    .slide-children { background-image: url('/images/hero/mobile/young-hearts.webp'); }

    .slide-content h2 {
        font-size: 1.75rem;
    }

    .slide-content p {
        font-size: 0.875rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .image-grid {
        gap: 5px;
    }

    .mission-section {
        padding: 50px 0;
    }

    .mission-header h2 {
        font-size: 1.75rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pillar-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 5px 44px;
        text-align: left;
        padding: 25px 20px;
    }

    .pillar-card .pillar-icon {
        grid-row: span 2;
        margin: 0;
    }

    .pillar-card h3 {
        align-self: end;
        margin-bottom: 0;
    }

    .pillar-card p {
        align-self: start;
    }

    .vision-section {
        padding: 50px 0;
    }

    .vision-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .vision-image {
        order: 1;
    }

    .vision-content h2 {
        font-size: 1.75rem;
    }

    .circle-decor {
        display: none;
    }

    .counter-section {
        padding: 40px 0;
    }

    .counter-container {
        gap: 25px;
    }

    .counter-item {
        flex: 1 1 40%;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 0.8rem;
    }

    .causes-section {
        padding: 50px 0;
    }

    .causes-header h2 {
        font-size: 1.75rem;
    }

    .causes-grid {
        grid-template-columns: 1fr;
    }

    .latest-section {
        padding: 50px 0;
    }

    .latest-container {
        grid-template-columns: 1fr;
        padding: 5px;
    }

    .latest-content h2 {
        font-size: 1.75rem;
    }

    .help-section {
        padding: 50px 0;
    }

    .help-section h2 {
        font-size: 1.75rem;
    }

    .help-section p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .nav-menu {
        gap: 0;
    }

    .btn-donate {
        padding: 0.625rem 1.25rem;
        font-size: 0.77rem;
    }
}
