﻿:root {
    --navy: #050e1e;
    --navy-2: #081327;
    --red: #a3221c;
    --red-dark: #6e1310;
    --gold-1: #ffd25a;
    --gold-2: #f8ac2e;
    --card-bg: #f7f3ef;
    --text-muted: #8b93a3;
    --text-body: #454b5a;
    --white: #ffffff;
    --radius-lg: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b1220;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.ziomix-footer {
    width: 100%;
    color: var(--white);
}

/* ===================== HERO / MAIN AREA ===================== */
.footer-hero {
    position: relative;
    width: 100%;
    background-color: var(--navy);
    background-image: url('../img/footer-bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    aspect-ratio: 1774/887;
    overflow: hidden;
}

.footer-hero__inner {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 31% 23% 23% 23%;
    padding: 11.6% 11.4% 0% 0;
    gap: 37px;
}
/* ---- Brand / intro column (sits over the white card area of the bg image) ---- */
.brand-col {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    padding: 6.2% 6% 0 6%;
    color: var(--navy);
}

.brand-col__logo {
    width: 44%;
    min-width: 150px;
    max-width: 230px;
    height: auto;
    margin-bottom: 6%;
}

.brand-col h2 {
    font-size: clamp(18px, 2.15vw, 34px);
    line-height: 1.18;
    font-weight: 700;
    color: #0a1330;
}

    .brand-col h2 .accent {
        color: var(--red);
    }

.brand-col p {
    margin-top: 0%;
    font-size: 14px;
    line-height: 20px;
    color: #5b5346;
    max-width: 34ch;
}

/* ---- shared column heading badge ---- */
.col-title {
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    color: #1c1204;
    font-weight: 700;
    font-size: clamp(11px, 0.95vw, 15px);
    padding: 0.55em 1.1em 0.55em 0.9em;
    border-radius: 0 999px 999px 0;
    margin-left: -1;
    white-space: nowrap;
    border-radius: 10px 5px 20px 0px;
    padding: 6px 20px;
    font-size: 16px;
}
.links-col .col-title {
    margin-left: 35px;
}

    .col-title svg {
        flex-shrink: 0;
        width: 1.1em;
        height: 1.1em;
    }

/* ===================== QUICK LINKS ===================== */
.links-col {
    grid-column: 2;
    padding-top: 4.5%;
}

.links-list {
    margin-top: 6%;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

    .links-list li {
        display: flex;
        align-items: center;
        gap: 0.7em;
        padding: 0.55em 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        font-size: 14px;
        font-weight: 400;
    }

        .links-list li:last-child {
            border-bottom: none;
        }

.icon-badge {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #c4342a, var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.35);
}

    .icon-badge svg {
        width: 15px;
        height: 15px;
    }



.chevron {
    opacity: 0.75;
    width: 0.7em;
    height: 0.7em;
    flex-shrink: 0;
}

/* ===================== CONTACT NOW ===================== */
.contact-col {
    grid-column: 3;
    padding-top: 4.5%;
}

.contact-list {
    margin-top: 6%;
    display: flex;
    flex-direction: column;
    gap: 0.9em;
}

    .contact-list li {
        display: flex;
        gap: 0.7em;
        padding-bottom: 0.9em;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        font-size: 14px;
    }

        .contact-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

    .contact-list strong {
        display: block;
        font-weight: 600;
        margin-bottom: 0.25em;
        font-size: 1.02em;
    }

    .contact-list p, .contact-list a {
        color: #c7cbd6;
        line-height: 1.45;
        font-weight: 400;
    }

/* ===================== OUR LOCATION ===================== */
.location-col {
    grid-column: 4;
    padding-top: 4.5%;
}

.map-box {
    margin-top: 6%;
    border: 1.5px solid var(--gold-2);
    border-radius: 14px;
    padding: 10px;
}

.map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.82;
    border-radius: 8px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 42%, rgba(255,168,38,0.35), transparent 55%), repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 34px), repeating-linear-gradient(25deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 46px), #0d1a33;
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%,-60%);
    width: 20%;
}

    .map-pin svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 6px 8px rgba(0,0,0,0.5));
    }

.map-glow {
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: 34%;
    height: 10%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255,168,38,0.65), transparent 70%);
    border-radius: 50%;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    margin-top: 5%;
}

    .location-info svg {
        width: 1.3em;
        height: 1.3em;
        flex-shrink: 0;
        margin-top: 0.15em;
        color: var(--gold-2);
    }

    .location-info strong {
        display: block;
        font-size: clamp(13px, 1.1vw, 18px);
        font-weight: 700;
    }

    .location-info span {
        display: block;
        font-size: 16px;
        color: #c7cbd6;
        margin-top: 0.2em;
        line-height: 1.4;
    }

/* ===================== BOTTOM BAR ===================== */
.footer-bottom {
    position: relative;
    background: var(--navy-2);
    padding: 10px;
    border-top: 3px solid transparent;
    display: flex;
    align-items: center;
    margin-top: -45px;
    justify-content: space-between;
    gap: 1.5em;
    flex-wrap: wrap;
    overflow: hidden;
}

.socials {
    display: flex;
    gap: 0.7em;
    flex-shrink: 0;
}

    .socials a {
        width: 2.2em;
        height: 2.2em;
        border-radius: 50%;
        background: radial-gradient(circle at 32% 28%, #c4342a, var(--red-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .18s ease;
    }

        .socials a:hover {
            transform: translateY(-2px);
        }

    .socials svg {
        width: 1em;
        height: 1em;
    }

.copyright {
    font-size: 14px;
    color: #c7cbd6;
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

    .copyright .brand-credit {
        color: var(--gold-2);
        font-weight: 600;
    }

.brick-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.6em;
    position: relative;
    z-index: 1;
}

    .brick-mark svg {
        width: 2.4em;
        height: 2.4em;
        color: var(--white);
    }

.stripe-deco {
    position: absolute;
    right: 9%;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(100deg, var(--red) 30%, var(--gold-2) 100%);
    transform: skewX(-18deg);
    opacity: 0.9;
}
.footer-bottom a {
    margin-left: 0px;
    color: #efefef;
}
footer {
    background: #0c0c0c;
    color: #bdbdbd;
    padding: 0px 0 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1024px) {
    .footer-hero {
        aspect-ratio: auto;
    }

    .footer-hero__inner {
        position: static;
        grid-template-columns: 1fr 1fr;
        row-gap: 2.4em;
        padding: 8% 6% 10%;
    }

    .brand-col {
        grid-column: 1 / -1;
        padding: 0;
        color: var(--white);
    }

        .brand-col h2 {
            color: var(--white);
        }

        .brand-col p {
            color: #d7d9e0;
        }

    .links-col {
        grid-column: 1;
        padding-top: 0;
    }

    .contact-col {
        grid-column: 2;
        padding-top: 0;
    }

    .location-col {
        grid-column: 1 / -1;
        padding-top: 0;
    }

    .map-box {
        max-width: 600px;
    }
    .footer-bottom a {
    margin-left: 0px;
    color: #efefef;
}
    .brand-col__logo {
        filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%) hue-rotate(131deg) brightness(102%) contrast(101%);
    }
    .stripe-deco, .brick-mark {
        display: none;
    }
    .copyright {
        font-size: 12px;
    }
}

@media (max-width:640px) {
    .footer-hero {
        background-image: none;
        background-color: var(--navy);
    }

    .footer-hero__inner {
        grid-template-columns: 1fr;
        padding: 9% 7% 12%;
        row-gap: 2.2em;
    }

    .links-col, .contact-col, .location-col {
        grid-column: 1;
    }

    .brand-col__logo {
        max-width: 100%;
        border-radius: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.6em 6% 2em;
    }

    .stripe-deco {
        display: none;
    }

    .copyright {
        order: 2;
        display: flex;
        flex-direction: column;
    }

    .socials {
        order: 1;
    }

    .brick-mark {
        order: 3;
        display: none;
    }
    .links-col .col-title {
         margin-left: 5px; 
    }
    .links-list {
        padding-left: 10px;
    }
}

