/* Footer Specific CSS */

/* CTA Banner (Brand Blue) */
.cta-banner {
    background: linear-gradient(to right, var(--primary-color), #0f89ef);
    /* Green gradient like reference */
    min-height: 250px;
    margin-bottom: 80px;
    padding: 40px !important;
}


.cta-content p {
    font-size: 18px;
}

.cta-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    /* background: url('../image/cta-pattern.svg') no-repeat right center; */
    /* Placeholder or remove if no svg */
    opacity: 0.1;
    pointer-events: none;
}

/* CTA Buttons */
.bg-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.bg-black:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.bg-white {
    background-color: #fff !important;
    color: #2e2e2e !important;
}


.rounded-pill {
    border-radius: 50px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Footer Layout - 5 Columns */
.footer-wrap {
    display: grid;
    /* Ratio: Brand(1.5), Links(1)x3, Contact(1.2) */
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.site-footer {
    background-color: var(--white);
    border-top: none;
}

/* Typography */
.footer-heading {
    margin-bottom: 25px;
}

.footer-link {
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.site-footer .list-none li {
    margin-bottom: 20px;
}

.site-footer .list-none li:last-child {
    margin-bottom: 0px;
}

/* Brand Column Specifics */
.brand-col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

/* Legal Info */
.legal-info, .legal-info p, .legal-info a {
    font-size: 14px !important;
}

/* Social Icons */
.social-icon {
    font-size: 16px;
    color: var(--text-dark);
    /* opacity: 0.7; Removed to make them clearer */
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f1f5f9;
    /* Light grey circle background like reference */
}

.social-icon:hover {
    color: #fff !important;
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}


/* Badges placeholders (Removed but keeping utility just in case) */
.badge-placeholder {
    display: none;
}

.badge-rect-placeholder {
    display: none;
}

.footer-logo {
    width: 200px; /* Increased size as requested */
    height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-wrap {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px 40px;
    }

    .brand-col {
        grid-column: span 2;
        flex-direction: column;
        align-items: left;
        justify-content: space-between;
        /* On mobile/tablet, row layout works */
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
        margin-bottom: 60px;
    }
}
@media (max-width: 600px) {
    .footer-wrap {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .footer-wrap > div {
        grid-column: span 1 !important;
    }

    .brand-col {
        grid-column: span 1 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
     .cta-banner {
        margin-bottom: 40px;
    }

    .footer-logo {
    width: 150px;
    height: auto;
}
}
