/* Premium Footer Styles */
:root {
    --footer-bg: #f8f9fa;
    --footer-text: #2c3e50;
    --footer-link: #89CCB4;
    --footer-link-hover: #6ab498;
    --footer-border: #e9ecef;
    --footer-icon: #89CCB4;
}

.footer-premium {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 0 0;
    position: relative;
}

/* Footer Sections */
.footer-premium .footer-section {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-premium .footer-title {
    color: var(--footer-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-premium .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--footer-link);
}

/* Footer Links */
.footer-premium .footer-links {
    list-style: none;
    padding: 0 0.5rem;
    margin: 0;
}

.footer-premium .footer-links li {
    margin-bottom: 0.8rem;
    padding: 0.3rem 0;
}

.footer-premium .footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0;
}

.footer-premium .footer-links a:hover {
    color: var(--footer-link);
    transform: translateX(5px);
}

.footer-premium .footer-links i {
    margin-right: 0.5rem;
    color: var(--footer-icon);
    font-size: 0.9rem;
}

/* Feature Boxes */
.footer-premium .feature-box {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-premium .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.footer-premium .feature-box-icon {
    margin-bottom: 1rem;
}

.footer-premium .feature-box-icon i {
    color: var(--footer-icon);
    font-size: 2rem;
}

.footer-premium .feature-box-content a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-premium .feature-box-content a:hover {
    color: var(--footer-link);
}

/* Social Icons */
.footer-premium .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-premium .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--footer-icon);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-premium .social-icon:hover {
    background: var(--footer-link);
    color: white;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-premium .footer-bottom {
    background: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--footer-border);
}

.footer-premium .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-premium .footer-logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.footer-premium .footer-logo:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-premium {
        padding-top: 3rem;
    }
    
    .footer-premium .feature-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-premium .footer-bottom {
        text-align: center;
    }
    
    .footer-premium .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}
