/* Customer Footer CSS */

.footer {
    background: linear-gradient(135deg, #0d4b34, #0f6d45);
    color: #fff;
    margin-top: auto;
}

.footer-inner {
    padding: 2rem 0;
}

.footer-item {
    margin-bottom: 2rem;
}

.footer-item h4 {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-item p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-item .btn-link {
    color: #fff !important;
    text-decoration: none !important;
    padding: 0.25rem 0 !important;
    text-align: left !important;
    border: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-item .btn-link:hover {
    color: #afffca !important;
    text-decoration: none !important;
    /* Removed transform animation per user request */
}

.footer-item .btn-link i {
    color: #22c55e !important;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.footer-item .btn-link:hover i {
    color: #afffca !important;
}

/* Maps styling */
.footer-item iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.footer-item iframe:hover {
    transform: scale(1.02);
}

/* Copyright section */
.copyright {
    background: rgba(0, 0, 0, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright .text-primary {
    color: #22c55e !important;
    text-decoration: none;
    font-weight: 600;
}

.copyright .text-white {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Back to top button */
.back-to-top {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.back-to-top:hover {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.back-to-top i {
    font-size: 1.2rem;
    color: white !important;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-inner {
        padding: 1.5rem 0;
    }
    
    .footer-item {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-item h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-item .btn-link {
        justify-content: center;
        padding: 0.5rem 0 !important;
    }
    
    .footer-item iframe {
        height: 150px;
    }
    
    .copyright {
        text-align: center !important;
    }
    
    .copyright .col-md-6 {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
}

/* Animation effects - DISABLED per user request */
.footer-item {
    opacity: 1;
}

/* Hover effects for footer links - simplified */
.footer-item .btn-link {
    position: relative;
    overflow: hidden;
}

.footer-item iframe:hover {
    /* Removed scaling animation per user request */
    transform: none;
}

.back-to-top:hover {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    /* Removed scaling animation per user request */
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}