/* Brand Override CSS - Extracted from app.blade.php layout head */

/* Preloader letter loader color */
.letters-loading::before {
    color: var(--brand-primary) !important;
}

/* Primary Color overrides (#3e8f75) */
.theme-main-menu .inner-content,
.btn-one,
.btn-four,
.scroll-top,
.ctn-preloader .icon span,
.theme-main-menu.menu-style-three.sticky-menu .inner-content,
.about-button-group .btn-one,
.btn-four.inverse:hover,
.card-one .icon,
.ctn-preloader,
.donate-widget .progress-bar,
.progressbar-one .progress-bar,
.blog-meta-one .post-info .post-author li span {
    background-color: var(--brand-primary) !important;
}

.theme-main-menu .navbar-nav .nav-link:hover,
.theme-main-menu .navbar-nav .show>.nav-link,
.theme-main-menu .navbar-nav .active>.nav-link,
.text-primary,
a:hover,
.blog-meta-one .blog-title a:hover,
.contact-info .icon,
.cta-text,
.active-category,
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus,
.upper-title,
.title-one .upper-title {
    color: var(--brand-primary) !important;
}

.btn-one,
.btn-four,
.btn-four.inverse:hover,
.scroll-top,
.donate-widget {
    border-color: var(--brand-primary) !important;
}

/* Secondary Color overrides (#f9da22) */
.bg-two,
.btn-four.inverse,
.impact-cta,
.theme-main-menu .impact-cta,
.btn-one:hover,
.btn-four:hover,
.avatar-group .avatar {
    background-color: var(--brand-secondary) !important;
}

.btn-four.inverse {
    border-color: var(--brand-secondary) !important;
    color: #fff !important;
}

.btn-one:hover,
.btn-four:hover {
    border-color: var(--brand-secondary) !important;
}

.theme-main-menu .impact-cta:hover {
    background-color: var(--brand-primary) !important;
}

/* Dark Color overrides (#2a493d) */
h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.nice-select .current,
.theme-main-menu .navbar-nav .nav-link,
.main-footer .footer-title,
.main-footer .social-icon li a:hover,
.contact-info .text-white,
.contact-info a.text-white {
    color: var(--brand-dark) !important;
}

.main-footer.bg-one,
.nice-select .option.selected,
.nice-select .option:hover,
.blog-meta-one .post-meta .bottom-widget li .details-cta:hover {
    background-color: var(--brand-dark) !important;
}

/* Light Color overrides (#e4f8f2) */
.blog-section-one,
.fancy-banner-one:before,
.fancy-banner-one.bg-two:before,
.blog-meta-one .post-meta .bottom-widget li .details-cta,
.blog-meta-one.version-three .post-meta .save-post {
    background-color: var(--brand-light) !important;
    background: var(--brand-light) !important;
}

/* Custom spacing and styles for calculator/forms */
.ziswaf-card {
    border: 1px solid rgba(15, 30, 54, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 30, 54, 0.04);
    background: #ffffff;
    padding: 40px;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 767.98px) {
    .ziswaf-card {
        padding: 24px 16px;
    }
}

.ziswaf-input {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.ziswaf-input:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 78, 152, 0.1);
}

.ziswaf-label {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

/* Premium Segmented Controls for Calculator Tabs */
.ziswaf-segmented-tabs-container {
    background: #f1f5f9;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    gap: 4px;
    border: 1px solid rgba(15, 30, 54, 0.04);
}

.ziswaf-segmented-tab {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #64748b;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.ziswaf-segmented-tab i {
    font-size: 14px;
}

.ziswaf-segmented-tab:hover {
    color: var(--brand-primary);
}

.ziswaf-segmented-tab.active {
    background: #ffffff;
    color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(15, 30, 54, 0.08);
}

@media (max-width: 767.98px) {
    .ziswaf-segmented-tabs-container {
        padding: 4px;
        border-radius: 30px;
    }
    
    .ziswaf-segmented-tab {
        padding: 8px 10px;
        font-size: 12.5px;
        border-radius: 30px;
    }
    
    .ziswaf-segmented-tab i {
        font-size: 12px;
        margin-right: 4px !important;
    }
}

/* Custom Premium Input Groups */
.ziswaf-input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    width: 100%;
}

.ziswaf-input-group:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(22, 78, 152, 0.08);
}

.ziswaf-input-group-text {
    background: #f8fafc;
    border: none;
    border-right: 1px solid #e2e8f0;
    padding: 0 16px;
    color: #64748b;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.ziswaf-input-group:focus-within .ziswaf-input-group-text {
    border-color: var(--brand-primary);
    background: var(--brand-light);
    color: var(--brand-primary);
}

.ziswaf-input-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--brand-dark);
    font-weight: 600;
    background: transparent;
    height: auto;
    width: 100%;
}

.ziswaf-input-field::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Gold Price Reference Card */
.gold-reference-card {
    background: #f8fafc;
    border: 1px dashed rgba(22, 78, 152, 0.2);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.gold-reference-card:hover {
    border-color: var(--brand-primary);
    background: #fdfefe;
}

/* Results Section styling */
.nisab-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.nisab-info-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.nisab-info-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.nisab-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.nisab-row:last-child {
    margin-bottom: 0;
}

.nisab-row .label {
    color: #64748b;
    font-size: 13.5px;
    font-weight: 500;
}

.nisab-row .value {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 14px;
}

/* Obligation Cards */
.obligation-card {
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.obligation-active {
    background: linear-gradient(135deg, var(--brand-light), #ecfdf5);
    border: 1px solid #10b981;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.08);
}

.obligation-active h6 {
    color: #065f46 !important;
    font-weight: 700;
    font-size: 16px;
}

.obligation-active p {
    color: #047857;
    font-size: 13px;
    line-height: 1.45;
}

.obligation-inactive {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.obligation-inactive h6 {
    color: #64748b !important;
    font-weight: 700;
    font-size: 16px;
}

.obligation-inactive p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.obligation-active .btn-salurkan {
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(22, 78, 152, 0.25);
    transition: all 0.2s ease-in-out;
}

.obligation-active .btn-salurkan:hover {
    background: var(--brand-secondary);
    box-shadow: 0 6px 14px rgba(36, 105, 196, 0.35);
    transform: translateY(-1px);
}

.ziswaf-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 16px;
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
    display: none;
    transition: all 0.3s ease;
}


.ziswaf-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 30, 54, 0.08);
    background: #f8fafc;
    color: var(--brand-dark);
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.ziswaf-tab:hover {
    background: var(--brand-light);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.ziswaf-tab.active {
    background: var(--brand-primary) !important;
    color: #fff !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 4px 12px rgba(15, 30, 54, 0.15) !important;
}

.ziswaf-tab.active:hover {
    color: #fff !important;
    background: var(--brand-primary) !important;
    transform: none;
    box-shadow: 0 4px 12px rgba(15, 30, 54, 0.2) !important;
}

/* Mobile responsive styles for category tabs */
@media (max-width: 767.98px) {
    .ziswaf-tab {
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 20px;
    }
}


.text-accent {
    color: var(--brand-secondary) !important;
}

.alert-success {
    background-color: var(--brand-light) !important;
    border-color: var(--brand-secondary) !important;
    color: var(--brand-dark) !important;
}

.alert-success .btn-close {
    filter: invert(0) !important;
}

/* Stage 2 Custom Overrides */
.theme-main-menu .top-header,
.theme-main-menu.menu-style-three .top-header {
    background-color: var(--brand-dark) !important;
    background: var(--brand-dark) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.theme-main-menu .top-header a,
.theme-main-menu.menu-style-three .top-header a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.theme-main-menu .top-header a:hover,
.theme-main-menu.menu-style-three .top-header a:hover {
    color: var(--brand-secondary) !important;
}

.theme-main-menu .top-header i,
.theme-main-menu.menu-style-three .top-header i {
    color: var(--brand-secondary) !important;
}

.btn-one:hover,
.btn-four:hover,
.btn-four.inverse:hover {
    color: #fff !important;
}

.main-footer.bg-one {
    background: var(--brand-dark) !important;
    background-image: none !important;
}

.main-footer,
.main-footer .footer-title,
.main-footer h1,
.main-footer h2,
.main-footer h3,
.main-footer h4,
.main-footer h5,
.main-footer h6,
.main-footer a,
.main-footer .contact-info .text-white,
.main-footer .contact-info a.text-white {
    color: #ffffff !important;
}

.main-footer a:hover {
    color: var(--brand-secondary) !important;
}

.main-footer .footer-nav-link li a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.main-footer .footer-nav-link li a:hover {
    color: #ffffff !important;
}

/* Hero Banner overrides to prevent dark color collision */
.hero-banner-three .slogan {
    border-bottom-color: var(--brand-secondary) !important;
}

.hero-banner-three .slogan.slogan-light {
    color: #ffffff !important;
}

.hero-banner-three .slogan.slogan-dark {
    color: var(--brand-dark) !important;
}

.hero-banner-three .hero-heading.text-light {
    color: #ffffff !important;
}

.hero-banner-three .hero-heading.text-dark {
    color: var(--brand-dark) !important;
}

.hero-banner-three .hero-desc.text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-banner-three .hero-desc.text-dark {
    color: rgba(15, 30, 54, 0.85) !important;
}

/* Footer social icons override to prevent white-on-white collision */
.main-footer .social-icon li a {
    color: var(--brand-dark) !important;
}

.main-footer .social-icon li a:hover {
    color: var(--brand-dark) !important;
}

/* Force regular btn-four button text to be white instead of black on blue background */
.btn-four {
    color: #ffffff !important;
}

/* Global Typography Sizing for UI/UX Consistency */
h1.hero-heading,
.hero-banner-three .hero-heading,
.hero-banner-one .hero-heading {
    font-size: 52px !important;
    line-height: 1.15em !important;
    font-weight: 700 !important;
}

.inner-banner-one h1,
.inner-banner-one h2 {
    font-size: 38px !important;
    line-height: 1.25em !important;
    font-weight: 700 !important;
}

.title-one h2,
.case-details h2,
.event-details h2 {
    font-size: 36px !important;
    line-height: 1.25em !important;
    font-weight: 600 !important;
}

/* Button Standardization */
.btn-one,
.btn-four,
.btn-primary,
.btn-outline-primary,
.copy-btn-modern {
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    min-width: auto !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
}

.btn-sm,
.btn-one.btn-sm,
.btn-four.btn-sm {
    padding: 6px 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    line-height: 1.2 !important;
    min-width: auto !important;
}

.btn-one {
    background-color: var(--brand-primary) !important;
    color: #ffffff !important;
    border-color: var(--brand-primary) !important;
}

.btn-one:hover {
    background-color: var(--brand-secondary) !important;
    border-color: var(--brand-secondary) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(36, 105, 196, 0.25) !important;
}

.btn-four {
    background-color: var(--brand-secondary) !important;
    color: #ffffff !important;
    border-color: var(--brand-secondary) !important;
}

.btn-four:hover {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(22, 78, 152, 0.25) !important;
}

.btn-four.inverse {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-four.inverse:hover {
    background-color: #ffffff !important;
    color: var(--brand-dark) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25) !important;
}

.btn-primary {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--brand-secondary) !important;
    border-color: var(--brand-secondary) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(36, 105, 196, 0.25) !important;
}

.btn-outline-primary {
    color: var(--brand-primary) !important;
    border: 1px solid var(--brand-primary) !important;
    background-color: transparent !important;
}

.copy-btn-modern {
    background-color: #ffffff !important;
    color: var(--brand-primary) !important;
    border-color: #e5e7eb !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
}

.copy-btn-modern:hover {
    background-color: var(--brand-light) !important;
    border-color: var(--brand-primary) !important;
    color: var(--brand-primary) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(22, 78, 152, 0.1) !important;
}

/* Responsive scaling down for smaller viewports */
@media (max-width: 991px) {

    h1.hero-heading,
    .hero-banner-three .hero-heading,
    .hero-banner-one .hero-heading {
        font-size: 42px !important;
        line-height: 1.2em !important;
    }

    .inner-banner-one h1,
    .inner-banner-one h2 {
        font-size: 32px !important;
        line-height: 1.3em !important;
    }

    .title-one h2,
    .case-details h2,
    .event-details h2 {
        font-size: 30px !important;
        line-height: 1.3em !important;
    }
}

@media (max-width: 575px) {

    h1.hero-heading,
    .hero-banner-three .hero-heading,
    .hero-banner-one .hero-heading {
        font-size: 32px !important;
        line-height: 1.25em !important;
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }

    .hero-banner-three .slogan {
        font-size: 16px !important;
    }

    .inner-banner-one h1,
    .inner-banner-one h2 {
        font-size: 26px !important;
        line-height: 1.3em !important;
    }

    .title-one h2,
    .case-details h2,
    .event-details h2 {
        font-size: 26px !important;
        line-height: 1.3em !important;
    }

    .card-style-two .info-meta h4 {
        font-size: 18px !important;
        line-height: 1.4em !important;
    }

    .blog-meta-one .post-meta .blog-title {
        font-size: 18px !important;
        line-height: 1.4em !important;
    }
}

/* Sticky Header Glassmorphism */
.theme-main-menu.sticky-menu.fixed .inner-content,
.theme-main-menu.menu-style-three.sticky-menu.fixed .inner-content {
    background: color-mix(in srgb, var(--brand-dark) 85%, transparent) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.theme-main-menu.fixed .top-header {
    display: none !important;
}

/* Underline Sliding Animation for Nav Links */
.theme-main-menu .navbar-nav .nav-link {
    position: relative !important;
}

.theme-main-menu .navbar-nav .nav-link::after {
    content: "" !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: -5px !important;
    left: 50% !important;
    background-color: var(--brand-secondary) !important;
    transition: all 0.3s ease-in-out !important;
    transform: translateX(-50%) !important;
}

.theme-main-menu .navbar-nav .nav-link:hover::after,
.theme-main-menu .navbar-nav .nav-link.active::after {
    width: 80% !important;
}

/* Glowing Pill Search Input for Light Pages */
.search-form-one input {
    border-radius: 30px !important;
    padding-left: 20px !important;
    padding-right: 55px !important;
    height: 50px !important;
    transition: all 0.3s ease !important;
    border: 1px solid #d1d5db !important;
    background: #ffffff !important;
    color: var(--brand-dark) !important;
    font-size: 14px !important;
    width: 100% !important;
}

.search-form-one input:focus {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 10px rgba(22, 78, 152, 0.15) !important;
    background: #ffffff !important;
    outline: none !important;
}

.search-form-one button {
    position: absolute !important;
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--brand-primary) !important;
    color: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.search-form-one button:hover {
    background: var(--brand-secondary) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.search-form-one button i {
    font-size: 14px !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: block !important;
}

/* Hero Slider Glassmorphism */
.hero-glass-card {
    background: rgba(15, 30, 54, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 40px 50px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

/* Modern Horizontal Stats Cards */
.counter-section-one .bg-wrapper {
    background: transparent !important;
    padding: 60px 0 0 0 !important;
    margin-top: 0 !important;
}

.counter-block-one {
    background: var(--brand-light) !important;
    border-radius: 16px !important;
    padding: 28px 24px !important;
    box-shadow: 0 10px 25px rgba(22, 78, 152, 0.04) !important;
    border: 1px solid rgba(22, 78, 152, 0.12) !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.counter-block-one:hover {
    transform: none !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 12px 30px rgba(22, 78, 152, 0.08) !important;
    background: #ffffff !important;
}

.counter-block-one .icon-circle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    background-color: #ffffff !important;
    color: var(--brand-primary) !important;
    box-shadow: 0 4px 10px rgba(22, 78, 152, 0.08) !important;
    transition: all 0.3s ease !important;
}

.counter-block-one .icon-circle i {
    transition: transform 0.3s ease !important;
}

.counter-block-one:hover .icon-circle {
    background-color: var(--brand-primary) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.counter-block-one:hover .icon-circle i {
    transform: scale(1.15) rotate(5deg) !important;
}

.counter-block-one .main-count {
    font-family: 'Outfit', sans-serif !important;
    font-size: 23px !important;
    font-weight: 800 !important;
    color: var(--brand-dark) !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    transition: color 0.3s ease !important;
}

.counter-block-one:hover .main-count {
    color: var(--brand-primary) !important;
}

.counter-block-one p.stat-label {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    color: #4b5563 !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

/* Campaign Cards Premium Overrides */
.card-style-two {
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.card-style-two .media-bg {
    height: 170px !important;
}

.card-style-two .info-meta {
    padding: 16px 16px 18px 16px !important;
}

.card-style-two .tags {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 10px !important;
    color: var(--brand-primary) !important;
    background-color: var(--brand-light) !important;
    display: inline-block;
}

.card-style-two h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 8px !important;
    margin-bottom: 10px !important;
    line-height: 1.35em !important;
}

.card-style-two .fund-goal {
    font-size: 13px !important;
    color: #4b5563 !important;
    margin-bottom: 10px !important;
}

.card-style-two:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.card-style-two:hover .media-bg {
    transform: scale(1.05) !important;
}

.badge-floating-glass {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 5 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(5px) !important;
    color: var(--brand-primary) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    letter-spacing: 0.5px;
}

.ziswaf-progress-bar-container {
    height: 8px !important;
    background-color: #e2e8f0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

.ziswaf-progress-bar-fill {
    height: 100% !important;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary)) !important;
    border-radius: 10px !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

/* Blog/News Cards Premium Overrides */
.blog-meta-one {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
}

.blog-meta-one .article-image-wrapper {
    position: relative !important;
    overflow: hidden !important;
    height: 180px !important;
}

.blog-meta-one .article-image {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.5s ease !important;
}

.blog-meta-one:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.blog-meta-one:hover .article-image {
    transform: scale(1.05) !important;
}

.article-badge-glass {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: var(--brand-primary) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    letter-spacing: 0.5px !important;
    z-index: 2 !important;
}

.article-body {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.article-date {
    font-size: 12px !important;
    color: #9ca3af !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 500 !important;
}

.article-date i {
    margin-right: 5px !important;
    font-size: 11px !important;
}

.article-title {
    font-size: 15px !important;
    line-height: 1.35em !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.article-title a {
    color: var(--brand-dark) !important;
    transition: color 0.2s ease !important;
}

.article-title a:hover {
    color: var(--brand-primary) !important;
}

.article-excerpt {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #6b7280 !important;
    margin-bottom: 12px !important;
}

.article-read-more {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--brand-primary) !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-top: auto !important;
    transition: color 0.2s ease !important;
}

.article-read-more i {
    margin-left: 5px !important;
    font-size: 10px !important;
    transition: transform 0.2s ease !important;
}

.article-read-more:hover i {
    transform: translateX(3px) !important;
}

/* Glass & Soft Shadow Cards */
.glass-info-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

.glass-info-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-2px) !important;
}

/* Bank Selector Grid Layout */
.bank-selector-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacks vertically to prevent overflow in narrow sidebar */
    gap: 12px;
}

.bank-select-card {
    position: relative;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 16px !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.bank-select-card:hover {
    border-color: var(--brand-secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.bank-select-card.active {
    border-color: var(--brand-primary) !important;
    background-color: var(--brand-light) !important;
    box-shadow: 0 0 0 2px rgba(22, 78, 152, 0.1), 0 8px 20px rgba(22, 78, 152, 0.05) !important;
}

.bank-select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bank-select-card .checkmark-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brand-primary);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffffff;
    z-index: 2;
}

.bank-select-card.active .checkmark-icon {
    display: flex !important;
}

.bank-select-card .bank-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-light);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

.bank-select-card.active .bank-icon-circle {
    background-color: #ffffff;
}

/* Highlight Transfer & Copy Components */
.transfer-highlight-box {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
}

.transfer-highlight-box:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04) !important;
}

.transfer-highlight-box strong {
    font-size: 36px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: var(--brand-dark) !important;
}

.copy-btn-modern {
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: var(--brand-primary) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.copy-btn-modern:hover {
    background: var(--brand-light) !important;
    border-color: var(--brand-primary) !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 4px 8px rgba(22, 78, 152, 0.08) !important;
}

.copy-btn-modern:active {
    transform: scale(0.97);
}

.tooltip-copied {
    position: relative;
}

.tooltip-copied::before {
    content: "Tersalin!";
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--brand-dark);
    color: #ffffff;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 100;
    white-space: nowrap;
}

.tooltip-copied.show-tooltip::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Donor Portal Gradation Cards & Styling */
.stat-card-gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 30px 24px !important;
    box-shadow: 0 10px 25px rgba(22, 78, 152, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.stat-card-gradient::after {
    content: "" !important;
    position: absolute !important;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -30px;
    right: -30px;
    pointer-events: none;
}

.stat-card-gradient:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(22, 78, 152, 0.25) !important;
}

.stat-card-gradient .card-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 12px;
}

.stat-card-gradient h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.table-modern {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #f0f2f5 !important;
}

.table-modern thead {
    background-color: var(--brand-light) !important;
}

.table-modern thead th {
    color: var(--brand-dark) !important;
    font-weight: 600 !important;
    border: none !important;
    font-size: 14px;
}

.table-modern tbody td {
    border-bottom: 1px solid #f0f2f5 !important;
    color: #374151 !important;
    font-size: 14px;
}

.table-modern tbody tr:last-child td {
    border-bottom: none !important;
}

/* General Heading Scaling Overrides */
.title-one h2 {
    font-size: 32px !important;
    line-height: 1.25em !important;
}

.glass-status-badge {
    font-weight: 600 !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    display: inline-block !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.glass-status-badge.booking {
    background: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border: 1px solid rgba(108, 117, 125, 0.2) !important;
}

.glass-status-badge.pending {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #b58105 !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
}

.glass-status-badge.success {
    background: rgba(22, 78, 152, 0.1) !important;
    color: var(--brand-primary) !important;
    border: 1px solid rgba(22, 78, 152, 0.2) !important;
}

.glass-status-badge.cancelled {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(22, 78, 152, 0.2) !important;
}

.campaign-detail-title-accent {
    position: relative;
    padding-left: 18px;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
}

.campaign-detail-title-accent::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4.5px;
    background-color: var(--brand-primary);
    border-radius: 3px;
}

@media (max-width: 767.98px) {
    .campaign-detail-title-accent {
        font-size: 18px !important;
        padding-left: 14px;
    }
}

.donor-avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    flex-shrink: 0;
}

/* Footer Contact Align Override */
.contact-info li {
    display: flex !important;
    align-items: center !important;
    padding-left: 0 !important;
}

.contact-info li.align-start {
    align-items: start !important;
}

.contact-info li .icon {
    position: static !important;
    float: none !important;
    flex-shrink: 0 !important;
}

/* Background image overrides with Brand Settings CSS colors */
.causes-section-one {
    background-image: none !important;
    background: #ffffff !important;
}

.main-footer {
    background-image: none !important;
    background: var(--brand-dark) !important;
}

/* Dynamic Hero Banner text styling based on Brand Settings variables */
.hero-heading.text-dark,
.hero-desc.text-dark,
.slogan-dark,
.slogan-dark span {
    color: var(--brand-dark) !important;
}

.hero-heading.text-light,
.hero-desc.text-light,
.slogan-light,
.slogan-light span {
    color: #ffffff !important;
}

/* Dynamic Inner Banner text styling based on Brand Settings variables */
.inner-banner-one h1.text-dark,
.inner-banner-one div.text-dark,
.inner-banner-one p.text-dark {
    color: var(--brand-dark) !important;
}

.inner-banner-one h1.text-light,
.inner-banner-one div.text-light,
.inner-banner-one p.text-light {
    color: #ffffff !important;
}

/* Sidebar Desktop Alignment */
@media (min-width: 992px) {
    .sidebar {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .sidebar-widget:first-of-type {
        margin-top: 0 !important;
    }
}

/* Share Copy Link Toast Feedback */
.copy-feedback-toast {
    display: none;
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.copy-feedback-toast.show {
    display: block;
    animation: fadeInOut 1.5s ease-in-out forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, 5px);
    }

    15% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    85% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -5px);
    }
}

/* Responsive Section Spacing Overrides for Mobile Viewports */
@media (max-width: 991px) {
    .header-space-fix-three {
        margin-top: 90px !important;
    }

    .inner-banner-one {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .causes-details,
    .causes-section-one {
        padding-top: 50px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 575px) {
    .header-space-fix-three {
        margin-top: 75px !important;
    }

    .inner-banner-one {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .causes-details,
    .causes-section-one {
        padding-top: 40px !important;
        padding-bottom: 60px !important;
    }
}

/* Hide scrollbars for scrollable category bars */
.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.scrollbar-hidden {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Dynamic Donation Live Notifier Pop-Up Styles */
.donation-toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 78, 152, 0.12) !important;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(15, 30, 54, 0.15);
    padding: 14px 18px;
    max-width: 380px;
    width: 380px;
    opacity: 0;
    transform: translateX(-100px) translateY(0);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.donation-toast-container.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
}

.toast-heart-icon-wrapper {
    margin-right: 14px;
    flex-shrink: 0;
}

.toast-heart-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--brand-light);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(22, 78, 152, 0.08);
    animation: pulseHeart 2s infinite;
}

@keyframes pulseHeart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.toast-content-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-grow: 1;
}

.toast-title-text {
    font-size: 13.5px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.4;
    word-break: break-word;
}

.toast-desc-text {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Mobile responsive layout for Live Notifier */
@media (max-width: 575px) {
    .donation-toast-container {
        left: 16px;
        right: 16px;
        bottom: 85px !important;
        width: calc(100% - 32px);
        max-width: none;
        transform: translateX(0) translateY(120px);
        padding: 12px 14px;
    }

    .donation-toast-container.show {
        transform: translateX(0) translateY(0);
    }

    .toast-heart-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .toast-title-text {
        font-size: 12.5px;
    }

    .toast-desc-text {
        font-size: 11px;
    }
}

/* Footer horizontal border color overrides */
.main-footer .contact-info li,
.main-footer .footer-news li,
.main-footer .bottom-footer {
    border-color: var(--brand-primary) !important;
}

/* Mobile responsive styles for 2-column card layouts */
@media (max-width: 575px) {

    /* Campaign Cards Mobile View adjustments */
    .card-style-two .media-bg {
        height: 110px !important;
    }

    .card-style-two .fund-goal span {
        font-size: 15px !important;
    }

    .card-style-two .info-meta {
        padding: 12px 10px 14px 10px !important;
    }

    .card-style-two .tags {
        font-size: 9px !important;
        font-weight: 800 !important;
        letter-spacing: 0.8px !important;
        padding: 2px 8px !important;
        left: 12px !important;
        top: -10px !important;
        line-height: normal !important;
        border-radius: 20px !important;
        border: 1px solid rgba(22, 78, 152, 0.12) !important;
        background-color: var(--brand-light) !important;
        color: var(--brand-primary) !important;
        text-transform: uppercase !important;
    }

    .card-style-two h4 {
        font-size: 13px !important;
        line-height: 1.3em !important;
        font-weight: 700 !important;
        margin-top: 4px !important;
        margin-bottom: 8px !important;
    }

    .card-style-two h4 a {
        font-size: 13px !important;
        line-height: 1.3em !important;
    }

    .card-style-two .fund-goal {
        font-size: 11px !important;
        line-height: 1.35 !important;
        margin-bottom: 6px !important;
        color: #4b5563 !important;
    }

    .card-style-two .fund-goal span {
        font-weight: 700 !important;
    }

    .counter-block-one .main-count {
        font-size: 20px !important;
    }

    .ziswaf-progress-bar-container {
        height: 6px !important;
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .card-style-two .btn-one.btn-sm {
        font-size: 11px !important;
        padding: 6px 12px !important;
        min-height: auto !important;
        line-height: 1.2 !important;
    }

    .card-style-two .shapes {
        display: none !important;
    }

    /* Article Cards Mobile View adjustments */
    .blog-meta-one .article-image-wrapper {
        height: 100px !important;
    }

    .blog-meta-one .article-body {
        padding: 10px 10px 12px 10px !important;
    }

    .blog-meta-one .article-date {
        font-size: 10.5px !important;
        margin-bottom: 4px !important;
    }

    .blog-meta-one .article-title {
        font-size: 13px !important;
        line-height: 1.3em !important;
        margin-bottom: 6px !important;
    }

    .blog-meta-one .article-excerpt {
        display: none !important;
    }

    .blog-meta-one .article-read-more {
        font-size: 11px !important;
        margin-top: 4px !important;
    }

    .article-badge-glass {
        font-size: 9px !important;
        padding: 2px 8px !important;
        top: 8px !important;
        left: 8px !important;
        border-radius: 20px !important;
    }
}

/* ==========================================
   PREMIUM FOOTER OVERHAUL (Modern Glassmorphism & Accent Underline)
   ========================================== */

/* Outer Footer Wrapper */
.main-footer.bg-one {
    background: var(--brand-dark) !important;
    background-image: none !important;
    padding-top: 80px !important;
    padding-bottom: 0 !important;
    color: #cbd5e1 !important;
    /* Premium light grey text */
}

/* Footer Intro Description */
.footer-intro p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #94a3b8 !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
}

/* Column Header Titles */
.main-footer .footer-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    position: relative !important;
    padding-bottom: 10px !important;
    display: inline-block !important;
}

/* Accent Underline on Titles */
.main-footer .footer-title::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 35px !important;
    height: 3px !important;
    background-color: var(--brand-secondary) !important;
    /* Secondary color underline */
    border-radius: 2px !important;
}

/* Link Lists (Middle Column) */
.main-footer .footer-nav-link li {
    margin-bottom: 12px !important;
}

.main-footer .footer-nav-link li a {
    font-size: 14px !important;
    color: #94a3b8 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

/* Nav Link Hover Shift Effect */
.main-footer .footer-nav-link li a:hover {
    color: #ffffff !important;
    transform: translateX(5px) !important;
    /* Smooth shift to the right */
}

/* Contact List (Right Column) */
.main-footer .contact-info {
    padding-left: 0 !important;
}

.main-footer .contact-info li {
    position: relative !important;
    padding-left: 48px !important;
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15) !important;
    /* Elegant dashed divide */
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #cbd5e1 !important;
}

.main-footer .contact-info li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Contact Links hover effects in footer */
.main-footer .contact-info li a {
    color: #ffffff !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.main-footer .contact-info li a:hover {
    color: var(--brand-secondary) !important;
    text-decoration: underline !important;
}

/* Modern Glassmorphic Circular Icons */
.main-footer .contact-info li .icon {
    width: 34px !important;
    height: 34px !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    /* Semi-transparent glass */
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

/* Icon Hover Pulse Glow Effect */
.main-footer .contact-info li:hover .icon {
    background-color: var(--brand-secondary) !important;
    border-color: var(--brand-secondary) !important;
    box-shadow: 0 0 12px rgba(36, 105, 196, 0.4) !important;
}

.main-footer .contact-info li .icon i {
    font-size: 14px !important;
    color: #ffffff !important;
    /* Force white icon inside badge */
    transition: all 0.3s ease !important;
}

/* Premium Social Icons list in column 1 */
.main-footer .footer-intro .social-icon {
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
}

.main-footer .footer-intro .social-icon li {
    margin-right: 12px !important;
    padding: 0 !important;
}

.main-footer .footer-intro .social-icon li a {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 15px !important;
}

.main-footer .footer-intro .social-icon li a:hover {
    background: var(--brand-secondary) !important;
    border-color: var(--brand-secondary) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(36, 105, 196, 0.3) !important;
}

/* Bottom Footer (Copyright & Legal) */
.main-footer .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 25px 0 !important;
    margin-top: 50px !important;
}

.main-footer .bottom-footer ul {
    margin: 0 !important;
    padding: 0 !important;
}

.main-footer .bottom-footer ul li {
    margin: 0 15px !important;
}

.main-footer .bottom-footer ul li a {
    font-size: 13px !important;
    color: #94a3b8 !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
}

.main-footer .bottom-footer ul li a:hover {
    color: #ffffff !important;
}

.main-footer .copyright-text {
    font-size: 13px !important;
    color: #64748b !important;
}

/* Mobile responsive styles specifically for the Footer */
@media (max-width: 767px) {
    .main-footer {
        padding-top: 60px !important;
    }

    .footer-intro {
        text-align: left !important;
        margin-bottom: 40px !important;
    }

    .footer-intro .social-icon {
        justify-content: flex-start !important;
    }

    .main-footer .footer-title {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }

    .main-footer .footer-nav {
        text-align: left !important;
        padding-left: 0 !important;
        margin-bottom: 40px !important;
    }

    .main-footer .footer-nav-link li a {
        font-size: 13px !important;
    }

    .main-footer .contact-info {
        text-align: left !important;
        margin-bottom: 30px !important;
    }

    .main-footer .contact-info li {
        font-size: 13px !important;
    }

    .main-footer .bottom-footer {
        text-align: center !important;
        margin-top: 25px !important;
    }

    .main-footer .bottom-footer .d-md-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .main-footer .bottom-footer ul {
        justify-content: center !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
        padding-left: 0 !important;
    }

    .main-footer .bottom-footer ul li {
        margin: 5px 10px !important;
    }

    .main-footer .copyright-text {
        text-align: center !important;
    }
}

/* Disable all scroll animations (SAL) globally */
[data-sal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Fix mobile hamburger menu not closing (keep toggler above drawer) */
.navbar-toggler {
    z-index: 10000 !important;
}

/* Mobile Bottom Navigation Bar */
@media (max-width: 991px) {
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 70px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(15, 30, 54, 0.08) !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 9999 !important;
        box-shadow: 0 -5px 25px rgba(15, 30, 54, 0.06) !important;
        padding: 0 10px !important;
    }

    .mobile-bottom-nav .nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        color: #8a94a6 !important;
        text-decoration: none !important;
        font-size: 11px !important;
        font-weight: 500 !important;
        width: 20% !important;
        height: 100% !important;
        transition: all 0.2s ease !important;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 18px !important;
        margin-bottom: 4px !important;
        transition: all 0.2s ease !important;
    }

    .mobile-bottom-nav .nav-item.active {
        color: var(--brand-primary) !important;
    }

    .mobile-bottom-nav .nav-item.active i {
        color: var(--brand-primary) !important;
        transform: translateY(-2px) !important;
    }

    /* FAB Action Button */
    .mobile-bottom-nav .fab-item {
        position: relative !important;
        height: 100% !important;
        justify-content: flex-end !important;
        padding-bottom: 15.5px !important;
    }

    .mobile-bottom-nav .fab-item .fab-btn {
        width: 54px !important;
        height: 54px !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 10px rgba(22, 78, 152, 0.15) !important;
        position: absolute !important;
        top: -24px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        border: 4px solid #fff !important;
    }

    .mobile-bottom-nav .fab-item .fab-btn i {
        font-size: 20px !important;
        color: #fff !important;
        margin-bottom: 0 !important;
        transition: transform 0.3s ease !important;
    }

    .mobile-bottom-nav .fab-item span {
        font-weight: 700 !important;
        font-size: 12px !important;
        color: var(--brand-primary) !important;
        letter-spacing: 0.2px !important;
        opacity: 0.75 !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        display: inline-block !important;
        transform-origin: bottom center !important;
    }

    .mobile-bottom-nav .fab-item:hover span,
    .mobile-bottom-nav .fab-item.active span {
        opacity: 1 !important;
        font-weight: 800 !important;
        transform: scale(1.05) !important;
    }

    .mobile-bottom-nav .fab-item:hover .fab-btn,
    .mobile-bottom-nav .fab-item.active .fab-btn {
        transform: translateX(-50%) translateY(-4px) scale(1.05) !important;
        box-shadow: 0 6px 14px rgba(22, 78, 152, 0.22) !important;
    }
}

/* Page body bottom padding adjustment and general mobile overrides */
@media (max-width: 991px) {
    body {
        padding-bottom: 75px !important;
    }
    
    /* Sticky Top Header on Mobile (Fixed from start, no animations) */
    .theme-main-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        background: var(--brand-dark) !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    /* Center the Logo in bottom-header on Mobile */
    .bottom-header .d-flex {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .theme-main-menu .logo {
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        float: none !important;
    }
    
    /* Hide Navbar Toggler and Right Donasi Widget on Mobile Header */
    .theme-main-menu .navbar-toggler,
    .theme-main-menu .right-widget {
        display: none !important;
    }
    
    /* Position Donation Toast above the Mobile Bottom Menu Bar */
    .donation-toast-container {
        bottom: 85px !important;
    }
}

/* Mobile Quick Menu Grid */
.mobile-quick-menu-section {
    border-bottom: 8px solid var(--brand-light) !important;
}

.quick-menu-col {
    flex: 0 0 18% !important;
    min-width: 65px !important;
    margin-bottom: 12px !important;
}

@media (max-width: 375px) {
    .quick-menu-col {
        flex: 0 0 28% !important; /* Wraps to 3 columns nicely on very small screens */
    }
}

.quick-menu-title {
    position: relative !important;
    padding-left: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    line-height: 1.2 !important;
    color: var(--brand-dark) !important;
}

.quick-menu-title::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    bottom: 2px !important;
    width: 4px !important;
    background-color: var(--brand-primary) !important;
    border-radius: 2px !important;
}

.quick-menu-item {
    text-decoration: none !important;
}

.quick-icon-wrapper {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}

.quick-icon-wrapper i {
    font-size: 22px !important;
}

.quick-menu-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--brand-dark) !important;
}

/* Soft Pastel Background Colors & Icon Colors */
.bg-soft-green { background-color: #ecfdf5 !important; }
.text-green { color: #10b981 !important; }

.bg-soft-blue { background-color: #eff6ff !important; }
.text-blue { color: #3b82f6 !important; }

.bg-soft-red { background-color: #fff5f5 !important; }
.text-red { color: #ef4444 !important; }

.bg-soft-purple { background-color: #faf5ff !important; }
.text-purple { color: #a855f7 !important; }

.bg-soft-orange { background-color: #fff7ed !important; }
.text-orange { color: #f97316 !important; }

.bg-soft-teal { background-color: #f0fdfa !important; }
.text-teal { color: #14b8a6 !important; }

/* Micro interaction */
.quick-menu-item:active .quick-icon-wrapper {
    transform: scale(0.92) !important;
}

/* Custom Page Titles & Descriptions */
.ziswaf-page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
}

.ziswaf-page-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.ziswaf-detail-title {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

/* Mobile responsive styles for page headers */
@media (max-width: 767.98px) {
    .ziswaf-page-title {
        font-size: 18px !important;
    }
    
    .ziswaf-page-description {
        font-size: 12px !important;
    }
    
    .ziswaf-detail-title {
        font-size: 22px !important;
        line-height: 1.35 !important;
    }
}

/* --- Campaign Detail Page Custom UI/UX Enhancements --- */

/* 1. Category-specific Badges */
.badge-category {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    border: 1px solid transparent !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    margin-bottom: 16px !important;
}
.badge-category-zakat {
    background-color: #ecfdf5 !important;
    color: #065f46 !important;
    border-color: #a7f3d0 !important;
}
.badge-category-infak {
    background-color: #eff6ff !important;
    color: #1e40af !important;
    border-color: #bfdbfe !important;
}
.badge-category-sedekah {
    background-color: #fff7ed !important;
    color: #854d0e !important;
    border-color: #fed7aa !important;
}
.badge-category-wakaf {
    background-color: #faf5ff !important;
    color: #6b21a8 !important;
    border-color: #e9d5ff !important;
}

/* 2. Image Container Zoom Effect */
.campaign-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}
.campaign-img-container img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.campaign-img-container:hover img {
    transform: scale(1.03) !important;
}

/* 3. Progress Bar Glow Shimmer */
.ziswaf-progress-bar-fill {
    position: relative;
    overflow: hidden;
}
.ziswaf-progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progress-shimmer 2.5s infinite linear;
}
@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 4. Statistics Pill Cards */
.stat-pill-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 16px 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01) !important;
}
.stat-pill-card:hover {
    border-color: var(--brand-secondary) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02) !important;
    transform: translateY(-3px) !important;
}
.stat-pill-card i {
    font-size: 22px !important;
    color: var(--brand-primary) !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
}
.stat-pill-card .stat-value {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
@media (min-width: 1200px) {
    .stat-pill-card .stat-value {
        font-size: 16px !important;
    }
    .stat-pill-card {
        padding: 18px 10px !important;
    }
}
.stat-pill-card .stat-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* 5. Section Label — dot accent */
.section-label-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 18px;
}
.section-label-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    flex-shrink: 0;
    display: inline-block;
}
.section-heading-count {
    font-weight: 400;
    color: #cbd5e1;
    text-transform: none;
    letter-spacing: 0;
}

/* 5. Donor Feed — slim & elegant */
.donor-card-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 11px 0 !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: none !important;
}
.donor-card-item:last-child {
    border-bottom: none !important;
}
.donor-avatar-circle {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}
.donor-name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}
.donor-time {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 400;
}
.donor-amount {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-primary);
    white-space: nowrap;
    margin-left: 12px;
    background: rgba(22, 78, 152, 0.07);
    padding: 4px 11px;
    border-radius: 20px;
}
.donor-empty {
    text-align: center;
    padding: 28px 0;
    color: #e2e8f0;
}
.donor-empty i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}
.donor-empty p {
    font-size: 13px;
    margin: 0;
    color: #94a3b8;
    font-weight: 500;
}

/* --- Campaign Description --- */
.campaign-description-content {
    font-size: 15px !important;
    line-height: 1.82 !important;
    color: #64748b !important;
}
@media (min-width: 992px) {
    .campaign-description-content {
        font-size: 16px !important;
        line-height: 1.85 !important;
        color: #475569 !important;
    }
}
.campaign-description-content p {
    margin-bottom: 1.1rem !important;
}
.campaign-description-content strong {
    color: var(--brand-dark) !important;
    font-weight: 600 !important;
}
.campaign-description-content img {
    border-radius: 10px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
    margin: 1.2rem 0 !important;
    max-width: 100% !important;
    height: auto !important;
}

/* 6. Checkout Form Custom Fields */
.ziswaf-input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}
.ziswaf-input-group i.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 4;
    pointer-events: none;
    font-size: 16px;
    transition: color 0.2s ease;
}
.ziswaf-input-with-icon {
    padding-left: 45px !important;
}
.ziswaf-input:focus {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 4px rgba(22, 78, 152, 0.1) !important;
}
.ziswaf-input-group:focus-within i.input-icon {
    color: var(--brand-primary);
}

/* 7. Quick Nominal Buttons */
.nominal-quick-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 5px;
}
.nominal-quick-btn {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 10px 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.nominal-quick-btn:hover {
    border-color: var(--brand-secondary) !important;
    color: var(--brand-secondary) !important;
    background-color: var(--brand-light) !important;
    transform: translateY(-1px);
}
.nominal-quick-btn.active {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(22, 78, 152, 0.2) !important;
}

/* 8. Bank Select Modern Grid */
.bank-selector-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
.bank-select-card {
    border: 1px solid #e2e8f0 !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
}
.bank-select-card:hover {
    border-color: var(--brand-secondary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05) !important;
}
.bank-select-card .bank-icon-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    margin-right: 15px !important;
    background-color: var(--brand-light) !important;
    color: var(--brand-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.bank-select-card.active {
    background-color: #f0f7ff !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 2px rgba(22, 78, 152, 0.1), 0 8px 20px rgba(22, 78, 152, 0.05) !important;
}

/* 9. Receipt Details Box */
.receipt-box {
    border-left: 4px solid var(--brand-primary) !important;
    background: #f8fafc !important;
    border-radius: 16px !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    border-left-width: 4px !important;
}
.receipt-box h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
    margin-bottom: 16px !important;
}
.receipt-row {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}
.receipt-label {
    font-size: 14px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}
.receipt-value {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
}
.receipt-value.text-warning {
    color: #d97706 !important;
}
.receipt-total-label {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
}
.receipt-total-value {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--brand-primary) !important;
    letter-spacing: -0.02em !important;
}
.receipt-notice {
    font-size: 12px !important;
    line-height: 1.5 !important;
    background-color: #fffbeb !important;
    border: 1px solid #fef3c7 !important;
    color: #b45309 !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    margin-top: 16px !important;
    font-weight: 500 !important;
}
.unique-code-highlight {
    background-color: #fef3c7 !important;
    color: #d97706 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
}

/* Bank Selection Card Typography */
.bank-select-card strong {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
    letter-spacing: -0.01em !important;
}

/* 10. Social Media Share Buttons */
.share-campaign-box {
    background: #f8fafc !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 24px !important;
}
.share-btn-group {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
.share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}
.share-btn i {
    margin-right: 8px !important;
    font-size: 16px !important;
}
.share-btn-wa {
    background-color: #25d366 !important;
}
.share-btn-wa:hover {
    background-color: #128c7e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25) !important;
}
.share-btn-fb {
    background-color: #1877f2 !important;
}
.share-btn-fb:hover {
    background-color: #0c56b3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.25) !important;
}
.share-btn-x {
    background-color: #0f1419 !important;
}
.share-btn-x:hover {
    background-color: #1a1f24 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(15, 20, 25, 0.25) !important;
}
.share-btn-copy {
    background-color: #64748b !important;
}
.share-btn-copy:hover {
    background-color: #475569 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(100, 116, 139, 0.25) !important;
}

/* --- Compact Inline Share Pill Bar (below campaign image) --- */
.campaign-share-bar {
    margin-top: 4px;
}
.campaign-share-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    white-space: nowrap;
}
.share-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0 !important;
}
.share-pill i {
    font-size: 13px !important;
    line-height: 1 !important;
}
.share-pill-wa  { background-color: #25d366 !important; }
.share-pill-fb  { background-color: #1877f2 !important; }
.share-pill-x   { background-color: #0f1419 !important; }
.share-pill-copy { background-color: #94a3b8 !important; }

.share-pill:hover {
    transform: translateY(-2px) scale(1.1) !important;
    filter: brightness(1.12) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}
.share-pill.copied {
    background-color: #10b981 !important;
}

/* ================================================
   Minimal Campaign Fund Card
   ================================================ */
.campaign-fund-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Collected label */
.fund-collected-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

/* Big amount */
.fund-collected-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.2;
    margin-top: 2px;
    margin-bottom: 10px;
}


/* Meta text (percentage · target) */
.fund-meta-text {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}
@media (min-width: 768px) {
    .fund-meta-text {
        font-size: 14px;
    }
}

/* Stats row */
.fund-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: 4px;
}
.fund-stat-item {
    flex: 1;
    text-align: center;
}
.fund-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    word-break: break-all;
}
.fund-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-top: 2px;
}
.fund-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
    flex-shrink: 0;
    margin: 0 8px;
}

/* ================================================
   Donor Pagination
   ================================================ */
.donor-pagination {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}
.donor-pager-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.donor-pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}
.donor-pager-btn:hover:not(.disabled) {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(22, 78, 152, 0.05);
}
.donor-pager-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.donor-pager-info {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    min-width: 40px;
    text-align: center;
}

/* Other Campaign Sidebar Cards */
.other-campaign-sidebar-card {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 12px;
}

.other-campaign-sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(22, 78, 152, 0.15);
}

.other-campaign-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--brand-primary);
    flex-shrink: 0;
}

.other-campaign-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    min-width: 0;
}

.other-campaign-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.other-campaign-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.other-campaign-sidebar-card:hover .other-campaign-title {
    color: var(--brand-primary);
}

.other-campaign-progress-bar {
    height: 4px;
    background-color: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.other-campaign-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 2px;
}

.other-campaign-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.other-campaign-stats .collected {
    font-weight: 600;
    color: #334155;
}

/* Sidebar View All Link */
.view-all-sidebar-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.view-all-sidebar-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.view-all-sidebar-link:hover {
    color: var(--brand-secondary);
}

.view-all-sidebar-link:hover i {
    transform: translateX(3px);
}

/* ================================================
   Responsive Payment Card Typographies
   ================================================ */
.payment-bank-name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}
.payment-bank-holder {
    font-size: 10.5px;
    color: #64748b;
}
.payment-account-number {
    letter-spacing: 0.05em;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    padding: 10px;
    font-family: var(--bs-font-monospace);
    text-align: center;
}
.payment-amount-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #92400e;
}
.payment-amount-text {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.payment-amount-note {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .payment-bank-name {
        font-size: 14px;
    }
    .payment-bank-holder {
        font-size: 11.5px;
    }
    .payment-account-number {
        font-size: 18px;
        padding: 12px;
    }
    .payment-amount-title {
        font-size: 11px;
    }
    .payment-amount-text {
        font-size: 26px;
    }
    .payment-amount-note {
        font-size: 11px;
    }
}

/* Tactile active / hover feedback for mobile transaction cards */
.card-hover-effect {
    transition: all 0.2s ease-in-out !important;
    cursor: pointer;
}
.card-hover-effect:hover {
    border-color: rgba(22, 78, 152, 0.2) !important;
    box-shadow: 0 6px 15px rgba(22, 78, 152, 0.05) !important;
}
.card-hover-effect:active {
    background-color: #f8fafc !important;
    transform: scale(0.985);
}

/* Table row clickable hover styling */
.tr-clickable {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out !important;
}
.tr-clickable:hover {
    background-color: rgba(22, 78, 152, 0.03) !important;
}