/* CSS for Global Footer a1ebc2b0 */

.real-estate-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #5A7BBF;
    padding-bottom: 8px;
    width: fit-content;
}

.margin-top-h {
    margin-top: 30px;
}

.company-bio {
    color: #CCCCCC;
    margin-bottom: 20px;
}

.office-locations {
    margin-bottom: 20px;
}

.location-item {
    margin-bottom: 10px;
}

.location-item strong {
    color: #5A7BBF;
}

.location-item p {
    margin: 3px 0 0 0;
    color: #CCCCCC;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #5A7BBF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #FFFFFF;
}

/* Links Columns */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #5A7BBF;
    transform: translateX(5px);
}

/* Newsletter Column */
.newsletter-desc {
    color: #CCCCCC;
    margin-bottom: 20px;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-subscribe-form input {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px;
    color: #FFFFFF;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-subscribe-form input:focus {
    border-color: #5A7BBF;
}

.subscribe-btn {
    background-color: #5A7BBF;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.subscribe-btn:hover {
    background-color: #4A69A8;
    transform: translateY(-1px);
}

/* Footer Bottom Area */
.footer-divider {
    border: 0;
    height: 1px;
    background: #222222;
    margin: 40px auto 20px auto;
    max-width: 1200px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #5A7BBF;
}

.legal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888888;
    border-top: 1px solid #111111;
    padding-top: 20px;
}

.legal-right {
    display: flex;
    gap: 15px;
}

.legal-right a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-right a:hover {
    color: #5A7BBF;
}

.equal-housing {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsiveness */
@media screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .legal-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-right {
        justify-content: center;
    }
}
