/* ==========================================
   MODERN FOOTER ENHANCEMENTS
========================================== */

.footer {
    position: relative;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.footer .item h3 {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer .item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer .service-list li a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
}

.footer .service-list li a:hover {
    color: var(--primary-green) !important;
    transform: translateX(5px);
}

.footer .service-list li a i {
    margin-right: 0.5rem;
    color: var(--primary-green);
    transition: all var(--transition-base);
}

.footer .service-list li a:hover i {
    transform: translateX(3px);
}

.footer .working-hour li,
.footer .location li {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.footer .working-hour li i,
.footer .location li i {
    color: var(--primary-green);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.footer .working-hour li span,
.footer .location li span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer .social-icon {
    margin-top: 2rem;
}

.footer .social-icon h3 {
    font-size: 1.125rem;
}

.footer .icon-list {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer .icon-list li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all var(--transition-base);
}

.footer .icon-list li a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(117, 181, 25, 0.3);
}

.footer .icon-list li a i {
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
}

.footer-bottom .gradient-text {
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom a {
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
}

.footer-bottom a:hover {
    opacity: 0.8;
}

.footer-bottom .fa-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-bottom .text-right {
        text-align: left !important;
        margin-top: 0.75rem;
    }

    .footer .item {
        margin-bottom: 2rem;
    }

    .footer .icon-list {
        justify-content: flex-start;
    }
}