/* floating button */
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 230px;
    height: 50px;
    opacity: 0.9;
    color: white;
    background-color: #25D366;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
}

.floating-whatsapp img {
    width: 35px;
    height: 35px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* header css */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #777777;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #222222;
}

.cta-button {
    background-color: #222222;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #444444;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #222222;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #777777;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 0;
}

.mobile-cta-button {
    background-color: #222222;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}





/* Footer Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #FFFFFF;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}


.footer {
    background-color: #222222;
    color: #FFFFFF;
    padding: 4rem 0 0;
}

.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 512px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-info-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-info-content p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #FFFFFF;
}


/* =========================================
   Minimalist Modern Footer Styles 
   ========================================= */
.footer-modern {
    background-color: #FAFAFA; /* Light, clean background */
    color: #222222;
    padding: 6rem 0 2rem;
    border-top: 1px solid #EAEAEA;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    
}

.footer-greeting {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #111111;
    letter-spacing: -0.02em;
}

.footer-contact-btn {
    display: inline-block;
    background-color: #222222;
    color: #FFFFFF;
    padding: 1rem 3.5rem;
    border-radius: 50px; /* Modern pill shape */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-contact-btn:hover {
    background-color: #000000;
    transform: translateY(-4px); /* Slight lift effect */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-bottom {
    border-top: 1px solid #EAEAEA;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #888888;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile adjustments specific to the new footer */
@media (max-width: 768px) {
    .footer-modern {
        padding: 4rem 0 2rem;
    }
    .footer-greeting {
        font-size: 2.25rem;
    }
    .footer-content {
        margin-bottom: 3rem;
    }
    .footer-contact-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 1.875rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .indications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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

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

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}