/* ===========================================================
   ICACON 2027 — footer.css
   Site footer styles. Pairs with footer.php.
   =========================================================== */

footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .82);
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal));
}

.foot-top {
    padding: 72px 44px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.foot-brand .mark {
    width: 40px;
    height: 40px;
    border-radius: 12;
    background: radial-gradient(circle at 30% 30%, var(--orange), var(--orange-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Fraunces';
    padding: 0;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
    overflow: hidden;
}

.foot-brand .mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foot-brand b {
    color: #fff;
    font-family: 'Fraunces';
    font-size: 1.15rem;
    display: block;
}

.foot-brand span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .68);
}

.foot-col p.desc {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    max-width: 320px;
}

.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
    transition: all .2s ease;
}

.foot-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.foot-col h5 {
    color: #fff;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 18px;
}

.foot-col ul li {
    margin-bottom: 11px;
}

.foot-col ul li a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease;
}

.foot-col ul li a:hover {
    color: var(--gold);
}

.foot-col .contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .86rem;
    color: rgba(255, 255, 255, .82);
}

.foot-col .contact-item i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* Flag counter placeholder — the actual counter script/img
   will be added manually later; this just reserves the space. */
.flag-counter-slot {
    min-height: 42px;
    width: fit-content;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: rgba(255, 255, 255, .35);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0;
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
}

.foot-bottom a {
    color: rgba(255, 255, 255, .45);
}

.foot-bottom a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
    .foot-top {
        padding: 44px 20px;
    }

    .foot-col {
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .foot-col:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .foot-brand {
        margin-bottom: 14px;
    }

    .foot-bottom {
        padding: 20px 0;
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .foot-top {
        padding: 40px 16px;
    }
}

@media (max-width: 420px) {
    .foot-social a {
        width: 32px;
        height: 32px;
    }
}