/* Premium Footer Styles - Using Design System Variables */
.premium-footer {
    background: #e5e5e5;
    color: var(--text-lighter);
    padding-top: 5rem;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 3fr 1fr;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--bg-primary);
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-logo i {
    color: var(--primary-light);
}

.footer-mission {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-lighter);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.contact-pill:hover {
    color: var(--primary-light);
}

.contact-pill i {
    color: var(--primary-light);
    width: 16px;
    font-size: 1.1rem;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 640px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-heading {
    color: #5d7b6f;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    text-decoration: none;
    color: var(--text-lighter);
    font-size: 0.9rem;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.footer-list a:hover {
    color: var(--bg-primary);
    padding-left: 4px;
    border-bottom-color: var(--primary-light);
}

/* Social & Newsletter */
.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-box {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 44px;
    height: 44px;
    background: #bdb4b4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.25rem;
}

.social-circle:hover {
    transform: translateY(-5px);
}

.social-circle.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-circle.fb:hover {
    background: #1877f2;
}

.social-circle.yt:hover {
    background: #ff0000;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 5rem;
    padding: 2rem 0;
    background: #5d7b6f;
    font-size: 0.85rem;
    border-top: 1px solid #1e293b;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.footer-payment-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.75rem;
    color: #1e293b;
    transition: color 0.5s;
}

.footer-payment-icons:hover {
    color: var(--text-light);
}

.footer-container {
    color: #e5e5e5;
}