


  /* GLOBAL STYLES START
 */
    :root {
        --green: #005500;
        --yellow: #FDBE02;
        --dark: #000;
        --white: #fff;
        --off: #F8FBF8;
        --font-main: 'Nunito', sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Nunito', sans-serif;
        color: var(--dark);
        line-height: 1.5;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    html, body {
    max-width: 100%;
    overflow-x: hidden !important; 
    position: relative;
}
    h1,
    h2,
    h3,
    h4 {
        font-family: 'Nunito', serif;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    img {
        max-width: 100%;
        display: block;
    }
 

    .highlight-text {
        color: var(--green);
        font-weight: 700;
    }

    .section-title {
        font-weight: 600;
        font-size: clamp(27px, 4vw, 50px);
        margin-bottom: 12px;
        line-height: 1.1;
        color: var(--dark);
    }

     /* Fixed Universal Button */
    .btn-universal {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 20px; 
        border-radius: 99px;
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        transition: 0.3s ease;
        border: none;
        text-align: center;
        gap: 8px;
        width: max-content; 
        box-sizing: border-box;
    }

    .btn-universal:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-whatsapp {
        background: var(--green);
        color: #fff;
        border: 2px solid var(--green);
    }

    .btn-outline {
        border: 2px solid #ddd;
        color: var(--dark);
        background: #fff;
    }

    /* .btn-outline:hover {
        border-color: var(--green);
        color: var(--green);
    } */














.site-footer {
    position: relative;
    background-color: var(--green);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 40px 0 20px;
    z-index: 1;
    overflow: hidden;
}

.site-footer,
.site-footer * {
    font-family: 'Nunito', sans-serif !important;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--dark);
    opacity: 0.85;
    z-index: -1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.rule-line {
    height: 1px;
    flex-grow: 1;
    background: var(--yellow);
}

.rule-icon {
    display: flex;
    align-items: center;
}

.center-mango-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand,
.footer-contact-col {
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-size {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.f-tagline {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--yellow);
    font-weight: 600;
}

.brand-desc {
    font-size: 0.9rem !important;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 290px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.4rem;
    color: var(--yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.custom-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.custom-bullet-list li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.custom-bullet-list li a:hover {
    color: var(--yellow);
}

.css-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: inline-block;
}

.footer-contact-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.ct-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yellow);
    margin-bottom: 4px;
    font-weight: 700;
}

.ct-val {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.5;
}

.ct-val a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.ct-val a:hover {
    color: var(--yellow);
}

.footer-mid-divider {
    height: 1px;
    background: var(--green);
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .copy {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.mango-fall-container {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.mango-fall-container.side-left {
    left: -60px;
}

.mango-fall-container.side-right {
    right: -50px;
}

.mango-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    animation: mangoFall 6s linear infinite;
}

.mango {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mango.raw {
    opacity: 1;
    animation: rawFade 6s infinite;
}

.mango.ripe {
    opacity: 0;
    animation: ripeFade 6s infinite;
}

.burst-text {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--yellow);
    opacity: 0;
    white-space: nowrap;
    text-align: center;
    animation: textReveal 3s infinite;
    pointer-events: none;
}

.right-delay {
    animation-delay: 3s !important;
}

@keyframes mangoFall {
    0% { transform: translate(-50%, 0) scale(0.5); }
    40% { transform: translate(-50%, 120px) scale(0.9); }
    70% { transform: translate(-50%, 240px) scale(1.2); }
    85% { transform: translate(-50%, 260px) scale(1.2); }
    100% { transform: translate(-50%, 260px) scale(1.2); }
}

@keyframes rawFade {
    0%, 40% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes ripeFade {
    0%, 40% { opacity: 0; }
    50%, 85% { opacity: 1; }
    100% { opacity: 0; }
}

.mango-splash {
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translateX(-50%) scale(0);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.7), transparent 70%);
    opacity: 0;
    animation: splashEffect 6s infinite;
}

@keyframes splashEffect {
    0%, 70% { opacity: 0; transform: translateX(-50%) scale(0); }
    75% { opacity: 1; transform: translateX(-50%) scale(1.2); }
    85% { opacity: 0.6; transform: translateX(-50%) scale(1.8); }
    100% { opacity: 0; transform: translateX(-50%) scale(2.2); }
}

@keyframes textReveal {
    0%, 70% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
    80% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 99;
    transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-top-btn:hover {
    transform: scale(1.05);
}

.scroll-top-btn svg {
    animation: bounceUp 1.5s infinite ease-in-out;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(3px); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mango-fall-container.side-left {
        left: 0px;
    }

    .mango-fall-container.side-right {
        right: 0px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .burst-text {
        font-size: 1.1rem;
    }

    .mango-fall-container.side-left,
    .mango-fall-container.side-right {
        right: 10px;
        left: auto;
    }
}


.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--yellow);
    border: 2px solid #005500;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    opacity: 0; 
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #003300;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}