/* ── Footer ───────────────────────────────────────── */
.footer {
    background-color: #000;
    color: var(--white);
    margin-top: auto;
    border-top: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 32px 0 10px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.3fr auto;
    gap: 36px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.logo-text-accent {
    color: var(--primary);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    font-style: normal;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 18, .35);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links ul li a {
    font-size: 15px;
    color: #fff;
    transition: var(--transition);
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width .3s ease;
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #fff;
}

.footer-contact ul li svg,
.footer-contact ul li img.contact-icon-img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #fff;
    object-fit: contain;
}

.footer-map {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-map img {
    height: 220px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity .4s ease;
}

.footer-map img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 14px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.3px;
}

/* ── Sticky Bottom CTA (mobile) ───────────────────── */
.sticky-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #1a1a1a;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    align-items: center;
    gap: 14px;
}

.sticky-cta-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-cta-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sticky-cta-text strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.sticky-cta-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    margin-top: 1px;
}

.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background-color: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background-color: var(--primary-hover);
}

.sticky-cta-btn svg {
    width: 14px;
    height: 14px;
}

/* ── Mobile Responsiveness ────────────────────────── */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-map {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-map img {
        height: 160px;
    }
    
    .footer-bottom {
        text-align: center;
        padding-bottom: 80px; /* Space for sticky bottom CTA */
    }
    
    .sticky-bottom-cta {
        display: flex;
    }
}

