.footer {
    background-color: #272727;
    padding: 4rem 0% 0rem;
    color: white;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FFDF00, #EE476F);
}

.footer-container {
    padding: 0 10%;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: end;
    gap: 1rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-logo a {
    color: white;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-description {
    color: #E5E5E5;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(21, 207, 213, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-sec-uls {
    margin-left: 20px;
    display: flex;
    gap: 4rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section ul li {
    color: #E5E5E5;
}

.footer-section ul li a {
    color: #E5E5E5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #15CFD5;
}

.footer-bottom {
    padding: 2rem 0rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #FFDF00, #EE476F);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    transition: scale 0.3s;
}

.payment-methods img:hover {
    scale: 1.1;
}

.copyright {
    color: #E5E5E5;
    font-size: 0.9rem;
}

@media (max-width: 1204px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}



.footer-enter-email {
    margin-top: 2rem;
}

.footer-subscribe-form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0rem 0rem 0rem 0.5rem;
    width: 400px;
}

.footer-subscribe-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    color: rgb(0, 0, 0);
    font-size: 0.9rem;
}

.footer-subscribe-form input::placeholder {
    color: #989898;
}

.footer-subscribe-form input:focus {
    outline: none;
}

.footer-subscribe-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFA500;
    border: none;
    border-radius: 0px 8px 8px 0px;
    padding: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-subscribe-form button:hover {
    background-color: #FF8C00;
}

.footer-subscribe-form button svg {
    width: 20px;
    height: 20px;
    stroke: #1C1C1C;
}

@media (max-width: 768px) {
    .footer-subscribe-form {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .footer-subscribe-form input {
        width: 100%;
        text-align: center;
    }

    .footer-subscribe-form button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        /* padding: 3rem 2rem; */
    }

    .footer-subscribe-form {
        width: unset;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}