/* Google Maps Styles */
.google-maps {
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.google-maps iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* Google Maps Styles */
.google-maps {
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.google-maps iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: white;
}

.footer-right {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    background-color: white;
}

.footer-social-icon:hover img {
    filter: brightness(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 8px 0;
    color: white;
    text-transform: uppercase;
}

.contact-item p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0;
    color: white;
    line-height: 1.4;
}

/* Footer Alt Styles */
.footer-alt {
    background-color: #1a1a1a;
    color: #888;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #333;
}

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

.footer-alt p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
        margin-top: 40px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-social {
        flex-direction: row;
        gap: 15px;
    }
    
    .footer-contact {
        text-align: center;
        gap: 20px;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .footer-left {
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-right {
        gap: 25px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-social-icon img {
        width: 20px;
        height: 20px;
    }
    
    .footer-contact {
        gap: 18px;
    }
    
    .contact-item h3 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .footer-text p {
        font-size: 0.85rem;
    }
}
