/* Premium footer */

.footer-premium {
    background: #1a2a3a;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-premium .footer-container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.footer-premium .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-premium .footer-brand {
    flex: 0 0 280px;
}

.footer-premium .footer-logo {
    display: block;
    width: auto;
    height: 42px;
    margin: 0 0 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-premium .tagline {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-premium .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-premium .social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-premium .social-links a:hover {
    background: var(--primary-orange, #E67E22);
    color: #fff;
    transform: translateY(-2px);
}

.footer-premium .footer-branches {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.footer-premium .branch-info strong {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 850;
}

.footer-premium .branch-info p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.86rem;
    line-height: 1.55;
    word-break: keep-all;
}

.footer-premium .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-premium .copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.8rem;
}

.footer-premium .legal-links {
    display: flex;
    gap: 22px;
}

.footer-premium .legal-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-premium .legal-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-premium .footer-top {
        flex-direction: column;
    }

    .footer-premium .footer-brand {
        flex-basis: auto;
    }

    .footer-premium .footer-branches {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 64px 0 34px;
    }

    .footer-premium .footer-container {
        width: min(100% - 32px, 1200px);
    }

    .footer-premium .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
