/* Crystal Cleaning Footer Styles */
.crystal-footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
}

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

.crystal-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2a44;
    margin: 0 0 20px 0;
}

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

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

.footer-column a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

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

.chat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1b50b3 !important;
    font-weight: 600;
}

.chat-link svg {
    width: 16px;
    height: 16px;
}

/* Footer Bottom Section */
.crystal-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

.footer-brand p {
    font-size: 12px;
    color: #9aa4af;
    margin: 0;
}

.footer-app-section {
    text-align: center;
}

.footer-app-section p {
    font-size: 14px;
    color: #5a6c7d;
    margin: 0 0 12px 0;
}

.app-badges {
    display: flex;
    gap: 12px;
}

.app-badge img {
    height: 32px;
    width: auto;
}

.footer-social {
    text-align: right;
}

.footer-social p {
    font-size: 14px;
    color: #5a6c7d;
    margin: 0 0 12px 0;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6c7d;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #1b50b3;
    color: white;
}

/* Footer Legal */
.crystal-footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: #9aa4af;
}

.crystal-footer-legal p {
    margin: 0;
    flex: 1;
}

.crystal-footer-legal a {
    color: #1b50b3;
    text-decoration: none;
}

.crystal-footer-legal a:hover {
    text-decoration: underline;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #5a6c7d;
}

.footer-location svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .crystal-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .crystal-footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand,
    .footer-social {
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .crystal-footer {
        padding: 40px 0 20px;
    }
    
    .crystal-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .crystal-footer-bottom {
        padding: 30px 0;
        gap: 20px;
    }
    
    .crystal-footer-legal {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
}
