/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    height: 52px;
    width: auto;
    min-width: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

/* Logo image inside footer icon */
.footer__logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.footer__logo-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}

.footer__brand>p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer__social {
    display: flex;
    gap: 0.6rem;
}

.footer__social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.footer__social a svg {
    width: 18px;
    height: 18px;
}

.footer__social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer__links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer__links a::before {
    content: '\203A';
    color: var(--teal);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.footer__contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.7;
}

.footer__contact-icon svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.6);
}

.footer__contact-phones {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer__contact-item a,
.footer__contact-item p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    transition: var(--transition);
    display: block;
}

.footer__contact-item a:hover {
    color: var(--gold);
}

/* Footer bottom */
.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer__bottom-links a:hover {
    color: var(--gold);
}

/* Gold bar */
.footer__top-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--purple-light));
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}