/* FOOTER */
.footer {
    background: linear-gradient(135deg, #0fb9f4 0%, #2041B7 100%);
    color: white;
    padding: 3rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #fff;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socials a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.links a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.links a:hover {
    color: #dde6ff;
    padding-left: 0.5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.btn {
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: #2041B7;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #dde6ff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .footer-box {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .btn-apply-content {
        padding: 12px 25px;
    }
}


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