/* Left column: Logo + CTA */
.footer-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .footer-col-left { align-items: center; }
}

.footer-logo-wrap {
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
}

.footer-logo-img {
    height: 36px;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.footer-logo-wrap:hover .footer-logo-img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(45%) saturate(1436%) hue-rotate(20deg) brightness(102%) contrast(105%);
}

.footer-cta-heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px 0;
}

.footer-cta-text {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.footer-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-cta-btn:hover {
    background: #e0ff5c;
}

/* Middle column: Locations */
.footer-col-mid h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-location {
    margin-bottom: 16px;
}

.footer-location-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .footer-location-name { justify-content: center; }
}

.footer-location-name svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-location-addr {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Right column: Contacts */
.footer-col-right h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.footer-contact-item:hover {
    color: var(--accent);
}

@media (max-width: 767px) {
    .footer-contact-item { justify-content: center; }
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--accent);
    fill: none;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 767px) {
    .footer-socials { justify-content: center; }
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social-link:hover {
    background: var(--accent);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.footer-social-link:hover svg {
    fill: #000;
}

/* Copyright bar */
.footer-copyright {
    border-top: 1px solid #333;
    padding: 16px 0;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #555;
}

/* MODAL STYLES */
