/* Footer Styles */
footer {
    background: #1a2332;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Top Footer Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 157, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B9DD4;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.125rem;
    font-weight: 600;
}

.social-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: #3B9DD4;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3B9DD4;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact-icon {
    color: #3B9DD4;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Property Types Section */
.footer-property-types {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.property-type-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.property-type-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-type-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.property-type-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.property-type-links a:hover {
    color: #3B9DD4;
}

/* Bottom Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #b0b0b0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #3B9DD4;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-property-types {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-brand {
        gap: 1rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-property-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-logo-text {
        font-size: 1.25rem;
    }

    .footer-logo-image {
        height: 35px;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .footer-column-title {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-contact-item {
        font-size: 0.875rem;
    }

    .footer-property-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .property-type-title {
        font-size: 0.9375rem;
    }

    .property-type-links a {
        font-size: 0.8125rem;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }

    .footer-bottom-links a {
        font-size: 0.8125rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

