/* ============================================
   Wanawake Bomba Sacco - Design System
   Brand: #d8397c (pink), #efb225 (gold), #052c52 (navy)
   Inspired by Lando Bootstrap & modern financial themes
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --wb-pink: #d8397c;
    --wb-pink-dark: #b82d66;
    --wb-pink-light: #f0d0df;
    --wb-gold: #efb225;
    --wb-gold-dark: #d49e1f;
    --wb-gold-light: #fdf3d7;
    --wb-navy: #052c52;
    --wb-navy-light: #0a3d6f;
    --wb-navy-darker: #031d38;
    --wb-radius: 12px;
    --wb-radius-lg: 16px;
    --wb-radius-pill: 50px;
    --wb-shadow-sm: 0 2px 8px rgba(5, 44, 82, 0.06);
    --wb-shadow: 0 4px 16px rgba(5, 44, 82, 0.08);
    --wb-shadow-lg: 0 8px 30px rgba(5, 44, 82, 0.12);
    --wb-shadow-hover: 0 12px 40px rgba(5, 44, 82, 0.16);
    --wb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Typography Scale --- */
body {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

h1 { font-size: 2.25rem; font-weight: 700; color: var(--wb-navy); }
h2 { font-size: 1.85rem; font-weight: 700; color: var(--wb-navy); }
h3 { font-size: 1.5rem; font-weight: 700; color: var(--wb-navy); }
h4 { font-size: 1.25rem; font-weight: 700; color: var(--wb-navy); }
h5 { font-size: 1.1rem; font-weight: 700; color: var(--wb-navy); }
h6 { font-size: 0.95rem; font-weight: 700; color: var(--wb-navy); }

p {
    font-size: 15px;
    line-height: 1.7;
}

label,
.control-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

small, .small {
    font-size: 13px;
}

/* --- Smooth Scrolling --- */
html {
    scroll-behavior: smooth;
}

/* =====================
   HEADER
   ===================== */
.header-sticky.is-sticky .header-top {
    box-shadow: 0 2px 20px rgba(5, 44, 82, 0.1);
    transition: var(--wb-transition);
}

.topbar {
    background: var(--wb-pink) !important;
    font-size: 13px;
}

/* =====================
   INNER HEADERS
   ===================== */
.inner-header {
    padding: 70px 0 50px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-header .inner-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.inner-header p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* =====================
   SECTION TITLES
   ===================== */
.section-title h2,
.section-title h4 {
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    color: var(--wb-navy);
}

.section-title h2::after,
.section-title h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--wb-pink), var(--wb-gold));
    border-radius: 2px;
}

.section-title p {
    color: #6c757d;
    max-width: 600px;
    margin: 15px auto 0;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    transition: var(--wb-transition);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--wb-pink) !important;
    border-color: var(--wb-pink) !important;
    border-radius: var(--wb-radius-pill);
    padding: 10px 28px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--wb-pink-dark) !important;
    border-color: var(--wb-pink-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 57, 124, 0.4);
}

.btn-outline-primary {
    color: var(--wb-pink) !important;
    border-color: var(--wb-pink) !important;
    border-radius: var(--wb-radius-pill);
    border-width: 2px;
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--wb-pink) !important;
    border-color: var(--wb-pink) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 57, 124, 0.25);
}

/* Override Bootstrap .text-primary to use pink */
.text-primary {
    color: var(--wb-pink) !important;
}

.bg-primary {
    background-color: var(--wb-pink) !important;
}

.btn-warning {
    border-radius: var(--wb-radius-pill);
    color: var(--wb-navy);
    font-weight: 700;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 178, 37, 0.4);
    color: var(--wb-navy);
}

.btn-outline-warning {
    border-radius: var(--wb-radius-pill);
    border-width: 2px;
    color: var(--wb-gold);
    border-color: var(--wb-gold);
}

.btn-outline-warning:hover {
    background: var(--wb-gold);
    color: var(--wb-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 178, 37, 0.3);
}

.btn-light {
    border-radius: var(--wb-radius-pill);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 13px;
}

/* =====================
   CARDS
   ===================== */
.card {
    border: none;
    border-radius: var(--wb-radius);
    box-shadow: var(--wb-shadow-sm);
    transition: var(--wb-transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-hover) !important;
}

.card .card-header {
    border-radius: var(--wb-radius) var(--wb-radius) 0 0;
    padding: 16px 24px;
}

.card .card-header h5,
.card .card-header h6 {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Prevent footer pseudo-element from bleeding into card headers */
.card .card-header h5::after,
.card .card-header h6::after {
    display: none !important;
}

.card .card-header h5 i,
.card .card-header h6 i {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact info icon circles */
.card .rounded-circle {
    transition: var(--wb-transition);
}

.card:hover .rounded-circle {
    transform: scale(1.1);
}

/* =====================
   SERVICE / PRODUCT CARDS
   ===================== */
.services-style-01 {
    border-radius: var(--wb-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--wb-shadow);
    transition: var(--wb-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-style-01:hover {
    transform: translateY(-8px);
    box-shadow: var(--wb-shadow-hover);
}

.services-style-01 img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-style-01:hover img {
    transform: scale(1.05);
}

.services-style-01 .services-info {
    background: #fff !important;
    padding: 24px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--wb-pink);
}

.services-style-01 .services-step {
    color: var(--wb-pink);
    font-size: 32px;
    font-weight: 800;
    opacity: 0.2;
    margin-bottom: 8px;
}

.services-style-01 .services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-style-01 .services-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-style-01 .services-content h4 a {
    color: var(--wb-navy) !important;
    transition: color 0.2s ease;
}

.services-style-01 .services-content h4 a:hover {
    color: var(--wb-pink) !important;
}

.services-style-01 .services-content p {
    color: #6c757d !important;
    font-size: 14px;
    line-height: 1.6;
    opacity: 1 !important;
    flex: 1;
}

.services-style-01 .services-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Checklist items in loan cards */
.services-style-01 .services-content .list-unstyled li {
    color: #555 !important;
    font-size: 14px;
    line-height: 1.8;
}

.services-style-01 .services-content .list-unstyled li i {
    color: var(--wb-pink) !important;
}

/* Make product card columns equal height */
.services-style-01 .services-info .services-content {
    height: 100%;
}

/* =====================
   FEATURE INFO CARDS (Home page)
   ===================== */
.feature-info-style-02 {
    border-radius: var(--wb-radius);
    overflow: hidden;
    transition: var(--wb-transition);
}

.feature-info-style-02:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-lg);
}

.feature-info-main-title {
    border-radius: var(--wb-radius);
}

/* =====================
   WHY JOIN US - Feature Cards
   ===================== */
.wb-feature-card {
    background: #fff;
    border-radius: var(--wb-radius);
    padding: 30px 25px;
    box-shadow: var(--wb-shadow);
    transition: var(--wb-transition);
    height: 100%;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.wb-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-hover);
    border-bottom-color: var(--wb-pink);
}

.wb-feature-card .wb-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: var(--wb-transition);
}

.wb-feature-card:hover .wb-feature-icon {
    transform: scale(1.1);
}

.wb-feature-card h5 {
    font-weight: 700;
    color: var(--wb-navy);
    margin-bottom: 12px;
}

.wb-feature-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial-item .testimonial-content {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--wb-pink);
}

.testimonial-item .testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
}

.wb-quote-icon {
    font-size: 48px;
    color: var(--wb-pink);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 10px;
}

/* =====================
   GALLERY
   ===================== */
.my-shuffle-container.columns-4 {
    display: flex;
    flex-wrap: wrap;
}

.columns-4 .grid-item {
    width: 25%;
    padding: 8px;
}

.gallery-item {
    border-radius: var(--wb-radius) !important;
    overflow: hidden !important;
    box-shadow: var(--wb-shadow-sm);
    transition: var(--wb-transition);
}

.gallery-item:hover {
    box-shadow: var(--wb-shadow-lg);
}

.gallery-img {
    min-height: 250px !important;
    border-radius: var(--wb-radius) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-info {
    border-radius: var(--wb-radius) !important;
}

.gallery-info .icon-btn {
    background: var(--wb-gold) !important;
    color: var(--wb-navy) !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--wb-transition);
}

.gallery-info .icon-btn:hover {
    background: #fff !important;
    color: var(--wb-pink) !important;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .columns-4 .grid-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .columns-4 .grid-item {
        width: 100%;
    }
}

/* Filter buttons */
.btn-filter {
    border: 2px solid #e9ecef;
    background: #fff;
    padding: 8px 24px;
    margin: 0 4px 8px;
    border-radius: var(--wb-radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--wb-navy);
    transition: var(--wb-transition);
    cursor: pointer;
}

.btn-filter:hover {
    border-color: var(--wb-pink);
    color: var(--wb-pink);
    background: rgba(216, 57, 124, 0.05);
}

.btn-filter.active {
    background: var(--wb-pink);
    color: #fff;
    border-color: var(--wb-pink);
    box-shadow: 0 4px 12px rgba(216, 57, 124, 0.3);
}

/* =====================
   BLOG POSTS
   ===================== */
.blog-post-style-01 {
    border-radius: var(--wb-radius);
    overflow: hidden;
    transition: var(--wb-transition);
    background: #fff;
    box-shadow: var(--wb-shadow-sm);
}

.blog-post-style-01:hover {
    transform: translateY(-6px);
    box-shadow: var(--wb-shadow-hover);
}

.blog-post-style-01:hover .blog-post-image img {
    transform: scale(1.06);
}

.blog-post-style-01 h5 a {
    transition: color 0.2s ease;
}

.blog-post-style-01 h5 a:hover {
    color: var(--wb-pink) !important;
}

/* =====================
   FORMS
   ===================== */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 10px 16px;
    font-size: 15px;
    height: auto;
    min-height: 44px;
    transition: var(--wb-transition);
}

.form-control:focus {
    border-color: var(--wb-pink);
    box-shadow: 0 0 0 3px rgba(216, 57, 124, 0.12);
}

select.form-control {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.5;
    height: auto;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23555' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 36px;
}

.form-control-sm {
    font-size: 14px;
    padding: 8px 14px;
    min-height: 38px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

/* =====================
   MEMBERSHIP PAGE
   ===================== */

/* Steps */
.wb-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    transition: var(--wb-transition);
}

.wb-step:hover {
    transform: translateX(5px);
}

.wb-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--wb-pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-right: 16px;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(216, 57, 124, 0.3);
    transition: var(--wb-transition);
}

.wb-step:hover .wb-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(216, 57, 124, 0.4);
}

.wb-step-content h6 {
    font-weight: 700;
    color: var(--wb-navy);
    margin-bottom: 4px;
    font-size: 15px;
}

.wb-step-content p {
    font-size: 13px;
    line-height: 1.5;
}

/* Contribution list */
.wb-contribution-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.wb-contribution-list li {
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.wb-contribution-list li:last-child {
    border-bottom: none;
}

.wb-contribution-list li i {
    color: var(--wb-pink);
    font-size: 12px;
}

/* PDF Download card */
.wb-pdf-download {
    background: var(--wb-gold-light);
    border-radius: var(--wb-radius);
    padding: 20px 24px;
    border: 2px solid rgba(239, 178, 37, 0.2);
    transition: var(--wb-transition);
}

.wb-pdf-download:hover {
    box-shadow: 0 4px 16px rgba(239, 178, 37, 0.2);
}

.wb-pdf-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--wb-radius);
    background: var(--wb-gold);
    color: var(--wb-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Legacy step style override */
.step-style-03 {
    transition: var(--wb-transition);
    padding: 8px 0;
}

.step-style-03:hover {
    transform: translateX(8px);
}

.step-style-03 .step-number span {
    border-radius: 50% !important;
}

/* Form section dividers */
.card-body hr {
    border-color: #f0f0f0;
}

/* =====================
   TEAM CARDS
   ===================== */
.team-style-01 {
    border-radius: var(--wb-radius);
    overflow: hidden;
    transition: var(--wb-transition);
}

.team-style-01:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-lg);
}

/* =====================
   COUNTDOWN
   ===================== */
.countdown-item {
    text-align: center;
    background: #fff;
    border-radius: var(--wb-radius);
    padding: 20px 24px;
    min-width: 90px;
    box-shadow: var(--wb-shadow);
}

.countdown-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--wb-pink);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-top: 8px;
    font-weight: 600;
}

/* =====================
   FOOTER
   ===================== */
footer.footer {
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--wb-gold), var(--wb-pink-dark), var(--wb-pink)) 1;
}

footer.footer p,
footer.footer span,
footer.footer a,
footer.footer li {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer.footer .footer-contact-info span {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer.footer .copyright p,
footer.footer .copyright a {
    color: rgba(255, 255, 255, 0.75) !important;
}

footer h5,
footer h6 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px !important;
}

footer h5::after,
footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--wb-gold);
    border-radius: 2px;
}

footer .useful-links a,
footer ul.footer-contact a {
    transition: var(--wb-transition);
    display: inline-block;
}

footer .useful-links a:hover {
    color: var(--wb-gold) !important;
    padding-left: 6px;
}

footer .footer-social-icon ul li a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--wb-transition);
}

footer .footer-social-icon ul li a:hover {
    background: var(--wb-gold);
    color: var(--wb-navy) !important;
    transform: translateY(-3px);
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 20px;
}

footer .footer-newsletter .form-control {
    border-radius: var(--wb-radius-pill);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

footer .footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

footer .footer-newsletter .form-control:focus {
    border-color: var(--wb-gold);
    box-shadow: 0 0 0 3px rgba(239, 178, 37, 0.15);
    background: rgba(255, 255, 255, 0.2);
}

footer .footer-newsletter .btn {
    border-radius: var(--wb-radius-pill);
}

/* =====================
   BREADCRUMBS
   ===================== */
.breadcrumb {
    border-radius: 0;
    padding: 12px 0;
}

.breadcrumb-item a {
    color: var(--wb-pink);
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--wb-pink-dark);
}

.breadcrumb-item.active span {
    color: #6c757d;
}

/* =====================
   TABLES (Loan Calculator)
   ===================== */
.table-responsive {
    border-radius: 0 0 var(--wb-radius) var(--wb-radius);
    overflow: hidden;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(5, 44, 82, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(216, 57, 124, 0.06);
}

.thead-light th {
    background: #f8f9fa;
    font-weight: 700;
    color: var(--wb-navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================
   BADGES
   ===================== */
.badge {
    border-radius: var(--wb-radius-pill);
    padding: 5px 12px;
    font-weight: 600;
}

.badge-primary {
    background-color: var(--wb-pink);
}

.badge-warning {
    background-color: var(--wb-gold);
    color: var(--wb-navy);
}

/* =====================
   BACK TO TOP & CHAT
   ===================== */
#back-to-top {
    z-index: 998 !important;
    border-radius: var(--wb-radius) !important;
}

#back-to-top a {
    border-radius: var(--wb-radius) !important;
}

/* =====================
   BOX SHADOW UTILITIES
   ===================== */
.box-shadow {
    box-shadow: var(--wb-shadow) !important;
    border-radius: var(--wb-radius);
    overflow: hidden;
}

.box-shadow-lg {
    box-shadow: var(--wb-shadow-lg) !important;
    border-radius: var(--wb-radius);
}

/* =====================
   ACCORDION
   ===================== */
.accordion .card {
    border-radius: var(--wb-radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

/* =====================
   LOADING SPINNER
   ===================== */
.spinner-border-sm {
    border-color: rgba(255, 255, 255, 0.3);
    border-right-color: #fff;
}

/* =====================
   ABOUT PAGE
   ===================== */
.wb-about-dark {
    background: var(--wb-navy);
    border-radius: var(--wb-radius-lg);
    padding: 48px 40px;
}

.wb-about-dark h3 {
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.wb-about-dark h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wb-pink), var(--wb-gold));
    border-radius: 2px;
}

.wb-about-dark p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
}

.wb-vision-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border-radius: var(--wb-radius);
    box-shadow: var(--wb-shadow-sm);
    transition: var(--wb-transition);
}

.wb-vision-card:hover {
    transform: translateX(8px);
    box-shadow: var(--wb-shadow);
}

.wb-vision-card:last-child {
    margin-bottom: 0;
}

.wb-vision-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    transition: var(--wb-transition);
}

.wb-vision-card:hover .wb-vision-icon {
    transform: scale(1.1);
}

.wb-vision-card h5 {
    font-weight: 700;
    color: var(--wb-navy);
    margin-bottom: 6px;
    font-size: 17px;
}

.wb-vision-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =====================
   LOAN CALCULATOR PAGE
   ===================== */
.wb-calc-card .card-header {
    background: var(--wb-navy) !important;
    padding: 18px 24px;
}

.wb-calc-card .card-header h5 {
    font-size: 1.1rem;
    color: #fff;
}

.wb-calc-card .card-body .form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--wb-navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wb-calc-card .card-body .form-group label i {
    font-size: 15px;
    color: var(--wb-pink);
    width: 18px;
    text-align: center;
}

/* Result summary cards */
.wb-calc-result .card {
    border-left-width: 3px !important;
    border-left-style: solid !important;
}

.wb-calc-result .card h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
}

.wb-calc-result .card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--wb-navy);
}

.wb-calc-result .card i {
    font-size: 28px;
}

/* Loan info sidebar card */
.wb-loan-info li {
    font-size: 14px;
    padding: 6px 0;
}

.wb-loan-info li i {
    font-size: 15px;
    width: 20px;
}

/* =====================
   ICON UTILITIES
   ===================== */
/* Inline icons in text/titles */
.wb-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-size: 16px;
    margin-right: 8px;
}

/* Circular icon badges - small */
.wb-icon-circle-sm {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Circular icon badges - medium */
.wb-icon-circle-md {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Circular icon badges - large */
.wb-icon-circle-lg {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Service card title icons */
.services-style-01 .services-content h4 i {
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Checklist icons */
.services-style-01 .services-content .list-unstyled li i,
.wb-contribution-list li i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Section heading icon styling */
.wb-section-icon {
    font-size: 14px;
    margin-right: 8px;
    color: var(--wb-pink);
}

/* Contact info bar icons */
.wb-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--wb-transition);
}

/* =====================
   CONTACT PAGE
   ===================== */
.wb-contact-form .card-body {
    padding: 28px !important;
}

.wb-contact-form h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wb-navy);
}

.wb-contact-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* =====================
   MEMBERSHIP PAGE EXTRAS
   ===================== */
.wb-membership-header {
    background: var(--wb-pink) !important;
    border-radius: var(--wb-radius) var(--wb-radius) 0 0 !important;
    padding: 18px 28px !important;
}

.wb-membership-header h5 {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.wb-membership-header h5 i {
    font-size: 20px;
    margin-right: 12px;
    opacity: 0.9;
}

/* Form section headers in membership */
.wb-form-section-title {
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wb-pink);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--wb-pink-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wb-form-section-title i {
    font-size: 14px;
}

/* =====================
   RESPONSIVE ADJUSTMENTS
   ===================== */
@media (max-width: 991px) {
    body {
        font-size: 14px;
    }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.15rem; }

    .form-control {
        font-size: 14px;
        min-height: 40px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.2rem; }

    .inner-header {
        padding: 50px 0 35px;
    }

    .inner-header .inner-title {
        font-size: 1.6rem;
    }

    .services-style-01 img {
        height: 180px;
    }

    .wb-feature-card {
        padding: 24px 20px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-item {
        padding: 14px 16px;
        min-width: 70px;
    }

    .card .card-header {
        padding: 14px 18px;
    }

    .wb-calc-result .card h4 {
        font-size: 1.1rem;
    }
}
