/* =========== FOOTER =========== */
.footer {
    position: relative;
    background-color: var(--dark);
    padding: 8rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../assets/img/slider.jpg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-widget-title {
    color: var(--light);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 4rem;
}

.footer-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.footer-contact-icon {
    margin-right: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.footer-contact-text {
    font-size: 1.6rem;
}

.footer-contact-text strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 1.2rem;
}

.footer-link {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 1.5rem;
    display: inline-block;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    transition: var(--transition);
}

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

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.footer-social-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-item:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.footer-social-icon {
    margin-right: 1rem;
    font-size: 2rem;
}

.footer-social-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social-item:hover .footer-social-text {
    color: var(--dark);
}

.footer-bottom {
    position: relative;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.4rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

/* Mobile Adjustments */
@media screen and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}