/* Footer Component Styles */

/* Footer Styles */
.footer {
    background-color: #183049;
    color: #fff;
    padding: 25px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 320px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Sansation', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-tagline {
    color: #92d348;
    font-family: 'Sansation', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4aa921, #92d348);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    bottom: 15%;
    right: 15%;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.logo-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-columns {
    display: flex;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: #4aa921 !important;
    font-family: 'Sansation', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
}

.footer-column-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column-list a {
    color: #fff;
    text-decoration: none;
    font-family: 'Sansation', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column-list a:hover {
    color: #4aa921;
}

.social-link-text {
    color: #fff !important;
    text-decoration: none;
    font-family: 'Sansation', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link-text:hover {
    color: #4aa921 !important;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: #4aa921;
    transform: translateY(-3px);
}

.social-link:hover img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2000%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.copyright {
    color: #fff;
    font-family: 'Sansation', sans-serif;
    font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
}

.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #00d757;
}

.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 25px;
}

.sign svg path {
    fill: white;
}

.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
}

.Btn:hover {
    width: 180px;
    border-radius: 40px;
    transition-duration: 0.3s;
}

.Btn:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 10px;
}

.Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
}

.Btn:active {
    transform: translate(2px, 2px);
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    }
    50% {
        box-shadow: 2px 2px 20px rgba(128, 128, 128, 0.4);
    }
    100% {
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    }
}

.Btn {
    animation: pulse 2s infinite;
}

.Btn:hover {
    animation: none;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-columns {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 120px;
        width: auto;
    }
    
    .footer-column-title {
        font-size: 12px !important;
        text-align: center !important;
        margin-bottom: 8px;
    }
    
    .footer-column-list {
        justify-content: center;
    }
    
    .footer-column-list a {
        font-size: 11px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        max-width: 100%;
        text-align: center;
    }

    .footer-brand-text {
        align-items: center;
    }
    
    .footer-logo-img {
        height: 45px !important;
        margin-top: 30px !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-columns {
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-columns {
        gap: 50px;
    }
    
    .footer-column-title {
        font-size: 15px !important;
    }
    
    .footer-column-list a {
        font-size: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 35px 0 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
}
