.footer {
    background: var(--light-gray);
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(217, 217, 217, 0.3);
}

.footer-logo {
    text-align: left;
    /* margin-bottom: 40px; */
    /* padding-left: 20px; */
}

.footer-logo img {
    width: 262px;
    height: 262px;
    object-fit: contain;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--text-dark);
    font-size: 19px;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: capitalize;
    line-height: 22.8px;
    margin-bottom: 30px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-dark);
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 28.5px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    font-size: 18px;
}

.social-media {
    margin-top: 30px;
}

.social-media h4 {
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 24px;
}

.social-icons a {
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.newsletter {
    max-width: 1220px;
    margin: 0 auto 30px;
}

.newsletter p {
    color: var(--text-dark);
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 300;
    text-transform: capitalize;
    line-height: 22.8px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    height: 48px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    border: none;
    padding: 0 16px;
    color: #979797;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
}

.newsletter-form button {
    width: 192px;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 5px;
    border: none;
    color: white;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 28.5px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #b30000;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 28.5px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-section {
        text-align: left;
        padding-left: 10px;
    }

    .contact-info p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}
