/* Footer Styles - Big Footer (footer-bottom-wrap) and Credit Bar (credit-wrap) */

/* Big Footer Section (294:3441) */
#footer-bottom-wrap {
    width: 100% !important;
    background-color: #f3f4f6 !important;
    padding-top: 30px !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.footer-big-section {
    padding: 40px 0 56px;
    width: 100%;
    font-family: 'Jost', sans-serif !important;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-top-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-agency-label {
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
}

.footer-contact-item svg {
    color: #F87518;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: #080d16;
}

.footer-separator {
    height: 1px;
    background-color: #dce0e8;
    margin-bottom: 32px;
    border: none;
}

/* Navigation Grid */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.footer-nav-column h4 {
    color: #080d16;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 24px 0;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'Jost', sans-serif !important;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 16px;
}

.footer-nav-column ul li a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-column ul li a:hover {
    color: #F87518;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Credit Bar Section (294:3601) */
#credit-wrap {
    width: 100% !important;
    background-color: #dce0e8 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* Remove max-width constraint only for credit-wrap container */
#credit-wrap .wrap {
    max-width: none !important;
}

/* Set credit-wrap .container to 1280px to match other sections */
#credit-wrap .container {
    max-width: 1280px !important;
}

#credit {
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 15px 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Jost', sans-serif !important;
    font-size: 14px !important;
    color: #080d16 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
}

.footer-credits-links {
    display: flex;
    gap: 32px;
}

.footer-credits-links a {
    color: #080d16 !important;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-credits-links a:hover {
    color: #F87518 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .footer-top-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-top-left {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .footer-nav-column {
        text-align: center;
    }

    #credit {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-credits-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}