/* Стилове за футъра */
.main-footer {
    background-color: var(--blue);
    color: #fff;
    padding: 40px 0;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 0 0 200px;
    margin-right: 50px;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
}

.footer-slogan {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    color: #ffe330;
}

.footer-sections {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.footer-section {
    flex: 0 0 30%;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: var(--blue);
    border-radius: 3px;
    transition: all 0.3s;
}

.social-icon i {
    font-size: 16px;
}

.social-icon:hover {
    background-color: #e6f2ff;
}

.footer-copyright {
    font-size: 12px;
    margin-top: 20px;
}

.footer-copyright p {
    margin: 5px 0;
    color: #fff;
}

/* Медия заявки за мобилни устройства */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .categories {
        margin-top: 15px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .property-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-sections {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}
