
.map-section {
    width: 100%;
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    position: relative;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.footer-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Lustria', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
}


.contact-info .business-name {
    font-family: 'Lustria', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.2rem;
    min-width: 20px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

.contact-text a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #e0e0e0;
    transform: translateY(-1px);
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}


.social-links {
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

.website-info {
    margin-top: 1rem;
}

.info-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}


.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright,
.website-credits {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}


@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-column: 1 / -1;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 0;
    }
    
    .footer-container,
    .map-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .contact-text span,
    .contact-text a {
        font-size: 0.85rem;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
    }
    
    .social-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 0;
    }
    
    .footer-container,
    .map-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-info .business-name {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        gap: 0.5rem;
    }
    
    .contact-text span,
    .contact-text a {
        font-size: 0.8rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links li a {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }
    
    .social-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .copyright,
    .website-credits {
        font-size: 0.75rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }