/* Footer Section */
.site-footer {
    background-color: #0c0f13;
    /* Very dark background */
    color: #ffffff;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

/* Logo */
.footer-logo {
    width: 120px;
    margin-bottom: 30px;
    display: block;
}

/* Contact Info */
.footer-contact p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 300;
}

/* Newsletter Section */
.footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.newsletter-form label {
    display: block;
    color: #888888;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.newsletter-inputs {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: #333333;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    background-color: #444444;
}

.newsletter-btn {
    background-color: #ff5773;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #ff4560;
}

/* Copyright Bar */
.footer-bottom {

    padding: 20px 0;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.copyright-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* Background Illustration */
.footer-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 321px;
    height: 150px;
    background-image: url('img/bg-1.png');
    /* Assuming bg-1 is the building outline */
    background-repeat: repeat-x;
    background-size: contain;
    background-position: bottom right;

    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .newsletter-inputs {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-illustration {
        width: 100%;
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 60px;
    }

    .footer-content .row>div {
        margin-bottom: 40px;
    }

    .footer-content .row>div:last-child {
        margin-bottom: 0;
    }
}