/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 80px;
    color: #e5e7eb;
}

/* Google Maps embed at the top of the footer */
.footer-map {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 0;
}

/* Make the map full-bleed on mobile (edge-to-edge) and increase height for touch devices */
@media (max-width: 768px) {
    .footer-map {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        height: 260px;
        border-top: 1px solid rgba(255,255,255,0.04);
    }
    .footer-map iframe {
        height: 100%;
    }
}

/* If the map is placed above the footer, remove top padding so it's flush */
.footer-map + .site-footer {
    padding-top: 0;
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (min-width: 1200px) {
    .footer-map {
        height: 220px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #9ca3af;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1000px;
        padding: 16px 24px;
    }
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--gray-400);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
}