/* ============================================================
   FOOTER v2
============================================================ */
.site-footer {
    background: #060d1f;
    position: relative;
    overflow: hidden;
    border-top: none !important;
}

/* Subtle grid bg */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,105,188,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,105,188,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* Gradient glow top */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,105,188,0.5), rgba(84,194,186,0.5), transparent);
}

.ft-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.ft-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,105,188,0.12) 0%, transparent 70%);
    top: -80px; right: -80px;
}
.ft-blob-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(84,194,186,0.08) 0%, transparent 70%);
    bottom: 40px; left: 5%;
}

/* Main body */
.ft-body {
    position: relative;
    z-index: 1;
    padding: 80px 0 56px;
}

/* Brand col */
.ft-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}
.ft-brand-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); }

.ft-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 28px;
}

.ft-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}
.ft-email:hover { color: #54C2BA; }
.ft-email i { color: #54C2BA; font-size: 16px; }

.ft-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    direction: ltr;
    transition: color 0.3s ease;
}
.ft-phone:hover { color: #54C2BA; }
.ft-phone i { color: #0069BC; font-size: 16px; }

/* Social icons */
.ft-socials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}
.ft-social {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}
.ft-social:hover { background: #0069BC; color: #fff; border-color: #0069BC; transform: translateY(-3px); }
.ft-social.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.ft-social.tg:hover { background: #2AABEE; border-color: transparent; }
.ft-social.li:hover { background: #0A66C2; border-color: transparent; }

/* Link columns */
.ft-col-title {
    font-family: Yekan-Bakh-Bold;
    font-size: 15px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}
.ft-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 32px; height: 2px;
    background: linear-gradient(90deg, #0069BC, #54C2BA);
    border-radius: 1px;
}

.ft-links { list-style: none; margin: 0; padding: 0; }
.ft-links li { margin-bottom: 12px; }
.ft-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.ft-links a::before {
    content: '';
    width: 5px; height: 5px;
    background: rgba(84,194,186,0.4);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.ft-links a:hover { color: rgba(255,255,255,0.9); }
.ft-links a:hover::before { background: #54C2BA; }

/* CTA card */
.ft-cta-card {
    background: linear-gradient(135deg, rgba(0,105,188,0.2) 0%, rgba(84,194,186,0.1) 100%);
    border: 1px solid rgba(0,105,188,0.25);
    border-radius: 20px;
    padding: 28px 24px;
}
.ft-cta-card h5 {
    font-family: Yekan-Bakh-Bold;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.ft-cta-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.ft-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0069BC;
    color: #fff !important;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-family: Yekan-Bakh-Bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,105,188,0.4);
}
.ft-cta-btn:hover {
    background: #0050a0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,105,188,0.5);
    color: #fff !important;
}

/* Address */
.ft-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.ft-address i { color: #54C2BA; font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* Bottom bar */
.ft-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}
.ft-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.ft-copy {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}
.ft-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0; padding: 0;
}
.ft-bottom-links a {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.ft-bottom-links a:hover { color: #54C2BA; }

/* Badge indicator */
.ft-badge-new {
    display: inline-block;
    background: rgba(84,194,186,0.15);
    color: #54C2BA;
    font-size: 10px;
    font-family: Yekan-Bakh-Bold;
    padding: 2px 8px;
    border-radius: 50px;
    margin-right: 4px;
    vertical-align: middle;
}
