/* Footer Styles for DSQ Technology */

/* Main footer container */
.footer {
    background-color: #f8f8f8;
    color: #333;
    font-family: 'Arial', sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

/* Social Media Container */
.social-media-container {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-media-follow {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icon {
    margin: 0 10px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-network-name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Social media icons - all black */
.social-icon a {
    background-color: transparent;
}

.social-icon a:hover {
    transform: scale(1.1);
    color: #555;
}

/* Cityscape Image Container */
.cityscape-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
    line-height: 0;
}

.cityscape-image {
    width: 100%;
}

.cityscape {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Content Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Footer Columns */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 0 0 calc(16.666% - 20px);
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff4500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Newsletter */
.newsletter {
    flex: 0 0 60%;
}

.newsletter p {
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
}

.email-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.subscribe-btn {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #e63e00;
}

.newsletter-note {
    font-size: 12px;
    color: #999;
}

/* Footer Legal */
.footer-legal {
    flex: 0 0 30%;
    text-align: right;
}

.footer-legal p {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .newsletter,
    .footer-legal {
        flex: 0 0 100%;
        text-align: left;
    }
    
    .footer-legal {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .subscribe-btn {
        border-radius: 4px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
    }
    
    .social-media-follow {
        flex-wrap: wrap;
    }
    
    .social-icon {
        margin: 5px;
    }
}