/* ====================== Footer ====================== */
.footerWrap {
    background-color: #f8fafc;
    /* Light grey background */
    padding: 50px 0 20px;
    /* Reduced padding */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    color: #64748b;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.footerWrap .col-md-3 {
    margin-bottom: 20px;
    /* Reduced margin */
}

.footerWrap h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    /* Reduced margin */
    position: relative;
    letter-spacing: -0.01em;
    text-transform: none;
}

/* Removed the underline after h5 for a cleaner look */
.footerWrap h5::after {
    display: none;
}

.footerWrap p {
    line-height: 1.5;
    color: #64748b;
    font-size: 14px;
}

.footerWrap .address,
.footerWrap .email,
.footerWrap .phone {
    margin-bottom: 10px;
    /* Reduced margin */
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
    font-size: 14px;
    color: #64748b;
    transition: color 0.2s ease;
}

.footerWrap .address:hover,
.footerWrap .email:hover,
.footerWrap .phone:hover {
    color: #056cb8;
}

.footerWrap .address:before,
.footerWrap .email:before,
.footerWrap .phone:before {
    font-family: 'FontAwesome';
    font-size: 15px;
    left: 0;
    position: absolute;
    top: 2px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footerWrap .address:before {
    content: '\f041';
}

.footerWrap .email:before {
    content: '\f003';
}

.footerWrap .phone:before {
    content: '\f095';
}

.footerWrap .address:hover:before,
.footerWrap .email:hover:before,
.footerWrap .phone:hover:before {
    color: #056cb8;
}

.footerWrap .email a,
.footerWrap .phone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footerWrap .email a:hover,
.footerWrap .phone a:hover {
    color: #056cb8;
}

/* Social Icons - Modern Minimalist */
.footerWrap .social {
    margin-top: 20px;
    /* Reduced margin */
    display: flex;
    gap: 10px;
}

.footerWrap .social a {
    color: #64748b;
    background: #ffffff;
    /* White bg for contrast on grey footer */
    font-size: 15px;
    width: 36px;
    /* Slightly smaller */
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.footerWrap .social a:hover {
    background: #056cb8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 108, 184, 0.25);
}

/* Quick Links */
.footerWrap .quicklinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerWrap .quicklinks li {
    margin-bottom: 8px;
    /* Reduced margin */
}

.footerWrap .quicklinks li a {
    display: inline-block;
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
    font-weight: 400;
}

.footerWrap .quicklinks li a:hover {
    color: #056cb8;
    transform: translateX(4px);
}

/* Removed the arrow before links for a cleaner look */
.footerWrap .quicklinks li a::before {
    display: none;
}

/* Removed the underline animation */
.footerWrap .quicklinks li a::after {
    display: none;
}

/* ====================== Copyright ====================== */
.copyright {
    padding: 20px 0;
    /* Reduced padding */
    background: #f1f5f9;
    /* Slightly darker grey than footer body */
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    font-weight: 400;
    border-top: 1px solid #e2e8f0;
}

.copyright .bttxt {
    color: #94a3b8;
    letter-spacing: 0;
}

.copyright a {
    color: #056cb8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.copyright a:hover {
    color: #02467a;
}

/* ====================== Responsive Mobile App Style (PRESERVED) ====================== */
@media (max-width: 991px) {
    .footerWrap {
        padding: 0;
        background: #f8fafc;
        border-top: none;
    }

    .footerWrap::before {
        display: none;
    }

    .footerWrap .col-md-3 {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
        margin-bottom: 0;
        background: #f8fafc;
        transition: background 0.3s ease;
    }

    .footerWrap .col-md-3.active {
        background: #ffffff;
    }

    .footerWrap h5 {
        margin: 0;
        padding: 18px 20px;
        position: relative;
        text-align: left;
        font-size: 15px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        background: transparent;
        color: #0f172a;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footerWrap .active h5 {
        color: #056cb8;
    }

    .footerWrap h5::after {
        display: none;
    }

    /* Mobile Toggle Icons */
    .footerWrap h5::before {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: #e2e8f0;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .footerWrap h5::after {
        content: '+';
        position: absolute;
        right: 27px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #64748b;
        transition: all 0.3s ease;
        display: block;
        width: auto;
        height: auto;
        background: transparent;
        margin: 0;
        font-weight: 400;
        line-height: 1;
    }

    .footerWrap .active h5::before {
        background: #056cb8;
    }

    .footerWrap .active h5::after {
        content: '−';
        color: #fff;
    }

    .footerWrap .quicklinks,
    .footerWrap .address,
    .footerWrap .email,
    .footerWrap .phone,
    .footerWrap .social {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 20px;
        opacity: 0;
    }

    .footerWrap .active .quicklinks,
    .footerWrap .active .address,
    .footerWrap .active .email,
    .footerWrap .active .phone,
    .footerWrap .active .social {
        max-height: 600px;
        padding: 0 20px 20px;
        opacity: 1;
    }

    .footerWrap .quicklinks {
        padding-top: 8px;
    }

    .footerWrap .quicklinks li {
        display: block;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .footerWrap .quicklinks li:last-child {
        border-bottom: none;
    }

    .footerWrap .quicklinks li a {
        display: block;
        padding: 12px 0;
        color: #64748b;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    .footerWrap .quicklinks li a:hover {
        padding-left: 4px;
        color: #056cb8;
        background: transparent;
        transform: none;
    }

    .footerWrap .address,
    .footerWrap .email,
    .footerWrap .phone {
        margin-bottom: 12px;
        padding-left: 28px;
    }

    .footerWrap .social {
        margin-top: 10px;
        padding-bottom: 10px;
        gap: 10px;
    }

    .footerWrap .social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: #f1f5f9;
    }

    /* App-style Copyright */
    .copyright {
        font-size: 12px;
        padding: 20px 15px;
        text-align: center;
        background: #f1f5f9;
        border-top: 1px solid #e2e8f0;
    }

    .copyright .bttxt {
        line-height: 1.5;
    }
}

/* Smooth scrolling enhancement */
@media (max-width: 991px) {
    .footerWrap .col-md-3 {
        scroll-margin-top: 20px;
    }
}