/* ================================================
   Axiomed — Footer
   ================================================ */

footer {
    font-size: 14px;
    line-height: 1.6;
    background: #0a1628;
    color: #8a9ab5;
    padding: 0;
    box-shadow: none;
}

footer a {
    color: #8a9ab5;
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* ── Main section ── */
.ft-main {
    padding: 56px 0 48px;
    border-top: 3px solid #3798da;
}

.ft-main .row {
    row-gap: 32px;
}

/* ── Brand column ── */
.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ft-brand img {
    display: block;
    margin-bottom: 14px;
}

.ft-tagline {
    font-size: 0.8rem;
    color: #5a6d87;
    margin: 0 0 20px;
    line-height: 1.5;
}

.ft-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ft-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #1e2f47;
    background: #111e33;
    color: #8a9ab5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ft-socials a:hover {
    background: #3798da;
    border-color: #3798da;
    color: #fff;
}

/* ── Nav columns ── */
.ft-col {
    display: flex;
    flex-direction: column;
}

.ft-heading {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
}
.ft-heading::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #3798da;
    margin-top: 8px;
}

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ft-links li a,
.ft-links li span {
    color: #7a8fa8;
    font-size: 0.85rem;
    display: block;
    padding: 4px 0;
}
.ft-links li a { transition: color 0.2s, padding-left 0.2s; }
.ft-links li a:hover { color: #fff; padding-left: 6px; }

/* ── Contact column ── */
.ft-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ft-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.82rem;
    color: #8a9db8;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}
.ft-info-row:last-child { border-bottom: none; }
.ft-info-row:hover { color: #fff; }

.ft-info-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(55,152,218,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.ft-info-icon i {
    color: #3798da;
    font-size: 0.72rem;
}

.ft-info-row--divider {
    margin-top: 4px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ft-info-row--addr {
    color: rgba(255,255,255,0.4);
    cursor: default;
    font-size: 0.78rem;
    line-height: 1.65;
}
.ft-info-row--addr:hover { color: rgba(255,255,255,0.4); }

/* ── Bottom bar ── */
.ft-bottom {
    border-top: 1px solid #131f33;
    padding: 16px 0;
    background: #060d1a;
}

.ft-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ft-copy {
    font-size: 0.78rem;
    color: #3d5170;
}

.ft-bottom-nav {
    display: flex;
    gap: 20px;
}
.ft-bottom-nav a {
    font-size: 0.78rem;
    color: #3d5170;
    transition: color 0.2s;
}
.ft-bottom-nav a:hover {
    color: #8a9ab5;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .ft-main { padding: 40px 0 32px; }
    .ft-brand { margin-bottom: 8px; }
    .ft-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

