/* Premium Footer Custom Styles */
.premium-footer {
    background-color: #0e0e0e;
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(195, 160, 89, 0.2);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c3a059, transparent);
    opacity: 0.5;
}

.footer-top-info {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    display: block;
}

.footer-desc {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.8;
    max-width: 350px;
    margin-bottom: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(195, 160, 89, 0.1);
    color: #c3a059;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: #c3a059;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(195, 160, 89, 0.3);
}

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

.footer-contact-text a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: #c3a059;
}

.footer-contact-label {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: #c3a059;
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-menu a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    color: #c3a059;
    margin-right: 12px;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.footer-socials a:hover {
    background: #c3a059;
    border-color: #c3a059;
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(195, 160, 89, 0.3);
}

.footer-bottom-bar {
    margin-top: 60px;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: #777;
    font-size: 14px;
}

.footer-copyright span {
    color: #c3a059;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    border-color: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a.active {
    background-color: #c3a059;
    border-color: #c3a059;
    color: #fff;
}

@media (max-width: 991px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-copyright {
        text-align: center;
    }

    .premium-footer {
        padding-top: 60px;
    }

    .footer-top-info {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-item {
        justify-content: center;
    }
}