.angie-black-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.angie-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 1.5fr; /* 5 columns layout */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 500px;
}

/* Vertical lines between columns */
.angie-footer-grid > div {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.angie-footer-grid > div:last-child {
    border-right: none;
}

/* Column 1: Vertical Text */
.angie-col-vertical {
    position: relative;
    justify-content: center;
    align-items: center !important;
}

.angie-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 8rem;
    font-weight: 900;
    color: #1a1a1a; /* Dark gray, barely visible */
    white-space: nowrap;
    line-height: 1;
    text-transform: lowercase;
    position: absolute;
    right: 30px;
}

/* Column 3: Contact Info */
.angie-col-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center !important;
    align-items: flex-start !important;
}

.angie-info-group h4 {
    font-size: 1rem;
    color: #888;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.angie-info-content {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.5;
}

/* Column 5: Map & Copyright */
.angie-col-map {
    display: flex;
    flex-direction: column;
    justify-content: space-between !important; /* Space map and copyright */
    align-items: flex-start !important;
    padding-bottom: 30px !important;
    padding-top: 30px !important;
}

.angie-footer-map {
    width: 100%;
    height: 300px; /* Fixed height for the map */
    border-radius: 4px;
    overflow: hidden;
    background: #222;
}

.angie-footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Dark map style */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.angie-footer-map iframe:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.angie-copyright {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .angie-footer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
    
    .angie-col-vertical, .angie-col-spacer {
        display: none !important; /* Hide spacer cols on tablet */
    }
    
    .angie-footer-grid > div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .angie-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .angie-vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 4rem;
        position: static;
        margin-bottom: 30px;
        display: block;
    }
    
    .angie-col-vertical {
        display: block !important;
        height: auto;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }
    
    .angie-footer-map {
        height: 250px;
    }
}
