/* ===== FOOTER STYLES ===== */
.footer {
    background: #ECECEC;
    color: #2C2C2C;
    margin-top: 4rem;
    border-radius: 2rem 2rem 0 0;
    overflow: hidden;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

/* ===== FOOTER COMPANY INFO ===== */
.footer__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
}

.footer__logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.2;
}

.footer__logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__company {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__company-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.4;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
    transition: color 0.3s ease;
}

.footer__contact-item:hover {
    color: #2C2C2C;
}

.footer__contact-item i {
    width: 16px;
    text-align: center;
    color: #999999;
    font-size: 0.85rem;
}

/* ===== FOOTER NAVIGATION ===== */
.footer__navigation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__navigation-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(44, 44, 44, 0.1);
}

.footer__nav {
    flex: 1;
}

.footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu-item {
    display: flex;
}

.footer__menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666666;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    width: 100%;
}

.footer__menu-link:hover {
    background: rgba(44, 44, 44, 0.05);
    color: #2C2C2C;
    transform: translateX(4px);
}

.footer__menu-link i {
    font-size: 0.75rem;
    opacity: 0.7;
    width: 16px;
    text-align: center;
}

.footer__menu-link span {
    transition: color 0.3s ease;
}

/* ===== FOOTER MAP & SOCIAL ===== */
.footer__map-social {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ===== FOOTER MAP ===== */
.footer__map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__map-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(44, 44, 44, 0.1);
}

.footer__map-container {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer__map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer__map-container:hover .footer__map-image {
    transform: scale(1.05);
}

/* ===== FOOTER SOCIAL MEDIA ===== */
.footer__social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__social-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(44, 44, 44, 0.1);
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666666;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #2C2C2C;
    border-color: rgba(44, 44, 44, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.footer__social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.footer__social-link--facebook:hover {
    background: #1877f2;
    color: white;
    border-color: transparent;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer__social-link:hover svg {
    transform: scale(1.1);
}

/* ===== FOOTER COPYRIGHT ===== */
.footer__copyright {
    background: rgba(44, 44, 44, 0.05);
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.footer__copyright-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer__copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.footer__copyright-company {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #999999;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .footer__map-social {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer__menu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer__map-social {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer__info {
        gap: 1.5rem;
    }
    
    .footer__logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer__company {
        text-align: center;
    }
    
    .footer__contact {
        align-items: center;
        justify-content: center;
    }
    
    .footer__contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer__navigation {
        gap: 1rem;
    }
    
    .footer__navigation-title,
    .footer__map-title,
    .footer__social-title {
        text-align: center;
    }
    
    .footer__menu {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .footer__social-links {
        justify-content: center;
    }
    
    .footer__social-link {
        min-width: 100px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .footer__copyright-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .footer__contact {
        align-items: center;
        justify-content: center;
    }
    
    .footer__contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer__menu {
        grid-template-columns: 1fr;
    }
    
    .footer__menu-link {
        padding: 0.6rem 1rem;
        justify-content: center;
    }
    
    .footer__social-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer__social-link {
        width: 100%;
        padding: 0.75rem;
    }
    
    .footer__map-container {
        height: 150px;
    }
    
    .footer__copyright-container {
        padding: 0 0.75rem;
    }
    
    .footer__copyright-text,
    .footer__copyright-company {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* ===== FOOTER ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer__info,
.footer__navigation,
.footer__map-social {
    animation: fadeInUp 0.6s ease forwards;
}

.footer__navigation {
    animation-delay: 0.2s;
}

.footer__map-social {
    animation-delay: 0.4s;
} 