/* ==========================================================================
   FOOTER STYLES - Clean & Modern
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, #080c14 0%, #0f1419 100%);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Top accent border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #009b9b 0%, #00c0c0 50%, #009b9b 100%);
    z-index: 1;
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 20px;
}

/* Footer Logo */
.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.3);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Title */
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00c0c0;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00c0c0;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #00c0c0;
    transform: translateX(3px);
}

.footer-menu a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #00c0c0;
    width: 18px;
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #00c0c0;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00c0c0;
    border-color: #00c0c0;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.client-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #00c0c0 0%, #009b9b 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
}

.client-portal-btn:hover {
    background: linear-gradient(135deg, #009b9b 0%, #007a7a 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 192, 192, 0.4);
}

.client-portal-btn i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }

    .copyright-text {
        margin-bottom: 15px;
    }

    .client-portal-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-menu a,
    .footer-contact a {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }
}
