:root {
    --primary: #003FCA;
    --primary-container: rgba(208, 220, 235, 0.5);
    --on-primary: #ffffff;
    --primary-container: rgba(5, 25, 49, 0.5);
    --on-surface: #3a3a3a;
    --on-surface-variant: #575757;
    --background: #ffffff;
    --surface: #ffffff;
    --surface-variant: #EDEDED;
    --secondary: #000000;
    --on-secondary: #b9b9b9;
}

/* ===========================
   FOOTER SECTION
   =========================== */
/* Footer */
.footer {
    background: var(--surface);
    padding: 100px 30px;
}

.footer-container {
    max-width: 1440px !important;
    margin: 0 auto;
}

a {text-decoration: none;}

.footer .btn.btn-secondary {
    border-radius:30px !important;
    font-size: medium;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
}


.footer-logo-img {
    width: 124px !important;
    height: 60.143px;
}

.arrow-icon {
    width: 7.4px;
    height: 12px;
}

.social-icon-img {
    width: 20px;
    height: 20px;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.5px;
    color: var(--on-surface);
    margin-top: 24px;
}

.footer-section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--on-surface);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--on-surface);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

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

.social-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #0060ca;
}

.social-icon img {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    display: block;
}

.footer-contact {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--on-surface);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 23.592px;
    letter-spacing: 0.6px;
    color: var(--on-surface);
    margin: 0;
}

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

@media (max-width: 768px) {
    
    .footer-content {
        padding: 0px !important;
    }
    .footer {
        padding: 40px 20px !important;
    }
}

.whatsapp-section {
    background: #edfbf3;
    padding: 5px;
    text-align: center;
    border-radius: 8px;
    color: #50a771;
    font-size: 16px !important;
}


.whatsapp-section a {
    color: #50a771;
    font-weight: 600;
}

.whatsapp-section .list-inline img {
    vertical-align: bottom;
}