/* ================Footer================ */
.footer {
    width: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 47, 47, 1) 0%,
        rgba(18, 70, 70, 1) 50%,
        rgba(27, 111, 111, 1) 100%
    );

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 40px 100px;
}
.footer-value,
.social-link span {
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.footer-value::after,
.social-link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.footer-value:hover::after,
.social-link span:hover::after {
    transform: scaleX(1);
}
.footer-value:hover,
.social-link span:hover {
    opacity: 0.85;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.219em;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.219em;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.219em;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.linkedin-icon {
    width: 36px;
    height: 36px;
}
/* ==================sub-footer===================== */
.sub-footer {
    width: 100%;
    background-color: rgb(24, 92, 92);
    padding: 15px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sub-footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.sub-footer a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
}

.sub-footer a:hover {
    text-decoration: underline;
}
/* =============Tablet Responsive================= */
@media (max-width: 768px) {
    .footer {
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 40px;
    }

    .footer-column {
        width: 45%;
    }
}
/* =============Mobile Responsive================= */
@media (max-width: 400px) {
    .footer {
        flex-direction: row;
        gap: 25px;
        padding: 30px 20px;
        text-align: left;
    }

    .footer-column {
        width: 100%;
        align-items: left;
    }

    .social-link {
        justify-content: left;
    }

    .footer-label {
        font-size: 16px;
    }

    .footer-value,
    .social-link span {
        font-size: 14px;
    }

    .sub-footer p {
        font-size: 13px;
    }
}
.whatsapp-icon {
    width: 36px;
    height: 36px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-link a:hover .whatsapp-icon,
.social-link a:hover .linkedin-icon {
    transform: scale(1.05);
    opacity: 0.9;
}
