/* ===================================
   MODERN FOOTER - Clean Professional
   =================================== */

.footer-part {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 60px 0 0;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.footer-part::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f59e0b, #3b82f6, #10b981, transparent);
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.footer-widget {
    margin-bottom: 35px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    max-height: 55px;
    filter: brightness(1.1);
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #f59e0b;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b8b8b8;
}

.footer-contact i {
    color: #f59e0b;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
}

.footer-contact p {
    margin: 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-copytext {
    color: #b8b8b8;
    font-size: 14px;
    margin: 0;
}

.footer-copytext a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.footer-copytext a:hover {
    color: #d97706;
}

/* Scroll to Top - HIDDEN */
.scroll-to-top {
    display: none !important;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-part {
        padding: 40px 0 20px;
    }

    .footer-widget {
        margin-bottom: 25px;
    }
}