/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700&family=Lexend:wght@300;400;500;600&display=swap');

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer {
    background: #ffffff;
    color: #4a4a4a;
    padding: 60px 80px 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Lexend', 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #7dd3c0;
}

.footer-section {
    flex: 1 1 300px;
    margin: 0 15px 30px 15px;
    min-width: 250px;
}

.footer-section:first-child {
    margin-left: 0;
}

.footer-section:last-child {
    margin-right: 0;
}

/* Left Column Styles */
.footer-company-name {
	min-width: max-content;
    font-size: 25px;
    font-weight: 600;
    color: #1a4582;
    margin-bottom: 15px;
    line-height: 1.4;
    display: block;
    font-family: 'Saira', sans-serif;
}

.footer-address {
    font-weight: 100;
    font-size: 15px;
    color: #1a4582;
    line-height: 1.6;
    margin-bottom: 25px;
    display: block;
    font-family: 'Lexend', sans-serif;
}

.footer-cta-text {
	min-width: max-content;
    font-size: 1.5rem;
    color: #1a4582;
    margin-bottom: 5px;
    font-weight: 100;
    display: block;
    font-family: 'Saira', sans-serif;
}

.footer-connect-btn {
    background: #ecedf0;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    font-family: 'Lexend', sans-serif;
    color: #1a4582;
    box-shadow: none;
}

.footer-connect-btn:hover {
    color: #1a4582;
    background: #ecedf0;
    transform: translateY(-2px);
}

/* Scoped styles for ZK components within footer only */
#winfooter .footer-company-name {
	min-width: max-content;
    color: #1a4582;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Saira', sans-serif;
}

#winfooter .footer-address {
    color: #1a4582;
    font-size: 15px;
    font-weight: 100;
    font-family: 'Lexend', sans-serif;
}

#winfooter .footer-cta-text {
    color: #1a4582;
    font-size: 1rem;
    font-weight: 100;
    font-family: 'Saira', sans-serif;
}

#winfooter .footer-policy-link {
    color: #1a4582;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
}

#winfooter .footer-policy-link:hover {
    color: #7dd3c0;
}

#winfooter .footer-connect-btn {
    background: #ecedf0;
    color: #1a4582;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lexend', 'Segoe UI', Roboto, sans-serif;
}

#winfooter .footer-connect-btn:hover {
    background: #ecedf0;
    color: #1a4582;
}

/* Middle Column - Navigation Links (Right Aligned) */
.footer-nav-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 35%;
}

.footer-link {
    display: block;
    color: #1a4582;
    text-decoration: none;
    font-size: 14px;
    margin: 8px 0;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
    text-align: right;
}

.footer-link a {
    color: #1a4582;
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
}

.footer-link:hover {
    color: #7dd3c0;
    text-decoration: none;
}

.footer-link:hover a {
    color: #7dd3c0;
}

/* Right Column - Policy Links */
.footer-policy-link {
    display: block;
    color: #1a4582;
    text-decoration: none;
    font-size: 14px;
    margin: 15px 0;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
}

.footer-policy-link:hover {
    color: #7dd3c0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 60px;
    align-items: center;
}

.footer-social-images {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social-images:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-bottom {
    text-align: left;
    background: #ffffff;
    color: #4a4a4a;
    padding: 20px 80px 40px 45px;
    font-size: 13px;
    font-family: 'Lexend', 'Segoe UI', Roboto, sans-serif;
}

.footer-bottom-text {
    color: #1a4582;
    font-size: 16px;
    font-family: 'Saira', sans-serif;
}

#winfooter .z-window-content {
    background: transparent !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 40px 30px 40px;
    }
    .footer-bottom {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px 30px 30px;
    }
    .footer-section {
    	max-height:fit-content;
        width: 100%;
        margin: 0 0 30px 0;
    }
    .footer-nav-section {
        align-items: flex-start;
        padding-left: 0;
    }
    .footer-link {
        text-align: left;
    }
    .footer-bottom {
        padding: 20px 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 20px 20px;
    }
    .footer-bottom {
        padding: 15px 20px;
        font-size: 12px;
    }
    .footer-company-name {
        font-size: 18px;
    }
    .footer-cta-text {
        font-size: 0.7rem;
    }
}

