/* Service Cards Animation */
.service-card {
    transition: all 0.3s ease;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Map Section - handled by components/map.css */

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* Footer Components */
.footer-main {
    background: var(--white);
    color: var(--dark-gray);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-column h3 span {
    color: var(--secondary-color);
}

.footer-site-logo {
    height: 80px;
    width: auto;
    max-width: 250px;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--dark-gray);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-logo p {
    margin-top: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-copyright {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
}

.footer-copyright p {
    opacity: 0.7;
    margin: 0;
}

/* Component Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}