/* GAZAB — Footer */

.site-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.65);
}

/* Top band */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(36px, 5vw, 52px) 0;
}
.footer-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-top__label {
    font-family: var(--font-display);
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.footer-top__headline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4;
}
.footer-top__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #fff;
    color: #0a0a0a;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.footer-top__btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Main body */
.footer-body {
    padding: clamp(56px, 8vw, 72px) 0 clamp(40px, 6vw, 56px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: clamp(32px, 5vw, 56px);
    margin-bottom: 48px;
}

.footer-logo-box {
    display: inline-block;
    margin-bottom: 24px;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.9;
}
.footer-logo-box:hover {
    transform: translateY(-2px);
    opacity: 1;
}
.footer-logo-box img {
    height: 46px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand__desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    max-width: 300px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s ease;
}
.footer-col a:hover {
    color: #fff;
}

.footer-contact-list li {
    margin-bottom: 18px;
}
.footer-contact-list span {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}
.footer-contact-list a:hover {
    color: var(--gold);
}
.footer-contact-list p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Trust strip inside footer */
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-trust span {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-trust span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* Bottom bar */
.footer-bottom {
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.3);
}
.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}
.footer-bottom__links {
    display: flex;
    gap: 24px;
}
.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    transition: color 0.25s;
}
.footer-bottom__links a:hover {
    color: #fff;
}
.footer-bottom__tagline {
    font-family: var(--font-display);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-top__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-top__btn {
        width: 100%;
        justify-content: center;
    }
    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-trust {
        justify-content: center;
    }
}
