footer {
    background-color: #1a202c;
    color: white;
    padding: var(--spacing-xl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: var(--spacing-md);
}

.footer-about p {
    color: #a0aec0;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2d3748;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--caterpillar-orange), var(--caterpillar-yellow));
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--caterpillar-orange), var(--caterpillar-yellow));
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--caterpillar-orange);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    color: #a0aec0;
}

.footer-contact i {
    margin-right: var(--spacing-sm);
    color: var(--caterpillar-orange);
}

/*.map-container {
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
}*/

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 100%;
}

.location-info {
    margin-top: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2D3748;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    border-left: 3px solid var(--caterpillar-orange);
    background-color: #f9f9f9;
}

.location-icon {
    color: var(--caterpillar-orange);
    margin-right: 10px;
    font-size: 1.2rem;
}

.location-text {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: var(--spacing-md) 0;
    text-align: center;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}