:root {
    --primary: #1e6b32;
    --deep: #0c3b1d;
    --soft: #e8f5e9;
    --accent: #4caf50;
    --off: #f5f8f4;
    --text: #0f3d20;
    --glass: rgba(255, 255, 255, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body.tfmf-premium {
    font-family: 'Open Sans', system-ui, Arial;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px
}

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    background: var(--primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 200;
    transform: translateY(-8px);
    transition: transform .2s ease;
    opacity: 0
}

.skip-link:focus {
    opacity: 1;
    transform: translateY(0);
    outline: 3px solid rgba(76, 175, 80, 0.3)
}

/* Section Separation - Enhanced */
section {
    padding: 6rem 0;
    position: relative;
    transition: background .3s ease
}

section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(232, 245, 233, 0.5), rgba(232, 245, 233, 0.3), rgba(232, 245, 233, 0.15))
}

section:nth-of-type(odd) {
    background: #fff
}

.hero {
    padding: 0 !important;
    background: transparent !important
}

/* Section dividers */
section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 107, 50, 0.15) 20%, rgba(30, 107, 50, 0.15) 80%, transparent);
}

section:nth-of-type(2)::before {
    display: none
}

/* Section spacing - better rhythm */
section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

@media (max-width:768px) {
    section {
        padding: 4rem 1.5rem;
        margin: 0
    }

    section .container {
        padding: 0;
        max-width: 100%
    }

    section:not(.hero)::before {
        width: 95%
    }
}

/* Nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .2s ease
}

.nav-toggle:hover {
    transform: scale(1.05)
}

.nav-toggle .hamburger {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: all .3s ease
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
    transition: all .3s ease
}

.nav-toggle .hamburger::before {
    top: -8px
}

.nav-toggle .hamburger::after {
    bottom: -8px
}

.nav-toggle.active .hamburger {
    background: transparent
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg)
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg)
}

/* Mobile nav open */
@media (max-width:900px) {
    .nav-toggle {
        display: block
    }

    .main-nav {
        position: fixed;
        left: 0;
        top: 64px;
        right: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        padding: 1.5rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
        border-radius: 0 0 18px 18px;
        z-index: 100;
        max-height: calc(100vh - 64px);
        overflow-y: auto
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem
    }

    .main-nav a {
        display: block;
        padding: .75rem 1rem;
        border-radius: 12px;
        transition: all .25s ease;
        font-size: 1rem
    }

    .main-nav a:active {
        background: rgba(30, 107, 50, 0.1);
        transform: scale(0.98)
    }

    .header-cta {
        display: none
    }
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.55));
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 32px rgba(15, 61, 32, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all .3s ease
}

.site-header.scrolled {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    box-shadow: 0 8px 40px rgba(15, 61, 32, 0.12)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform .3s ease;
    text-decoration: none
}

.brand:hover {
    transform: scale(1.02)
}

.brand-logo {
    height: 44px;
    width: auto;
    transition: transform .3s ease
}

.brand:hover .brand-logo {
    transform: rotate(-5deg)
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--deep);
    font-size: 1.1rem
}

.main-nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    padding: .6rem .8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    overflow: hidden;
    transition: all .25s ease
}

.main-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.08), rgba(76, 175, 80, 0.06));
    opacity: 0;
    transition: opacity .25s ease
}

.main-nav a:hover::before {
    opacity: 1
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-2px)
}

.header-cta .btn-join {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: .7rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.2);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.header-cta .btn-join::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity .3s ease
}

.header-cta .btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30, 107, 50, 0.3)
}

.header-cta .btn-join:hover::before {
    opacity: 1
}

/* Hero with Carousel */
.hero {
    position: relative;
    height: 85vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: #fff;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden
}

.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05)
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 12s ease-out forwards
}

@keyframes kenBurns {
    0% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1.15)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 59, 29, 0.75) 0%, rgba(30, 107, 50, 0.55) 50%, rgba(12, 59, 29, 0.7) 100%);
    z-index: 1
}

.dots-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: patternShift 60s linear infinite
}

@keyframes patternShift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 60px 60px
    }
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 120px;
    overflow: hidden;
    opacity: 0.4
}

.wave-animation svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    animation: waveMove 12s ease-in-out infinite
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-2%)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 2.5rem
}

/* Desktop: hide square logo, show long logo */
.hero-logo-mobile {
    display: none;
}

.hero-logo-desktop {
    display: block;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: badgePulse 3s ease-in-out infinite
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2)
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3)
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #fff;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -1px
}

.hero-sub {
    font-size: 1.2rem;
    margin: 0 0 1.8rem;
    opacity: .96;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    max-width: 700px
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: .8rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity .3s ease
}

.btn:hover::before {
    opacity: 1
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2)
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 60px rgba(76, 175, 80, 0.4)
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25)
}

/* Carousel controls */
.carousel-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.15)
}

.carousel-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.4)
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .35s ease;
    animation: bounceDown 2s ease-in-out infinite
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%) translateY(-4px)
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@media (max-width:900px) {
    .scroll-indicator {
        bottom: 60px;
        width: 36px;
        height: 36px;
        font-size: 1rem
    }
}

.carousel-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.4)
}

/* Animate-in for hero content */
.animate-in {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

/* Reveal animation with stagger support */
.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity .8s cubic-bezier(0.4, 0, 0.2, 1), transform .8s cubic-bezier(0.4, 0, 0.2, 1)
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.reveal[data-delay="0"] {
    transition-delay: 0s
}

.reveal[data-delay="100"] {
    transition-delay: 0.1s
}

.reveal[data-delay="200"] {
    transition-delay: 0.2s
}

.reveal[data-delay="300"] {
    transition-delay: 0.3s
}

.reveal[data-delay="400"] {
    transition-delay: 0.4s
}

/* Parallax sections */
.parallax-section {
    transition: transform .1s ease-out;
    will-change: transform
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    border: 2px solid rgba(255, 255, 255, 0.3)
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 56px rgba(15, 61, 32, 0.4)
}

/* Video Modal - Premium Design */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.3), rgba(76, 175, 80, 0.25), rgba(12, 59, 29, 0.35));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: opacity .4s ease
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.5));
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    opacity: 0;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001
}

.video-modal.active .video-modal-content {
    transform: scale(1);
    opacity: 1
}

.video-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.4);
    z-index: 1002
}

.video-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 12px 36px rgba(30, 107, 50, 0.6)
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) inset
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

@media (max-width:900px) {
    .video-modal-content {
        width: 95%;
        padding: 1.5rem;
        border-radius: 20px
    }

    .video-modal-close {
        top: -12px;
        right: -12px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-width: 2px
    }

    .video-wrapper {
        border-radius: 12px
    }
}

@media (max-width:480px) {
    .video-modal-content {
        width: 98%;
        padding: 1rem;
        border-radius: 16px
    }

    .video-modal-close {
        top: -10px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 1rem
    }
}

/* Join Us Modal */
.join-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.join-modal.active {
    opacity: 1;
    pointer-events: auto
}

.join-modal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.3), rgba(76, 175, 80, 0.25), rgba(12, 59, 29, 0.35));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: opacity .4s ease
}

.join-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.9));
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform: scale(0.9);
    opacity: 0;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001
}

.join-modal.active .join-modal-content {
    transform: scale(1);
    opacity: 1
}

.join-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.4);
    z-index: 1002
}

.join-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 12px 36px rgba(30, 107, 50, 0.6)
}

#joinUsModalTitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 0 0 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 16px rgba(30, 107, 50, 0.1)
}

.join-modal-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(12, 59, 29, 0.7);
    margin: 0 0 2.5rem;
    font-weight: 500
}

.join-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
}

.join-option {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.join-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 0
}

.join-option:hover::before {
    opacity: .05
}

.join-option:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.25)
}

.join-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.1), rgba(76, 175, 80, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all .4s ease
}

.join-option:hover .join-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.3)
}

.join-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: color .4s ease
}

.join-option:hover .join-icon i {
    color: #fff
}

.join-option h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem;
    font-family: 'Poppins', sans-serif;
    transition: color .4s ease
}

.join-option:hover h3 {
    color: var(--accent)
}

.join-option p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: rgba(12, 59, 29, 0.8);
    line-height: 1.6;
    margin: 0 0 1.5rem
}

.join-arrow {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    margin-top: auto
}

.join-option:hover .join-arrow {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateX(8px)
}

.join-arrow i {
    font-size: 1.125rem;
    color: var(--primary);
    transition: color .4s ease
}

.join-option:hover .join-arrow i {
    color: #fff
}

@media (max-width:900px) {
    .join-modal-content {
        width: 95%;
        max-width: 600px;
        padding: 2.5rem 1.5rem;
        margin: 1rem
    }

    .join-modal-close {
        top: -12px;
        right: -12px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-width: 2px
    }

    #joinUsModalTitle {
        font-size: 2rem;
        margin-bottom: 0.5rem
    }

    .join-modal-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem
    }

    .join-options {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .join-option {
        padding: 2rem 1.5rem
    }

    .join-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem
    }

    .join-icon i {
        font-size: 1.75rem
    }

    .join-option h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem
    }

    .join-option p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem
    }
}

@media (max-width:480px) {
    .join-modal-content {
        width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
        margin: 1rem;
        border-radius: 20px
    }

    .join-modal-close {
        top: -10px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px
    }

    #joinUsModalTitle {
        font-size: 1.65rem;
        line-height: 1.2;
        margin-bottom: 0.5rem
    }

    .join-modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.4
    }

    .join-options {
        gap: 1.25rem
    }

    .join-option {
        padding: 1.75rem 1.25rem;
        border-radius: 16px
    }

    .join-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem
    }

    .join-icon i {
        font-size: 1.5rem
    }

    .join-option h3 {
        font-size: 1.2rem;
        margin-bottom: 0.65rem;
        line-height: 1.3
    }

    .join-option p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem
    }

    .join-arrow {
        width: 36px;
        height: 36px
    }

    .join-arrow i {
        font-size: 1rem
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

    .leaf,
    .service-card,
    .reveal,
    .impact-number,
    .animate-in,
    .hero-slide,
    .ken-burns {
        transition: none !important;
        animation: none !important
    }

    html {
        scroll-behavior: auto
    }
}

/* Floating leaves - Enhanced */
.leaf {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: .85;
    z-index: 2;
    animation: float 12s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1)
}

.leaf-1 {
    left: 8%;
    top: 20%;
    width: 200px;
    height: 120px;
    animation-duration: 10s;
    animation-delay: 0s
}

.leaf-2 {
    right: 10%;
    top: 35%;
    width: 240px;
    height: 140px;
    animation-duration: 14s;
    animation-delay: 2s
}

.leaf-3 {
    left: 25%;
    bottom: 15%;
    width: 140px;
    height: 80px;
    animation-duration: 9s;
    animation-delay: 1s
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: .85
    }

    25% {
        transform: translate(15px, -20px) rotate(5deg);
        opacity: .7
    }

    50% {
        transform: translate(-10px, 15px) rotate(-8deg);
        opacity: .9
    }

    75% {
        transform: translate(20px, 10px) rotate(3deg);
        opacity: .75
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: .85
    }
}

/* Impact - Enhanced */
.impact {
    padding: 6rem 0 !important;
    background: transparent !important;
    position: relative
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem
}

.impact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 233, 0.5));
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 48px rgba(15, 61, 32, 0.08), 0 0 0 1px rgba(30, 107, 50, 0.05);
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.impact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
    opacity: 0;
    transition: opacity .4s ease
}

.impact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 64px rgba(15, 61, 32, 0.15), 0 0 0 1px rgba(30, 107, 50, 0.1)
}

.impact-card:hover::before {
    opacity: 1
}

.icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.25), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.icon-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    filter: blur(12px);
    transition: opacity .4s ease;
    z-index: -1
}

.impact-card:hover .icon-circle {
    transform: scale(1.1) rotate(8deg)
}

.impact-card:hover .icon-circle::after {
    opacity: .6
}

.impact-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 4px 16px rgba(30, 107, 50, 0.15);
    margin: 0.5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.impact-label {
    font-size: .95rem;
    color: rgba(15, 61, 32, 0.75);
    margin-top: .5rem;
    font-weight: 600;
    letter-spacing: 0.3px
}

/* Services - Enhanced */
.services {
    padding: 6rem 0 !important;
    background: transparent !important
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative
}

.section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--deep);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block
}

.section-head h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

.section-head .sub {
    color: rgba(15, 61, 32, 0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(15, 61, 32, 0.06);
    transition: all .45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.05), rgba(76, 175, 80, 0.03));
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
    pointer-events: none
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1)
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 59, 29, 0.7));
    opacity: 0;
    transition: opacity .45s ease
}

.service-content {
    padding: 1.5rem
}

.service-card h3 {
    margin: 0 0 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: var(--deep);
    font-size: 1.3rem;
    transition: color .3s ease
}

.service-card p {
    color: rgba(15, 61, 32, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 24px 72px rgba(15, 61, 32, 0.12)
}

.service-card:hover::before {
    opacity: 1
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.15)
}

.service-card:hover .service-overlay {
    opacity: 1
}

.service-card:hover h3 {
    color: var(--primary)
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    position: relative
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s ease
}

.btn-link:hover {
    gap: 0.75rem
}

.btn-link:hover::after {
    width: 100%
}

/* Featured */
.featured {
    padding: 2.4rem 0
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: center
}

.featured-media {
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 12px
}

.featured-content {
    padding: 1rem 1.5rem
}

.featured-content h3 {
    font-family: 'Poppins';
    color: var(--deep)
}

.lead {
    color: rgba(15, 61, 32, 0.85)
}

.benefits {
    list-style: disc;
    margin-left: 1.4rem
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0
}

/* About - Enhanced */
.about {
    padding: 6rem 0 !important;
    position: relative;
    background: transparent !important
}

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 3rem 0;
    border-radius: 20px;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero:hover .about-hero-image img {
    transform: scale(1.05);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 61, 32, 0.1) 0%, rgba(30, 107, 50, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-hero-badge {
    position: absolute;
    right: 32px;
    bottom: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 12px 32px rgba(30, 107, 50, 0.5);
    z-index: 2;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
}

/* Story Content */
.story-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.story-header {
    text-align: center;
    margin-bottom: 3rem;
}

.story-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--deep);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.story-header h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

.story-header .lead {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2rem;
    letter-spacing: 0.3px;
}

.story-body {
    margin-bottom: 3rem;
}

.story-body p {
    color: rgba(15, 61, 32, 0.85);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.story-body p:first-of-type {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(15, 61, 32, 0.95);
}

/* Story Highlights */
.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.5));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(76, 175, 80, 0.15);
    box-shadow: 0 8px 32px rgba(15, 61, 32, 0.08);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(15, 61, 32, 0.15);
    border-color: var(--accent);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    transition: transform .3s ease;
}

.highlight-item:hover i {
    transform: scale(1.1);
}

.highlight-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--deep);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-item p {
    color: rgba(15, 61, 32, 0.75);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Partners Section - Modern Design */
.partners-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fdf8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section .section-head {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.partners-section .section-head h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.partners-wrapper {
    position: relative;
    padding: 2rem 0;
}

.partners-scroll-container {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-track {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    animation: horizontalScroll 40s linear infinite;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes horizontalScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    flex-shrink: 0;
    width: 500px;
    perspective: 1000px;
}

.partner-card-inner {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 61, 32, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.05), rgba(76, 175, 80, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.partner-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.partner-card:hover .partner-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 107, 50, 0.15);
    border-color: var(--accent);
}

.partner-card:hover .partner-card-inner::before {
    opacity: 1;
}

.partner-card:hover .partner-card-inner::after {
    left: 100%;
}

.partner-logo-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fdf8, #ffffff);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(15, 61, 32, 0.06);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-wrapper {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 20px rgba(30, 107, 50, 0.12);
}

.partner-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.partner-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--deep);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-info h4 {
    color: var(--primary);
}

.partner-type {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--soft), #e0f2e1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(30, 107, 50, 0.2);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-type {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.05);
}

/* Decorative Elements */
.partners-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary), transparent);
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.decoration-leaf {
    position: absolute;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) rotate(-15deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px) rotate(-10deg);
    }
}

/* Partners CTA */
.partners-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--soft), #e0f2e1);
    border-radius: 20px;
    border: 2px dashed var(--accent);
    position: relative;
    z-index: 2;
}

.partners-cta-text {
    font-size: 1.2rem;
    color: var(--deep);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partners-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.partners-cta .btn i {
    transition: transform 0.3s ease;
}

.partners-cta .btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0;
    }

    .partners-section .section-head h2 {
        font-size: 2rem;
    }

    .partner-card {
        width: 350px;
    }

    .partner-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .partner-logo-wrapper {
        width: 150px;
        height: 100px;
    }

    .partner-info h4 {
        font-size: 1.3rem;
    }

    .partners-cta {
        padding: 2rem;
    }

    .partners-cta-text {
        font-size: 1rem;
    }

    .decoration-circle {
        display: none;
    }
}

/* Legacy Grid Styles (if needed elsewhere) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 61, 32, 0.15);
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.1), transparent);
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 1;
}

.about-media:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(15, 61, 32, 0.2);
}

.about-media:hover::before {
    opacity: 1;
}

.about-media img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-media:hover img {
    transform: scale(1.05);
}

.about-media .badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.4);
    z-index: 2;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
}

.about-content {
    padding: 1rem 0;
}

.about-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--deep);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

.about-content p {
    color: rgba(15, 61, 32, 0.8);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-content p:first-of-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(15, 61, 32, 0.9);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.8rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(76, 175, 80, 0.15);
    border-bottom: 2px solid rgba(76, 175, 80, 0.15);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--deep);
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-item i {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform .3s ease;
}

.about-content:hover .stat-item i {
    transform: scale(1.1);
}

.stat-item span {
    position: relative;
}

.about-content .btn-link {
    margin-top: 1rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 0;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
}

.about-content .btn-link i {
    transition: transform .3s ease;
}

.about-content .btn-link:hover i {
    transform: translateX(6px);
}

/* About stats */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.8rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(76, 175, 80, 0.15);
    border-bottom: 2px solid rgba(76, 175, 80, 0.15)
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--deep);
    font-weight: 600;
    font-size: 0.95rem
}

.stat-item i {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform .3s ease
}

.about-content:hover .stat-item i {
    transform: scale(1.1)
}

.stat-item span {
    position: relative
}

@media (max-width:900px) {
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        margin: 1.5rem 0
    }

    .stat-item {
        font-size: 0.9rem
    }

    .stat-item i {
        font-size: 1.1rem
    }
}

/* Mission - Enhanced */
.mission {
    padding: 6rem 0 !important;
    background: transparent !important;
    position: relative
}

.mission .center {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--deep);
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%)
}

.mission .center::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1
}

.mission-item {
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.3));
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(76, 175, 80, 0.1)
}

.mission-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
    opacity: 0;
    transition: opacity .4s ease
}

.mission-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 61, 32, 0.15);
    border-color: rgba(76, 175, 80, 0.3)
}

.mission-item:hover::before {
    opacity: 1
}

.mission-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--soft), rgba(232, 245, 233, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.15)
}

.mission-item .icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    filter: blur(16px);
    transition: opacity .4s ease;
    z-index: -1
}

.mission-item:hover .icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    box-shadow: 0 12px 36px rgba(30, 107, 50, 0.3)
}

.mission-item:hover .icon::after {
    opacity: .5
}

.mission-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--deep);
    margin: 0;
    font-weight: 700;
    transition: color .3s ease;
    letter-spacing: 0.3px
}

.mission-item:hover h4 {
    color: var(--primary)
}

/* FB posts, testimonials, get involved - Enhanced */
.fb-posts {
    padding: 6rem 0 !important;
    background: transparent !important
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem
}

.fb-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(76, 175, 80, 0.1)
}

.fb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 61, 32, 0.15)
}

.fb-card .thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease
}

.fb-card:hover .thumb {
    transform: scale(1.1)
}

.fb-body {
    padding: 1.5rem
}

.fb-body h4 {
    color: var(--deep);
    margin-bottom: 0.5rem;
    font-size: 1.1rem
}

.testimonials {
    padding: 6rem 0 !important;
    background: transparent !important;
    overflow: hidden;
}

.test-grid {
    display: flex;
    gap: 2rem;
    animation: scroll-rtl 30s linear infinite;
    width: max-content;
}

.test-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.test-card {
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.3));
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
    transition: all .4s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    min-width: 320px;
    max-width: 320px;
}

.test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 61, 32, 0.15)
}

.test-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid rgba(76, 175, 80, 0.2);
    margin-bottom: 1.5rem;
}

.test-card blockquote {
    margin: 0;
    color: var(--deep);
    line-height: 1.6
}

.test-card cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(15, 61, 32, 0.7);
    font-weight: 600;
}

.get-involved {
    padding: 6rem 0 !important;
    background: transparent !important
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem
}

.involved-card {
    color: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(12, 59, 29, 0.2);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.involved-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity .4s ease
}

.involved-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 72px rgba(12, 59, 29, 0.3)
}

.involved-card:hover::before {
    opacity: 1
}

.involved-card i {
    font-size: 2.5rem
}

.involved-card h4 {
    font-size: 1.2rem;
    font-weight: 600
}


/* Footer - Enhanced */
.site-footer {
    background: linear-gradient(135deg, var(--deep), var(--primary));
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 0;
    border-top: 3px solid var(--accent);
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(76, 175, 80, 0.2), transparent);
    pointer-events: none
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    position: relative;
    z-index: 1
}

.f-about h4,
.f-links h4,
.f-involved h4,
.f-contact h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700
}

.f-about p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem
}

.f-about .org-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.2rem
}

.f-about .org-support {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic
}

.f-links ul,
.f-involved ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.f-links li,
.f-involved li {
    margin-bottom: 0.6rem
}

.f-links a,
.f-involved a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all .25s ease;
    display: inline-block;
    position: relative;
    padding-left: 18px
}

.f-links a::before,
.f-involved a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    transition: transform .25s ease
}

.f-links a:hover,
.f-involved a:hover {
    color: #fff;
    padding-left: 24px
}

.f-links a:hover::before,
.f-involved a:hover::before {
    transform: translateX(4px)
}

.foot-logo {
    height: 48px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1)
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2)
}

.socials a:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    border-color: var(--accent)
}

.footer-bar {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.1)
}

.footer-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem
}

.xyphla-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease
}

.xyphla-link:hover {
    color: #66bb6a
}

/* Developer credit in footer */
.footer-bar .dev-credit{display:inline-flex;align-items:center;gap:0.5rem;color:rgba(255,255,255,0.8);font-size:0.92rem}
.footer-bar .dev-credit .dev-icon{width:18px;height:18px;border-radius:4px;background:rgba(255,255,255,0.08);display:inline-flex;align-items:center;justify-content:center;font-size:12px;color:var(--accent)}
.footer-bar .dev-credit a.xyphla-link{color:#fff;font-weight:700;padding:4px 8px;border-radius:6px;background:linear-gradient(135deg,rgba(76,175,80,0.12),transparent);}
.footer-bar .dev-credit a.xyphla-link:hover{background:linear-gradient(135deg,rgba(76,175,80,0.18),transparent);color:#e8f5e9}

/* Responsive tweaks - Enhanced Mobile Experience */
@media (max-width:900px) {
    .container {
        padding: 1rem
    }

    /* Hero mobile optimizations */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 70px;
        border-radius: 0
    }

    .hero-content {
        padding: 1.5rem;
        padding-top: 0;
        text-align: center
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
        padding: 0 1.5rem
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        letter-spacing: 1.5px
    }

    .hero-sub {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem
    }

    .hero-logo {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%
    }

    /* Show square logo on mobile, hide long logo */
    .hero-logo-mobile {
        display: block !important;
    }

    .hero-logo-desktop {
        display: none !important;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        padding: 0 1.5rem
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem
    }

    .hero-actions .btn:last-child {
        margin-bottom: 2rem
    }

    .carousel-controls {
        bottom: 20px;
        gap: 8px
    }

    .carousel-dot {
        width: 10px;
        height: 10px
    }

    .carousel-dot.active {
        width: 24px
    }

    /* Particle canvas mobile */
    .particle-canvas {
        opacity: 0.5
    }
}

/* Height-based responsive fixes for short devices */
@media (max-height: 700px) {
    /* Reduce hero section for short screens */
    .hero {
        min-height: auto !important;
        padding-top: 60px;
        padding-bottom: 1rem;
    }

    .hero-content {
        padding: 1rem;
        gap: 0.75rem;
    }

    /* Reduce logo size significantly */
    .hero-logo-mobile img,
    .hero-logo-desktop img {
        height: 120px !important;
        max-height: 120px;
    }

    /* Reduce badge size */
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        margin-bottom: 0.5rem;
    }

    /* Reduce title size */
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    /* Reduce subtitle */
    .hero-sub {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    /* Compact buttons */
    .hero-actions {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .hero-actions .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Very short devices - more aggressive reduction */
@media (max-height: 600px) {
    .hero {
        padding-top: 50px;
        padding-bottom: 0.5rem;
    }

    .hero-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    /* Further reduce logo */
    .hero-logo-mobile img,
    .hero-logo-desktop img {
        height: 90px !important;
        max-height: 90px;
    }

    /* Minimal badge */
    .hero-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
        margin-bottom: 0.25rem;
    }

    /* Smaller title */
    .hero-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.25rem;
    }

    /* Smaller subtitle */
    .hero-sub {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    /* Very compact buttons */
    .hero-actions {
        gap: 0.4rem;
        padding: 0 0.75rem;
    }

    .hero-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Hide download button on very short screens */
    .hero-actions .btn:last-child {
        display: none;
    }
}

@media (max-width:900px) {
    /* Particle canvas mobile */
    .particle-canvas {
        opacity: 0.5
    }

    /* Wave animation mobile */
    .wave-animation {
        height: 80px
    }

    /* Impact section mobile */
    .impact {
        padding: 4rem 1.5rem !important
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem
    }

    .impact-card {
        padding: 1.8rem 1rem;
        border-radius: 18px
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }

    .impact-number {
        font-size: 1.9rem
    }

    .impact-label {
        font-size: 0.88rem
    }

    /* Services mobile */
    .services {
        padding: 4rem 1.5rem !important
    }

    .section-head {
        margin-bottom: 2.5rem
    }

    .section-head h2 {
        font-size: 1.9rem
    }

    .section-head .sub {
        font-size: 1rem;
        padding: 0 0.5rem
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem
    }

    .service-card {
        border-radius: 18px
    }

    .service-image-wrapper {
        height: 200px
    }

    .service-content {
        padding: 1.4rem
    }

    .service-card h3 {
        font-size: 1.25rem
    }

    .service-card:hover {
        transform: translateY(-6px) scale(1)
    }

    /* Featured mobile */
    .featured {
        padding: 3rem 1.5rem !important
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem
    }

    .featured-media {
        height: 260px;
        border-radius: 18px
    }

    .featured-content {
        padding: 0
    }

    .featured-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem
    }

    .lead {
        font-size: 1rem;
        line-height: 1.6
    }

    .benefits {
        margin-left: 1.2rem;
        font-size: 0.95rem
    }

    .featured-meta {
        flex-direction: column;
        gap: 0.5rem
    }

    /* About mobile */
    .about {
        padding: 4rem 1.5rem !important
    }

    /* About Hero Mobile */
    .about-hero {
        margin: 2rem 0;
        border-radius: 18px;
    }

    .about-hero-image {
        height: 350px;
        border-radius: 18px;
    }

    .about-hero-badge {
        right: 18px;
        bottom: 18px;
        font-size: 0.88rem;
        padding: 10px 20px;
    }

    /* Story Content Mobile */
    .story-content {
        padding: 0 1rem 2rem;
    }

    .story-header h3 {
        font-size: 1.9rem;
    }

    .story-header .lead {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .story-body p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .story-body p:first-of-type {
        font-size: 1.05rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .highlight-item i {
        font-size: 2rem;
    }

    .highlight-item h4 {
        font-size: 1.2rem;
    }

    /* Legacy Grid Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .about-media {
        border-radius: 18px
    }

    .about-media img {
        border-radius: 18px
    }

    .about-media .badge {
        font-size: 0.88rem;
        padding: 10px 18px;
        left: 18px;
        bottom: 18px
    }

    .about-media:hover {
        transform: translateY(-4px)
    }

    .about-content {
        padding: 0
    }

    .about-content h3 {
        font-size: 1.9rem;
        margin-bottom: 1.4rem
    }

    .about-content h3::after {
        width: 50px;
        height: 3px;
        bottom: -6px
    }

    .about-content p {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 1.2rem
    }

    .about-content p:first-of-type {
        font-size: 1.02rem
    }

    .about-content .btn-link {
        font-size: 1rem;
        margin-top: 0.8rem
    }

    /* Mission mobile */
    .mission {
        padding: 4rem 1.5rem !important
    }

    .mission .center {
        font-size: 1.9rem;
        margin-bottom: 2.5rem
    }

    .mission .center::after {
        width: 60px;
        height: 3px;
        bottom: -10px
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .mission-item {
        padding: 1.8rem 1rem;
        border-radius: 18px
    }

    .mission-item:hover {
        transform: translateY(-6px) scale(1)
    }

    .mission-item .icon {
        width: 68px;
        height: 68px;
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
        border-radius: 14px
    }

    .mission-item:hover .icon {
        transform: scale(1.1) rotate(5deg)
    }

    .mission-item h4 {
        font-size: 0.98rem
    }

    /* FB posts mobile */
    .fb-posts {
        padding: 4rem 1.5rem !important
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .fb-card {
        border-radius: 18px
    }

    .fb-card .thumb {
        height: 200px
    }

    .fb-body {
        padding: 1.4rem
    }

    .fb-body h4 {
        font-size: 1.15rem
    }

    /* Testimonials mobile */
    .testimonials {
        padding: 4rem 1.5rem !important
    }

    .test-grid {
        animation: scroll-rtl 20s linear infinite;
    }

    .test-card {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem;
        border-radius: 18px;
        min-width: 280px;
        max-width: 280px;
    }

    .test-card img {
        width: 80px;
        height: 80px;
    }

    .test-card blockquote {
        font-size: 0.95rem
    }

    /* Get involved mobile */
    .get-involved {
        padding: 4rem 1.5rem !important
    }

    .involved-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .involved-card {
        padding: 2.2rem 1.5rem;
        border-radius: 18px;
        min-height: 130px
    }

    .involved-card i {
        font-size: 2.2rem
    }

    .involved-card h4 {
        font-size: 1.15rem
    }

    .involved-card:hover {
        transform: translateY(-4px)
    }

    /* Footer mobile */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .f-about {
        text-align: center
    }

    .foot-logo {
        margin: 0 auto 1rem
    }

    .f-about p {
        font-size: 0.9rem
    }

    .f-links ul,
    .f-involved ul {
        text-align: center
    }

    .f-links a,
    .f-involved a {
        padding-left: 0;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem
    }

    .f-links a::before,
    .f-involved a::before {
        position: relative;
        left: auto
    }

    .f-links a:hover,
    .f-involved a:hover {
        padding-left: 0
    }

    .socials {
        justify-content: center
    }

    .footer-bar p {
        font-size: 0.85rem
    }

    /* Back to top mobile */
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem
    }

    /* Header mobile refinements */
    .brand-logo {
        height: 36px
    }

    .brand-name {
        font-size: 1rem
    }

    .header-inner {
        padding: 0.8rem 0
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width:480px) {
    .hero-title {
        font-size: 1.75rem
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 1px
    }

    .hero-sub {
        font-size: 0.95rem
    }

    .section-head h2 {
        font-size: 1.6rem
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .impact-card {
        padding: 1.5rem
    }

    .mission-grid {
        grid-template-columns: 1fr
    }

    .mission-item {
        padding: 1.8rem 1.2rem
    }

    .mission-item .icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem
    }

    .involved-card {
        padding: 1.5rem 1rem
    }

    /* About Hero Small Mobile */
    .about-hero-image {
        height: 280px;
    }

    .about-hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        right: 12px;
        bottom: 12px;
    }

    .story-header h3 {
        font-size: 1.6rem;
    }

    .story-header .lead {
        font-size: 1rem;
    }

    .story-body p {
        font-size: 0.95rem;
    }

    .highlight-item {
        padding: 1.2rem;
    }

    .highlight-item i {
        font-size: 1.8rem;
    }

    .highlight-item h4 {
        font-size: 1.1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width:900px) and (orientation:landscape) {
    .hero {
        height: auto;
        min-height: 80vh
    }

    .hero-content {
        padding: 2rem 1rem
    }

    .hero-title {
        font-size: 1.8rem
    }

    .hero-sub {
        font-size: 0.95rem
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center
    }

    .hero-actions .btn {
        width: auto
    }
}

/* Touch device optimizations */
@media (hover:none) and (pointer:coarse) {
    .service-card:active {
        transform: translateY(-6px) scale(0.98);
        transition: transform .15s ease
    }

    .impact-card:active {
        transform: translateY(-6px) scale(0.98);
        transition: transform .15s ease
    }

    .involved-card:active {
        transform: translateY(-4px) scale(0.98);
        transition: transform .15s ease
    }

    .btn:active {
        transform: translateY(-2px) scale(0.97);
        transition: transform .15s ease
    }

    .back-to-top:active {
        transform: translateY(-4px) scale(0.95);
        transition: transform .15s ease
    }

    .socials a:active {
        transform: translateY(-4px) scale(0.95);
        transition: transform .15s ease
    }

    .btn-link:active {
        opacity: 0.7;
        transition: opacity .15s ease
    }

    /* Remove hover-only effects on touch */
    .service-image-wrapper img {
        transform: scale(1.05)
    }

    .service-overlay {
        opacity: 0.3
    }

    /* Make tap areas larger on mobile */
    .carousel-dot {
        width: 14px;
        height: 14px;
        padding: 4px
    }

    .carousel-dot.active {
        width: 36px
    }

    /* Improve touch target sizes */
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .main-nav a {
        min-height: 48px;
        display: flex;
        align-items: center
    }

    .back-to-top {
        width: 52px;
        height: 52px;
        font-size: 1.3rem
    }

    /* Add visual feedback for all interactive elements */
    button:active,
    a:active {
        opacity: 0.8
    }

    /* Disable 300ms tap delay */
    a,
    button,
    input,
    select,
    textarea {
        touch-action: manipulation
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--deep), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent, rgba(12, 59, 29, 0.3));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* About Story Section */
.about-story {
    padding: 2rem 0 6rem !important;
    background: transparent !important;
}

.about-story .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(232, 245, 233, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(76, 175, 80, 0.15);
    transition: all .4s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.12);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.25);
}

.highlight-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--deep);
    margin: 0 0 0.5rem;
}

.highlight-content p {
    color: rgba(15, 61, 32, 0.8);
    margin: 0;
    font-size: 1rem;
}

/* Impact Areas */
.impact-areas {
    padding: 6rem 0 !important;
    background: transparent !important;
}

.impact-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.impact-area-card {
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.3));
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-area-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 72px rgba(15, 61, 32, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.impact-area-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 12px 36px rgba(30, 107, 50, 0.3);
    transition: all .4s ease;
}

.impact-area-card:hover .impact-area-icon {
    transform: scale(1.15) rotate(8deg);
}

.impact-area-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--deep);
    margin: 0 0 1rem;
}

.impact-area-card p {
    color: rgba(15, 61, 32, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Our Approach */
.our-approach {
    padding: 6rem 0 !important;
    background: transparent !important;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.3));
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.approach-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 72px rgba(15, 61, 32, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.approach-card:hover::before {
    opacity: 1;
}

.approach-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(76, 175, 80, 0.15);
    line-height: 1;
    transition: color .4s ease;
}

.approach-card:hover .approach-number {
    color: rgba(76, 175, 80, 0.25);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft), rgba(232, 245, 233, 0.6));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(30, 107, 50, 0.15);
    transition: all .4s ease;
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 36px rgba(30, 107, 50, 0.3);
}

.approach-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--deep);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.approach-card p {
    color: rgba(15, 61, 32, 0.75);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Impact Numbers Section */
.impact-numbers {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, var(--deep), var(--primary)) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.impact-numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
}

.impact-numbers .container {
    position: relative;
    z-index: 2;
}

.impact-numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-numbers-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.impact-numbers-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.impact-numbers-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-8px);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.stat-value span:last-child {
    font-size: 2rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Community Voices */
.community-voices {
    padding: 6rem 0 !important;
    background: transparent !important;
    overflow: hidden;
}

.voices-grid {
    display: flex;
    gap: 2rem;
    animation: scroll-rtl 30s linear infinite;
    width: max-content;
}

.voices-grid:hover {
    animation-play-state: paused;
}

.voice-card {
    background: linear-gradient(145deg, #fff, rgba(232, 245, 233, 0.3));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    box-shadow: 0 12px 40px rgba(15, 61, 32, 0.08);
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 320px;
    max-width: 320px;
}

.voice-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 72px rgba(15, 61, 32, 0.15);
}

.voice-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(76, 175, 80, 0.2);
    margin-bottom: 1.5rem;
}

.voice-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(15, 61, 32, 0.85);
    margin: 0;
    font-style: italic;
    position: relative;
}

.voice-card blockquote::before {
    content: '"';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    font-size: 3rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
}

.voice-card cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(15, 61, 32, 0.7);
    font-weight: 600;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, rgba(30, 107, 50, 0.95), rgba(12, 59, 29, 0.95)) !important;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin: 0 0 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin: 0 0 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive - About Page */
@media (max-width:768px) {
    .page-hero {
        height: 220px;
        margin: 0 1.5rem;
        border-radius: 0 0 20px 20px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }

    .about-story {
        padding: 1rem 1.5rem 4rem !important;
    }

    .about-story .container {
        padding: 0;
    }

    .about-story .lead {
        font-size: 1.1rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .impact-areas {
        padding: 4rem 1.5rem !important;
    }

    .impact-areas .container {
        padding: 0;
    }

    .impact-areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-area-card {
        padding: 2.5rem 1.5rem;
    }

    .impact-area-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .our-approach {
        padding: 4rem 1.5rem !important;
    }

    .our-approach .container {
        padding: 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .approach-card {
        padding: 2rem 1.5rem;
    }

    .approach-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .approach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .impact-numbers {
        padding: 4rem 1.5rem !important;
    }

    .impact-numbers .container {
        padding: 0;
    }

    .impact-numbers-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .impact-numbers-content h2 {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-value span:last-child {
        font-size: 1.7rem;
    }

    .community-voices {
        padding: 4rem 1.5rem !important;
    }

    .community-voices .container {
        padding: 0;
    }

    .voices-grid {
        animation: scroll-rtl 20s linear infinite;
    }

    .voice-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.8rem;
    }

    .voice-card img {
        width: 80px;
        height: 80px;
    }

    .voice-card blockquote {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 4rem 1.5rem !important;
    }

    .cta-section .container {
        padding: 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* ============================================
   Services Page Styles
   ============================================ */

/* Services Intro */
.services-intro {
    padding: 6rem 0 4rem;
    text-align: center;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-intro .lead {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 600;
    line-height: 1.7;
}

/* Services Catalog Grid */
.services-catalog {
    padding: 4rem 0 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-catalog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-catalog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-catalog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-catalog-card:hover .service-catalog-image img {
    transform: scale(1.08);
}

.service-catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.service-catalog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-catalog-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-short-desc {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-catalog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    gap: 1rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-price i {
    font-size: 0.9rem;
}

.btn-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary);
    gap: 0.8rem;
}

.btn-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(4px);
}

/* Error/Empty Messages */
.error-message,
.empty-message {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
    border-radius: 16px;
    margin: 2rem 0;
}

.error-message i,
.empty-message i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.error-message p,
.empty-message p {
    font-size: 1.1rem;
    color: #8e6e42;
    margin: 0;
}

/* Pagination */
.pagination-nav {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-link:hover {
    background: var(--soft);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--green), var(--primary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.page-link i {
    font-size: 0.85rem;
}

/* Service Categories */
.service-categories {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff 0%, var(--soft) 100%);
    border-radius: 40px 40px 0 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.03) 0%, rgba(76, 175, 80, 0.06) 100%);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.5s ease;
}

.category-card:hover::before {
    transform: rotate(45deg) translateY(0);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.25);
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(76, 175, 80, 0.2));
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--green);
    transition: transform 0.4s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.15);
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive - Services */
@media (max-width:768px) {
    .services-intro {
        padding: 4rem 1.5rem 3rem;
    }

    .services-intro h1 {
        font-size: 2rem;
    }

    .services-intro .lead {
        font-size: 1.05rem;
    }

    .services-catalog {
        padding: 3rem 1.5rem 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-catalog-image {
        height: 200px;
    }

    .service-catalog-content {
        padding: 1.5rem;
    }

    .service-catalog-content h3 {
        font-size: 1.25rem;
    }

    .service-catalog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        background: var(--soft);
        border-radius: 12px;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }

    .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.9rem;
    }

    .service-categories {
        padding: 4rem 1.5rem;
        border-radius: 30px 30px 0 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 2.5rem 1.5rem;
    }

    .category-icon {
        width: 75px;
        height: 75px;
    }

    .category-icon i {
        font-size: 2rem;
    }

    .category-card h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   Single Service Page Styles
   ============================================ */

/* Service Intro */
.service-intro {
    padding: 4rem 0 3rem;
    text-align: center;
    background: #fff;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-intro h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-intro .lead {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}

/* Service Overview */
.service-overview {
    padding: 4rem 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.overview-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--primary));
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.4);
}

.image-badge i {
    font-size: 1.1rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.price-box {
    background: linear-gradient(135deg, var(--soft) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(46, 125, 50, 0.15);
    margin-bottom: 2.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
}

.overview-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.overview-actions .btn {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Impact Metrics */
.impact-metrics {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep), var(--primary));
    color: #fff;
}

.impact-metrics .section-head h2 {
    color: #fff;
}

.impact-metrics .section-head .sub {
    color: rgba(255, 255, 255, 0.85);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.metric-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.metric-card:hover .metric-icon {
    transform: rotate(8deg) scale(1.1);
}

.metric-icon i {
    font-size: 2rem;
    color: #fff;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.03) 0%, rgba(76, 175, 80, 0.06) 100%);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.5s ease;
}

.step-card:hover::before {
    transform: rotate(45deg) translateY(0);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--primary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
    z-index: 1;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(76, 175, 80, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--green), var(--primary));
    transform: rotate(-8deg) scale(1.1);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--green);
    transition: color 0.4s ease;
}

.step-card:hover .step-icon i {
    color: #fff;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff 0%, var(--soft) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25);
    transition: all 0.4s ease;
}

.trust-item:hover .trust-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.35);
}

.trust-icon i {
    font-size: 3rem;
    color: #fff;
}

.trust-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1.25rem;
    color: var(--deep);
}

.modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

.sponsor-form {
    padding: 2.5rem 3rem 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--soft);
    padding: 0.5rem;
    border-radius: 12px;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--green);
    font-weight: 700;
}

.qty-btn:hover {
    background: var(--green);
    color: #fff;
    transform: scale(1.1);
}

.quantity-selector input {
    width: 70px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep);
    padding: 0;
}

.total-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    padding: 1rem;
    background: linear-gradient(135deg, var(--soft), rgba(76, 175, 80, 0.08));
    border-radius: 12px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
}

.modal-result {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.success-message {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 2rem;
    border-radius: 16px;
}

.success-message i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.success-message h4 {
    font-size: 1.5rem;
    color: var(--deep);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text);
    margin: 0.5rem 0;
}

.success-actions {
    margin-top: 1.5rem;
}

.error-message {
    background: #ffebee;
    padding: 2rem;
    border-radius: 16px;
    color: #c62828;
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-loading {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid var(--soft);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive - Single Service */
@media (max-width:768px) {
    .service-intro {
        padding: 4rem 1.5rem 3rem;
    }

    .service-intro h1 {
        font-size: 2rem;
    }

    .service-intro .lead {
        font-size: 1.05rem;
    }

    .service-overview {
        padding: 4rem 1.5rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .overview-actions {
        flex-direction: column;
    }

    .overview-actions .btn {
        width: 100%;
    }

    .impact-metrics {
        padding: 4rem 1.5rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works {
        padding: 4rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-section {
        padding: 4rem 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        margin: 0 1rem;
    }

    .modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .sponsor-form {
        padding: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .total-display {
        font-size: 1.75rem;
    }
}

/* Floating Contact Widget */
.floating-contact-container {
  position: fixed;
  /* sensible fallbacks for browsers that don't support env() */
  bottom: 20px;
  right: 20px;
  /* lift above device safe area and home indicator when supported */
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: calc(20px + env(safe-area-inset-right));
  /* ensure the widget sits above most page chrome */
  z-index: 99999;
}

.contact-toggle-btn {
  width: 60px;
  height: 60px;
  /* use CSS variable so JS can change the background color/gradient */
  background: var(--contact-bg, linear-gradient(135deg, #16A085 0%, #128C7E 100%));
  color: #FFF;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, transform 0.3s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: visible;
}

.contact-toggle-btn i {
  display: inline-block;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: 50% 50%;
  font-size: 20px;
}

.contact-toggle-btn.animating i {
  transform: translateY(-8px) scale(0.8);
  opacity: 0;
}

.contact-toggle-btn.animating {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-toggle-btn .fa-times {
  font-size: 20px;
}

.contact-toggle-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #0f6b5f 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

.contact-toggle-btn:focus {
  outline: none;
}

.contact-hint {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #2c3e50;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.contact-hint::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #2c3e50;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.contact-toggle-btn:hover .contact-hint {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

.contact-menu-items {
  position: absolute;
  bottom: 75px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-contact-container.active .contact-menu-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact-container.active .contact-toggle-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.floating-contact-container.active .contact-toggle-btn .fa-comments:before {
  content: "\f00d";
  /* X icon */
}

.floating-contact-container.active .contact-hint {
  display: none;
}

.contact-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 180px;
}

.contact-menu-item i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

.whatsapp-item i {
  background-color: #25d366;
}

.email-item i {
  background-color: #16A085;
}

.facebook-item i {
  background-color: #1877f2;
}

.contact-menu-item:hover {
  transform: translateX(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #2c3e50;
}

.whatsapp-item:hover i {
  background-color: #128C7E;
  transform: scale(1.15) rotate(10deg);
}

.email-item:hover i {
  background-color: #0d6b58;
  transform: scale(1.15) rotate(-10deg);
}

.facebook-item:hover i {
  background-color: #0e5dc0;
  transform: scale(1.15) rotate(10deg);
}

.contact-label {
  font-family: 'Poppins', sans-serif;
}

@keyframes jumpCycle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.contact-menu-item.jump {
  animation: jumpCycle 0.6s ease;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(22, 160, 133, 0.6);
  }
}

.contact-toggle-btn {
  animation: pulse 2s infinite;
}

.floating-contact-container.active .contact-toggle-btn {
  animation: none;
}

/* Mobile responsive */
@media screen and (max-width: 767px) {
  .floating-contact-container {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 15px;
  }

  .contact-toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .contact-menu-items {
    bottom: 65px;
  }

  .contact-menu-item {
    padding: 10px 16px;
    font-size: 14px;
    min-width: 150px;
    gap: 10px;
  }

  .contact-menu-item i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .contact-hint {
    display: none;
  }
}

/* End Floating Contact Widget */