/* Footer Styles */
:root {
    --primary-color: hsl(313, 26%, 45%);
    --primary-light: hsl(313, 26%, 65%);
    --primary-dark: hsl(313, 26%, 35%);
    --text-color: #333;
    --background-dark: rgb(51, 50, 50) !important;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --transition-base: 0.3s ease;
}

.footer {
    background-color: var(--background-dark);
    color: white;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.footer__content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

.footer__column-title {
    color: var(--primary-color) !important;
    margin-bottom: var(--spacing-md) !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer__column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color) !important;
}

/* Company info */
.footer__company {
    margin-bottom: var(--spacing-md);
}

.footer__company-logo {
    height: 40px;
    width: auto;
    transition: transform var(--transition-base);
}

.footer__company-logo:hover {
    transform: scale(1.05);
}

.footer__company-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact info */
.footer__contact {
    font-style: normal;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact-icon {
    width: 16px;
    height: 16px;
    margin-right: var(--spacing-sm);
    opacity: 0.8;
}

.footer__contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer__contact-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Quick links */
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links-item {
    margin-bottom: var(--spacing-xs);
}

.footer__links-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: inline-block;
    padding: var(--spacing-xs) 0;
}

.footer__links-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Social media */
.footer__social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(209, 54%, 61%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-color);
}

.footer__social-link svg path {
    fill: white;
}

.footer__social-icon {
    width: 18px;
    height: 18px;
}

/* Footer bottom */
.footer__bottom {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__nav {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
}

.footer__nav-item {
    margin: 0;
}

.footer__nav-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer__nav-link:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__logo {
        margin: 0 auto 1rem;
    }

    .footer__column {
        align-items: center;
    }

    .footer__title {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer__contact-info,
    .footer__links,
    .footer__social {
        align-items: center;
    }

    .footer__contact-info li,
    .footer__links li {
        justify-content: center;
    }

    .footer__social-links {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer__bottom-links {
        justify-content: center;
    }

    .footer__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer__bottom {
        text-align: center;
    }

    .footer__copyright {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer__content {
        gap: 1.5rem;
    }

    .footer__column {
        padding: 0;
    }

    .footer__contact-info li,
    .footer__links li {
        font-size: 0.9rem;
    }

    .footer__social-links {
        gap: 1rem;
    }

    .footer__social-link {
        width: 36px;
        height: 36px;
    }

    .footer__bottom {
        padding: 1rem;
    }

    .footer__bottom-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

.footer svg {
    fill: white;
}

.footer__contact-info svg,
.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__logo svg {
    width: auto;
    height: 40px;
    fill: white;
} 