.ft {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.ft-color{
    color:#0A2D78;
}
.ft-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.ft-info {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.ft-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.ft-brand-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 300px;
    margin-top: 8px;
}

.ft-nav-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.ft-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.ft-nav-links a {
    font-size: 0.78rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.ft-nav-links a:hover {
    color: #3b82f6;
}

.ft-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ft-social-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ft-socials {
    display: flex;
    gap: 8px;
}

.ft-social-btn {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.ft-social-btn:hover {
    border-color: #93c5fd;
    background: #eff6ff;
}

.ft-social-btn i {
    font-size: 14px;
    color: #64748b;
    transition: color 0.2s;
}

.ft-social-btn:hover i {
    color: #3b82f6;
}

.ft-map {
    position: relative;
    overflow: hidden;
}

.ft-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.ft-map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-map-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.ft-map-text {
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
}

.ft-map-text span {
    display: block;
    font-size: 10px;
    color: #64748b;
    font-weight: 400;
}

.ft-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ft-copy {
    font-size: 0.72rem;
    color: #94a3b8;
}

.ft-legal {
    display: flex;
    gap: 20px;
}

.ft-legal a {
    font-size: 0.72rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}


.ft-credits {
    font-size: 0.72rem;
    color: black;
}

.ft-credits a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.ft-credits a:hover {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .ft-top {
        grid-template-columns: 1fr;
    }

    .ft-info {
        padding: 36px 24px;
    }

    .ft-map iframe {
        min-height: 240px;
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px;
    }
}