.bk-process-section {
    position: relative;
    padding: 100px 0;
    background: var(--ztc-bg-bg-1);
    @media (max-width: 991px) {
        padding: 80px 0;
    }
}

.bk-process-steps-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 576px) {
        grid-template-columns: 1fr;
    }
    &::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, var(--ztc-text-text-4), var(--ztc-text-text-6));
        opacity: 0.3;
        z-index: 1;
        @media (max-width: 991px) {
            display: none;
        }
    }
}

.bk-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    &:hover {
        .bk-step-number {
            background: var(--ztc-bg-bg-3);
            color: var(--ztc-text-text-1);
            border-color: var(--ztc-bg-bg-3);
        }
        .bk-step-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--ztc-bg-bg-3);
            i,
            img {
                color: var(--ztc-text-text-1);
                filter: brightness(0) invert(1);
            }
        }
    }
}

.bk-step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    i {
        font-size: 40px;
        color: var(--ztc-text-text-4);
        transition: all 0.4s ease;
    }
    img {
        max-width: 45px;
        max-height: 45px;
        transition: all 0.4s ease;
    }
}

.bk-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--ztc-bg-bg-1);
    border: 2px solid var(--ztc-text-text-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-4);
    transition: all 0.4s ease;
}

.bk-step-title {
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 15px;
}

.bk-step-description {
    font-size: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-2);
    line-height: 1.7;
}


/* ----- SECTION 5: FEATURED PROJECTS ----- */

.bk-projects-section {
    position: relative;
    padding: 100px 0;
    background: var(--ztc-bg-bg-9);
    @media (max-width: 991px) {
        padding: 80px 0;
    }
}

.bk-project-card {
    background: var(--ztc-bg-bg-1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        .bk-project-image img {
            transform: scale(1.1);
        }
        .bk-project-location {
            background: var(--ztc-bg-bg-3);
            color: var(--ztc-text-text-1);
        }
    }
}

.bk-project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
    }
}

.bk-project-location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--ztc-text-text-1);
    font-size: var(--ztc-font-size-font-s12);
    font-weight: var(--ztc-weight-medium);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    i {
        color: var(--ztc-text-text-4);
    }
}

.bk-project-content {
    padding: 25px;
}

.bk-project-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    span {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: var(--ztc-font-size-font-s12);
        color: var(--ztc-text-text-2);
        i {
            color: var(--ztc-text-text-4);
        }
    }
}

.bk-project-title {
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 15px;
    line-height: 1.4;
}

.bk-project-progress {
    margin-bottom: 20px;
    .bk-progress-header {
        display: flex;
        justify-content: space-between;
        font-size: var(--ztc-font-size-font-s12);
        color: var(--ztc-text-text-2);
        margin-bottom: 8px;
        span:last-child {
            color: var(--ztc-text-text-4);
            font-weight: var(--ztc-weight-bold);
        }
    }
    .bk-progress-bar {
        height: 6px;
        background: var(--ztc-bg-bg-9);
        border-radius: 10px;
        overflow: hidden;
        .bk-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--ztc-text-text-4), var(--ztc-text-text-6));
            border-radius: 10px;
        }
    }
}

.bk-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ztc-text-text-3);
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    i {
        transition: all 0.3s ease;
    }
    &:hover {
        color: var(--ztc-text-text-4);
        i {
            transform: translateX(5px);
        }
    }
}

.bk-project-status {
    padding: 4px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50px;
    color: #28a745;
    font-size: var(--ztc-font-size-font-s12);
    font-weight: var(--ztc-weight-medium);
}


/* ----- SECTION 6: HOW WE WORK (PROCESS STEPS) ----- */

.bk-process-section {
    position: relative;
    padding: 100px 0;
    background: var(--ztc-bg-bg-1);
    @media (max-width: 991px) {
        padding: 80px 0;
    }
}

.bk-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 576px) {
        grid-template-columns: 1fr;
    }
    &::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, var(--ztc-text-text-4), var(--ztc-text-text-6));
        opacity: 0.3;
        z-index: 1;
        @media (max-width: 991px) {
            display: none;
        }
    }
}

.bk-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    &:hover {
        .bk-step-number {
            background: var(--ztc-bg-bg-3);
            color: var(--ztc-text-text-1);
            border-color: var(--ztc-bg-bg-3);
        }
        .bk-step-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--ztc-bg-bg-3);
            i,
            img {
                color: var(--ztc-text-text-1);
                filter: brightness(0) invert(1);
            }
        }
    }
}

.bk-step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    i {
        font-size: 40px;
        color: var(--ztc-text-text-4);
        transition: all 0.4s ease;
    }
    img {
        max-width: 45px;
        max-height: 45px;
        transition: all 0.4s ease;
    }
}

.bk-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--ztc-bg-bg-1);
    border: 2px solid var(--ztc-text-text-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-4);
    transition: all 0.4s ease;
}

.bk-step-title {
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 15px;
}

.bk-step-description {
    font-size: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-2);
    line-height: 1.7;
}


/* ----- SECTION 8: UPCOMING EVENT + VOLUNTEER FORM COMBO (Equal Height) ----- */

.bk-updates-section {
    position: relative;
    padding: 100px 0;
    background: var(--ztc-bg-bg-1);
    overflow: hidden;
    @media (max-width: 991px) {
        padding: 80px 0;
    }
    @media (max-width: 767px) {
        padding: 60px 0;
    }
}


/* Make row display as flex for equal height */

.bk-updates-section .row {
    display: flex;
    flex-wrap: wrap;
}

.bk-updates-section .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}


/* Section Header Styles */

.bk-section-header {
    margin-bottom: 40px;
    &.bk-header-left {
        text-align: left;
    }
    .bk-subtitle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: var(--ztc-font-size-font-s14);
        font-weight: var(--ztc-weight-semibold);
        color: var(--ztc-text-text-4);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        background: rgba(212, 175, 55, 0.1);
        padding: 8px 20px;
        border-radius: 50px;
        i {
            font-size: var(--ztc-font-size-font-s14);
        }
    }
    h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: var(--ztc-weight-bold);
        color: var(--ztc-text-text-3);
        line-height: 1.3;
        margin: 0;
        span {
            color: var(--ztc-text-text-4);
            position: relative;
            display: inline-block;
            &::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 0;
                width: 100%;
                height: 8px;
                background: var(--ztc-text-text-4);
                opacity: 0.2;
                z-index: -1;
            }
        }
    }
}


/* Left Column - Event + Volunteer Container (Equal Height) */

.bk-event-volunteer-wrapper {
    background: linear-gradient(135deg, var(--ztc-bg-bg-9) 0%, var(--ztc-bg-bg-1) 100%);
    border-radius: 50px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    @media (max-width: 767px) {
        padding: 25px;
    }
    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 40px 80px rgba(212, 175, 55, 0.15);
        border-color: var(--ztc-text-text-4);
    }
    &::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }
}


/* Event Section - Takes 40% of space */

.bk-event-wrapper {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.bk-event-wrapper .bk-section-mini-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    .bk-mini-icon {
        width: 45px;
        height: 45px;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ztc-text-text-4);
        font-size: 20px;
    }
    h3 {
        font-size: var(--ztc-font-size-font-s18);
        font-weight: var(--ztc-weight-bold);
        color: var(--ztc-text-text-3);
        margin: 0;
        span {
            color: var(--ztc-text-text-4);
        }
    }
}


/* Volunteer Section - Takes remaining space (60%) */

.bk-volunteer-wrapper {
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.bk-volunteer-wrapper .bk-section-mini-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    .bk-mini-icon {
        width: 45px;
        height: 45px;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ztc-text-text-4);
        font-size: 20px;
    }
    h3 {
        font-size: var(--ztc-font-size-font-s18);
        font-weight: var(--ztc-weight-bold);
        color: var(--ztc-text-text-3);
        margin: 0;
        span {
            color: var(--ztc-text-text-4);
        }
    }
}


/* Event Card */

.bk-event-mini-card {
    background: var(--ztc-bg-bg-1);
    border-radius: 25px;
    padding: 20px;
    border: 1px solid var(--ztc-border-border-1);
    transition: all 0.3s ease;
    position: relative;
    &:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border-color: var(--ztc-text-text-4);
    }
}

.bk-event-mini-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    .bk-mini-day {
        font-size: var(--ztc-font-size-font-s24);
        font-weight: var(--ztc-weight-bold);
        color: var(--ztc-text-text-4);
        line-height: 1;
    }
    .bk-mini-month-year {
        font-size: var(--ztc-font-size-font-s14);
        color: var(--ztc-text-text-2);
        border-left: 2px solid var(--ztc-border-border-1);
        padding-left: 15px;
        span {
            font-weight: var(--ztc-weight-semibold);
            color: var(--ztc-text-text-3);
        }
    }
}

.bk-event-mini-title {
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 10px;
    line-height: 1.4;
    a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
        &:hover {
            color: var(--ztc-text-text-4);
        }
    }
}

.bk-event-mini-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: var(--ztc-font-size-font-s12);
    color: var(--ztc-text-text-2);
    i {
        color: var(--ztc-text-text-4);
        margin-right: 3px;
    }
}

.bk-event-mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-event-mini-btn {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--ztc-text-text-4);
    border-radius: 50px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s12);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    text-decoration: none;
    &:hover {
        background: var(--ztc-bg-bg-3);
        border-color: var(--ztc-bg-bg-3);
        color: var(--ztc-text-text-1);
        transform: translateY(-2px);
    }
}

.bk-event-mini-capacity {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--ztc-font-size-font-s11);
    color: var(--ztc-text-text-2);
    i {
        color: #28a745;
    }
}


/* Quick Stats - Compact Version */

.bk-mini-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    @media (max-width: 576px) {
        flex-direction: column;
        gap: 8px;
    }
}

.bk-mini-stat {
    flex: 1;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    padding: 12px 8px;
    text-align: center;
    @media (max-width: 576px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 10px 15px;
    }
    .bk-stat-number {
        font-size: var(--ztc-font-size-font-s16);
        font-weight: var(--ztc-weight-bold);
        color: var(--ztc-text-text-4);
        line-height: 1;
        margin-bottom: 3px;
        @media (max-width: 576px) {
            margin-bottom: 0;
        }
    }
    .bk-stat-label {
        font-size: var(--ztc-font-size-font-s10);
        color: var(--ztc-text-text-2);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}


/* Volunteer Form Compact */

.bk-volunteer-form-compact {
    display: flex;
    flex-direction: column;
}


/* News Card - Equal Height */

.bk-news-card-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bk-news-card {
    background: var(--ztc-bg-bg-1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ztc-border-border-1);
    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
        .bk-news-image img {
            transform: scale(1.1);
        }
        .bk-news-title a {
            color: var(--ztc-text-text-4);
        }
    }
}

.bk-news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
    }
}

.bk-news-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--ztc-text-text-1);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: var(--ztc-font-size-font-s9);
    font-weight: var(--ztc-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.bk-news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bk-news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: var(--ztc-font-size-font-s11);
        color: var(--ztc-text-text-2);
        i {
            color: var(--ztc-text-text-4);
        }
    }
}

.bk-news-title {
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 10px;
    line-height: 1.4;
    a {
        color: inherit;
        transition: all 0.3s ease;
        text-decoration: none;
        &:hover {
            color: var(--ztc-text-text-4);
        }
    }
}

.bk-news-excerpt {
    font-size: var(--ztc-font-size-font-s13);
    color: var(--ztc-text-text-2);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.bk-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s13);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    i {
        transition: all 0.3s ease;
        font-size: var(--ztc-font-size-font-s11);
    }
    &:hover {
        color: var(--ztc-text-text-3);
        i {
            transform: translateX(5px);
        }
    }
}


/* View All Link */

.bk-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    i {
        transition: transform 0.3s ease;
    }
    &:hover {
        color: var(--ztc-text-text-3);
        i {
            transform: translateX(5px);
        }
    }
}


/* Empty State */

.bk-event-empty {
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 25px;
    border: 1px dashed var(--ztc-border-border-1);
    margin-bottom: 20px;
    i {
        font-size: 40px;
        color: var(--ztc-text-text-4);
        opacity: 0.5;
        margin-bottom: 10px;
    }
    h4 {
        font-size: var(--ztc-font-size-font-s18);
        color: var(--ztc-text-text-3);
        margin-bottom: 5px;
    }
    p {
        color: var(--ztc-text-text-2);
        font-size: var(--ztc-font-size-font-s13);
        margin: 0;
    }
}


/* RTL Support */

[dir="rtl"] {
    .bk-event-mini-btn i,
    .bk-news-link i,
    .bk-view-all-link i {
        transform: rotate(180deg);
    }
    .bk-event-mini-btn:hover i,
    .bk-news-link:hover i,
    .bk-view-all-link:hover i {
        transform: rotate(180deg) translateX(-5px);
    }
    .bk-event-mini-date .bk-mini-month-year {
        border-left: none;
        border-right: 2px solid var(--ztc-border-border-1);
        padding-left: 0;
        padding-right: 15px;
    }
    .bk-news-badge {
        right: auto;
        left: 12px;
    }
}


/* ----- SECTION 8: UPCOMING EVENT + QUICK DONATION COMBO (with Story) ----- */

.bk-event-donation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ztc-bg-bg-9) 0%, var(--ztc-bg-bg-1) 100%);
    position: relative;
    overflow: hidden;
}

.bk-event-donation-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bk-event-donation-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bk-event-donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .bk-event-donation-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Event Card - Featured Style with Story */

.bk-event-featured {
    background: var(--ztc-bg-bg-1);
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bk-event-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.15);
    border-color: var(--ztc-text-text-4);
}

.bk-event-featured-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--ztc-bg-bg-3);
    color: var(--ztc-text-text-1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--ztc-font-size-font-s12);
    font-weight: var(--ztc-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.bk-event-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--ztc-text-text-4), var(--ztc-text-text-6));
}


/* Event Content */

.bk-event-content {
    padding: 40px 40px 20px;
}

.bk-event-featured-date {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 25px;
    border-radius: 60px;
    margin-bottom: 30px;
    width: fit-content;
}

.bk-event-featured-date .bk-date-day {
    font-size: var(--ztc-font-size-font-s36);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-4);
    line-height: 1;
}

.bk-event-featured-date .bk-date-month {
    font-size: var(--ztc-font-size-font-s18);
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-3);
    text-transform: uppercase;
}

.bk-event-featured-date .bk-date-year {
    font-size: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-2);
    border-left: 2px solid var(--ztc-border-border-1);
    padding-left: 15px;
}

.bk-event-featured-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 25px;
    line-height: 1.3;
}

.bk-event-featured-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.bk-event-featured-title a:hover {
    color: var(--ztc-text-text-4);
}

.bk-event-featured-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
    background: var(--ztc-bg-bg-9);
    padding: 25px;
    border-radius: 30px;
}

.bk-event-featured-time,
.bk-event-featured-location {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--ztc-text-text-2);
    font-size: var(--ztc-font-size-font-s16);
}

.bk-event-featured-time i,
.bk-event-featured-location i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s14);
}

.bk-event-featured-description {
    font-size: var(--ztc-font-size-font-s16);
    color: var(--ztc-text-text-2);
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Story Section - Image on Top, Info Below */

.bk-event-story {
    margin-top: auto;
    padding: 0 40px 20px;
}

.bk-story-preview {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    border-radius: 30px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.bk-story-preview:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-color: var(--ztc-text-text-4);
    transform: translateY(-3px);
}

.bk-story-image {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bk-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bk-story-preview:hover .bk-story-image img {
    transform: scale(1.1);
}

.bk-story-info {
    flex: 1;
}

.bk-story-info h4 {
    font-size: var(--ztc-font-size-font-s18);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 10px;
    line-height: 1.4;
}

.bk-story-info p {
    font-size: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-2);
    margin-bottom: 15px;
    line-height: 1.6;
}

.bk-story-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-4);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bk-story-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bk-story-link:hover {
    background: var(--ztc-bg-bg-3);
    color: var(--ztc-text-text-1);
    border-color: var(--ztc-bg-bg-3);
}

.bk-story-link:hover i {
    transform: translateX(5px);
}


/* Compact version for smaller screens */

.bk-story-preview.compact {
    padding: 20px;
}

.bk-story-preview.compact .bk-story-image {
    height: 120px;
}

.bk-story-preview.compact h4 {
    font-size: var(--ztc-font-size-font-s16);
}

.bk-story-preview.compact p {
    font-size: var(--ztc-font-size-font-s12);
    margin-bottom: 12px;
}


/* RTL Support */

[dir="rtl"] .bk-story-link i {
    transform: rotate(180deg);
}

[dir="rtl"] .bk-story-link:hover i {
    transform: rotate(180deg) translateX(-5px);
}


/* Responsive */

@media (max-width: 767px) {
    .bk-event-story {
        padding: 0 30px 15px;
    }
    .bk-story-preview {
        padding: 20px;
    }
    .bk-story-image {
        height: 140px;
    }
}


/* Event Footer with Button */

.bk-event-footer {
    padding: 20px 40px 40px;
    border-top: 1px solid var(--ztc-border-border-1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-event-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--ztc-bg-bg-3);
    border-radius: 60px;
    color: var(--ztc-text-text-1);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.bk-event-featured-btn i {
    transition: transform 0.3s ease;
}

.bk-event-featured-btn:hover {
    background: var(--ztc-text-text-14);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.bk-event-featured-btn:hover i {
    transform: translateX(5px);
}

.bk-event-featured-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-event-featured-share span {
    font-size: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-2);
}

.bk-event-featured-share a {
    width: 40px;
    height: 40px;
    background: var(--ztc-bg-bg-9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ztc-text-text-3);
    transition: all 0.3s ease;
}

.bk-event-featured-share a:hover {
    background: var(--ztc-bg-bg-3);
    color: var(--ztc-text-text-1);
    transform: translateY(-3px);
}


/* Donation Card Side */

.bk-event-donation-card {
    background: linear-gradient(135deg, var(--ztc-bg-bg-2) 0%, #2a4a9e 100%);
    border-radius: 50px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bk-event-donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.bk-event-donation-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.bk-event-donation-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bk-event-donation-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.bk-event-donation-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s12);
    font-weight: var(--ztc-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.bk-event-donation-title {
    font-size: var(--ztc-font-size-font-s28);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-1);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bk-event-donation-title span {
    color: var(--ztc-text-text-4);
    position: relative;
    display: inline-block;
}

.bk-event-donation-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--ztc-text-text-4);
    opacity: 0.3;
    z-index: -1;
}

.bk-event-donation-text {
    font-size: var(--ztc-font-size-font-s16);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
}

.bk-event-donation-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bk-event-stat-item {
    text-align: center;
    flex: 1;
}

.bk-event-stat-value {
    font-size: var(--ztc-font-size-font-s24);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-4);
    line-height: 1;
    margin-bottom: 5px;
}

.bk-event-stat-label {
    font-size: var(--ztc-font-size-font-s12);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Quick Donation Form inside event section */

.bk-event-donation-form {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.bk-event-donation-form .bk-donation-quick {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 40px;
}

.bk-event-donation-form .bk-donation-quick-header h4 {
    color: var(--ztc-text-text-1);
    font-size: var(--ztc-font-size-font-s22);
}

.bk-event-donation-form .bk-donation-quick-header p {
    color: rgba(255, 255, 255, 0.8);
}

.bk-event-donation-form .bk-donation-tab {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ztc-text-text-1);
}

.bk-event-donation-form .bk-donation-tab:hover,
.bk-event-donation-form .bk-donation-tab.active {
    background: var(--ztc-bg-bg-3);
}

.bk-event-donation-form .bk-amount-title,
.bk-event-donation-form .bk-payment-title {
    color: var(--ztc-text-text-1);
}

.bk-event-donation-form .bk-amount-title i,
.bk-event-donation-form .bk-payment-title i {
    color: var(--ztc-text-text-4);
}

.bk-event-donation-form .bk-amount-preset {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ztc-text-text-1);
    border-color: transparent;
}

.bk-event-donation-form .bk-amount-preset:hover,
.bk-event-donation-form .bk-amount-preset.active {
    background: var(--ztc-bg-bg-3);
}

.bk-event-donation-form .bk-amount-preset small {
    color: rgba(255, 255, 255, 0.7);
}

.bk-event-donation-form .bk-custom-amount {
    background: rgba(255, 255, 255, 0.15);
    border-color: transparent;
}

.bk-event-donation-form .bk-custom-amount .bk-currency {
    color: var(--ztc-text-text-4);
}

.bk-event-donation-form .bk-custom-amount input {
    color: var(--ztc-text-text-1);
}

.bk-event-donation-form .bk-custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.bk-event-donation-form .bk-payment-option {
    background: rgba(255, 255, 255, 0.15);
    border-color: transparent;
}

.bk-event-donation-form .bk-payment-option label {
    color: var(--ztc-text-text-1);
}

.bk-event-donation-form .bk-payment-option:hover,
.bk-event-donation-form input:checked+label {
    background: var(--ztc-bg-bg-3);
}

.bk-event-donation-form .bk-donation-summary {
    background: rgba(255, 255, 255, 0.1);
}

.bk-event-donation-form .bk-summary-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bk-event-donation-form .bk-summary-item span,
.bk-event-donation-form .bk-summary-total span:first-child {
    color: rgba(255, 255, 255, 0.9);
}

.bk-event-donation-form .bk-summary-value {
    color: var(--ztc-text-text-4);
}

.bk-event-donation-form .bk-donate-quick-btn {
    background: var(--ztc-bg-bg-3);
    color: var(--ztc-text-text-1);
}

.bk-event-donation-form .bk-donate-quick-btn:hover {
    background: var(--ztc-text-text-14);
}

.bk-event-donation-form .bk-trust-badge {
    color: rgba(255, 255, 255, 0.8);
}

.bk-event-donation-form .bk-trust-badge i {
    color: var(--ztc-text-text-4);
}


/* View All Events Button */

.bk-event-view-all {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.bk-event-view-all .bk-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--ztc-text-text-4);
    border-radius: 60px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
}

.bk-event-view-all .bk-hero-btn-secondary i {
    transition: transform 0.3s ease;
}

.bk-event-view-all .bk-hero-btn-secondary:hover {
    background: var(--ztc-bg-bg-3);
    border-color: var(--ztc-bg-bg-3);
    color: var(--ztc-text-text-1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.bk-event-view-all .bk-hero-btn-secondary:hover i {
    transform: translateX(5px);
}


/* Empty State */

.bk-event-empty {
    text-align: center;
    padding: 60px;
    background: var(--ztc-bg-bg-1);
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bk-event-empty i {
    font-size: 60px;
    color: var(--ztc-text-text-4);
    margin-bottom: 20px;
    opacity: 0.5;
}

.bk-event-empty h3 {
    font-size: var(--ztc-font-size-font-s24);
    color: var(--ztc-text-text-3);
    margin-bottom: 10px;
}

.bk-event-empty p {
    color: var(--ztc-text-text-2);
}


/* RTL Support */

[dir="rtl"] .bk-event-featured-btn i,
[dir="rtl"] .bk-event-view-all .bk-hero-btn-secondary i,
[dir="rtl"] .bk-story-link i {
    transform: rotate(180deg);
}

[dir="rtl"] .bk-event-featured-btn:hover i,
[dir="rtl"] .bk-event-view-all .bk-hero-btn-secondary:hover i,
[dir="rtl"] .bk-story-link:hover i {
    transform: rotate(180deg) translateX(-5px);
}

[dir="rtl"] .bk-event-featured-date .bk-date-year {
    border-left: none;
    border-right: 2px solid var(--ztc-border-border-1);
    padding-left: 0;
    padding-right: 15px;
}

[dir="rtl"] .bk-story-preview {
    flex-direction: row-reverse;
}


/* Responsive */

@media (max-width: 767px) {
    .bk-event-content {
        padding: 30px 30px 15px;
    }
    .bk-event-story {
        padding: 0 30px 15px;
    }
    .bk-event-footer {
        padding: 15px 30px 30px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .bk-event-donation-card {
        padding: 30px;
    }
    .bk-event-featured-date {
        padding: 12px 20px;
    }
    .bk-event-featured-date .bk-date-day {
        font-size: var(--ztc-font-size-font-s28);
    }
    .bk-event-featured-date .bk-date-month {
        font-size: var(--ztc-font-size-font-s16);
    }
    .bk-event-featured-title {
        font-size: 1.8rem;
    }
    .bk-event-donation-title {
        font-size: var(--ztc-font-size-font-s24);
    }
    .bk-event-featured-btn {
        width: 100%;
        justify-content: center;
    }
    .bk-story-preview {
        flex-direction: column;
        text-align: center;
    }
    .bk-story-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .bk-event-donation-stats {
        flex-direction: column;
        gap: 15px;
    }
    .bk-event-stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .bk-event-stat-value {
        margin-bottom: 0;
    }
}


/* ----- SECTION 11: PARTNERS CAROUSEL V2 ----- */

.bk-partners-section-v2 {
    position: relative;
    padding: 100px 0;
    background: var(--ztc-bg-bg-1);
    border-top: 1px solid var(--ztc-border-border-1);
    border-bottom: 1px solid var(--ztc-border-border-1);
    overflow: hidden;
}

.bk-section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.bk-section-header-v2 .bk-subtitle-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--ztc-text-text-4);
    font-weight: var(--ztc-weight-semibold);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bk-section-header-v2 .bk-subtitle-v2 i {
    font-size: 1rem;
    color: var(--ztc-text-text-4);
}

.bk-section-header-v2 h2 {
    font-size: clamp(1.75rem, 4vw, var(--ztc-font-size-font-s42));
    color: var(--ztc-text-text-3);
    margin-bottom: 15px;
    font-weight: var(--ztc-weight-bold);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bk-section-header-v2 h2 .text-primary {
    color: var(--ztc-text-text-4) !important;
}

.bk-section-header-v2 p {
    font-size: var(--ztc-font-size-font-s16);
    color: var(--ztc-text-text-2);
    max-width: 600px;
    margin: 0 auto;
}


/* Carousel Styles */

.bk-partners-carousel-v2 {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.bk-partners-carousel-v2::before,
.bk-partners-carousel-v2::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.bk-partners-carousel-v2::before {
    left: 0;
    background: linear-gradient(90deg, var(--ztc-bg-bg-1) 0%, transparent 100%);
}

.bk-partners-carousel-v2::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ztc-bg-bg-1) 0%, transparent 100%);
}

.bk-partners-track-v2 {
    display: flex;
    gap: 60px;
    animation: bkMarqueeV2 30s linear infinite;
    width: fit-content;
}

.bk-partners-track-v2:hover {
    animation-play-state: paused;
}

@keyframes bkMarqueeV2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px));
        /* Half of total width considering gap */
    }
}

.bk-partner-item-v2 {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--ztc-shadow-sm);
    border: 1px solid var(--ztc-border-border-1);
}

.bk-partner-item-v2:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--ztc-shadow-gold-sm);
    border-color: var(--ztc-text-text-4);
}

.bk-partner-item-v2 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bk-partner-item-v2:hover img {
    transform: scale(1.1);
}


/* Responsive Adjustments */

@media (max-width: 991px) {
    .bk-partners-section-v2 {
        padding: 80px 0;
    }
    .bk-partners-carousel-v2::before,
    .bk-partners-carousel-v2::after {
        width: 100px;
    }
    .bk-partners-track-v2 {
        gap: 40px;
    }
    .bk-partner-item-v2 {
        width: 150px;
        height: 80px;
        padding: 12px;
    }
}

@media (max-width: 767px) {
    .bk-partners-section-v2 {
        padding: 60px 0;
    }
    .bk-section-header-v2 {
        margin-bottom: 40px;
    }
    .bk-partners-carousel-v2::before,
    .bk-partners-carousel-v2::after {
        width: 60px;
    }
    .bk-partners-track-v2 {
        gap: 30px;
        animation-duration: 20s;
    }
    .bk-partner-item-v2 {
        width: 130px;
        height: 70px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .bk-partners-track-v2 {
        gap: 20px;
    }
    .bk-partner-item-v2 {
        width: 110px;
        height: 60px;
        padding: 8px;
    }
}


/* Optional: Add pause on hover for better UX */

.bk-partners-carousel-v2:hover .bk-partners-track-v2 {
    animation-play-state: paused;
}


/* Loading state */

.bk-partners-section-v2 .text-muted {
    color: var(--ztc-text-text-5);
    font-size: var(--ztc-font-size-font-s16);
    padding: 40px 0;
}


/* ----- SECTION 3: URGENT EMERGENCIES ----- */

.bk-emergencies-section {
    padding: 100px 0;
    background: var(--ztc-bg-bg-1);
    position: relative;
}

.bk-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.bk-section-header .bk-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--ztc-text-text-4);
    font-weight: var(--ztc-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bk-section-header .bk-subtitle i {
    font-size: 16px;
}

.bk-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 20px;
    line-height: 1.3;
}

.bk-section-header p {
    font-size: var(--ztc-font-size-font-s18);
    color: var(--ztc-text-text-2);
    line-height: 1.8;
}

.bk-emergencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bk-emergencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bk-emergencies-grid {
        grid-template-columns: 1fr;
    }
}

.bk-emergency-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.bk-emergency-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.bk-emergency-card:hover .bk-emergency-image img {
    transform: scale(1.1);
}

.bk-emergency-card.bk-severity-critical {
    border-top: 4px solid #dc3545;
}

.bk-emergency-card.bk-severity-high {
    border-top: 4px solid #fd7e14;
}

.bk-emergency-card.bk-severity-medium {
    border-top: 4px solid #ffc107;
}

.bk-emergency-card.bk-severity-low {
    border-top: 4px solid #28a745;
}

.bk-emergency-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bk-emergency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bk-emergency-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.bk-emergency-type {
    display: inline-block;
    padding: 6px 16px;
    background: var(--ztc-bg-bg-3);
    color: #fff;
    font-size: var(--ztc-font-size-font-s11);
    font-weight: var(--ztc-weight-bold);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bk-emergency-severity {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: var(--ztc-font-size-font-s11);
    font-weight: var(--ztc-weight-bold);
    border-radius: 50px;
}

.bk-emergency-severity.bk-severity-critical {
    background: #dc3545;
}

.bk-emergency-severity.bk-severity-high {
    background: #fd7e14;
}

.bk-emergency-severity.bk-severity-medium {
    background: #ffc107;
    color: #000;
}

.bk-emergency-severity.bk-severity-low {
    background: #28a745;
}

.bk-emergency-content {
    padding: 25px;
}

.bk-emergency-title {
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 10px;
    line-height: 1.4;
}

.bk-emergency-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.bk-emergency-title a:hover {
    color: var(--ztc-text-text-4);
}

.bk-emergency-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--ztc-text-text-2);
    font-size: var(--ztc-font-size-font-s13);
}

.bk-emergency-location i {
    color: var(--ztc-text-text-4);
}

.bk-progress-wrapper {
    margin: 20px 0;
}

.bk-progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bk-progress-stats .bk-label {
    font-size: var(--ztc-font-size-font-s13);
    color: var(--ztc-text-text-2);
}

.bk-progress-stats .bk-value {
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-4);
}

.bk-progress-bar {
    height: 8px;
    background: var(--ztc-bg-bg-9);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bk-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ztc-bg-bg-3), #e6c35c);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.bk-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bkShimmer 2s infinite;
}

.bk-progress-amounts {
    display: flex;
    justify-content: space-between;
    font-size: var(--ztc-font-size-font-s12);
    color: var(--ztc-text-text-2);
}

.bk-progress-amounts strong {
    color: var(--ztc-text-text-3);
    font-weight: var(--ztc-weight-semibold);
}

.bk-emergency-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--ztc-border-border-1);
}

.bk-emergency-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ztc-text-text-2);
    font-size: var(--ztc-font-size-font-s12);
}

.bk-emergency-date i {
    color: var(--ztc-text-text-4);
}

.bk-emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ztc-bg-bg-3);
    color: #fff;
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-semibold);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.bk-emergency-btn i {
    transition: transform 0.3s ease;
}

.bk-emergency-btn:hover {
    background: #e6c35c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.bk-emergency-btn:hover i {
    transform: translateX(5px);
}


/* ----- SECTION 7: SUCCESS STORIES ----- */

.bk-stories-section {
    padding: 100px 0;
    background: #fff;
}

.bk-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bk-stories-grid {
        grid-template-columns: 1fr;
    }
}

.bk-story-featured {
    display: flex;
    background: linear-gradient(135deg, #fafafa, #fff);
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.bk-story-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.bk-story-imagev {
    flex: 1;
    min-height: 150px;
    overflow: hidden;
}

.bk-story-imagev img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bk-story-featured:hover .bk-story-imagev img {
    transform: scale(1.1);
}

.bk-story-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .bk-story-featured {
        flex-direction: column;
    }
    .bk-story-imagev {
        min-height: 300px;
    }
    .bk-story-content {
        padding: 40px 30px;
    }
}

.bk-story-quote {
    font-size: 20px;
    color: var(--ztc-text-text-4);
    opacity: 0.2;
    margin-bottom: 10px;
}

.bk-story-excerpt {
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-medium);
    color: var(--ztc-text-text-3);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.bk-story-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.bk-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ztc-text-text-4);
}

.bk-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bk-author-info h5 {
    font-size: var(--ztc-font-size-font-s18);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 5px;
}

.bk-author-info span {
    font-size: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-4);
}

.bk-story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.bk-story-link i {
    transition: transform 0.3s ease;
}

.bk-story-link:hover {
    color: var(--ztc-text-text-3);
}

.bk-story-link:hover i {
    transform: translateX(5px);
}


/*============= SECTION 9: LATEST CAUSES ===============*/

.bk-causes-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bk-causes-modern-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bk-causes-modern-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bk-causes-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .bk-causes-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bk-causes-modern-grid {
        grid-template-columns: 1fr;
    }
}


/* Modern Cause Card */

.bk-modern-cause-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bk-modern-cause-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--ztc-text-text-4), var(--ztc-text-text-6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bk-modern-cause-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px -15px rgba(212, 175, 55, 0.25);
    border-color: var(--ztc-text-text-4);
}

.bk-modern-cause-card:hover::before {
    opacity: 1;
}

.bk-modern-cause-card:hover .bk-cause-modern-image img {
    transform: scale(1.1) rotate(2deg);
}

.bk-cause-modern-image {
    position: relative;
    height: 200px;
    border-radius: 40px 40px 30px 30px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
}

.bk-cause-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.bk-cause-modern-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--ztc-bg-bg-3), #e6c35c);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: var(--ztc-font-size-font-s12);
    font-weight: var(--ztc-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.bk-cause-modern-urgency {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 40px;
    font-size: var(--ztc-font-size-font-s11);
    font-weight: var(--ztc-weight-bold);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    z-index: 2;
}

.bk-cause-modern-urgency i {
    font-size: 13px;
    animation: bkPulse 1.5s infinite;
}

.bk-cause-modern-title {
    font-size: var(--ztc-font-size-font-s22);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.bk-cause-modern-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ztc-text-text-4);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.bk-modern-cause-card:hover .bk-cause-modern-title::after {
    width: 100px;
}

.bk-cause-modern-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.bk-cause-modern-title a:hover {
    color: var(--ztc-text-text-4);
}


/* Progress Bar Modern */

.bk-cause-modern-progress {
    margin: 20px 0 25px;
    background: var(--ztc-bg-bg-9);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.bk-cause-modern-progress::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bk-progress-modern-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.bk-progress-modern-item {
    text-align: center;
}

.bk-progress-modern-label {
    font-size: var(--ztc-font-size-font-s12);
    color: var(--ztc-text-text-2);
    margin-bottom: 5px;
    display: block;
}

.bk-progress-modern-value {
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
}

.bk-progress-modern-value small {
    font-size: var(--ztc-font-size-font-s11);
    font-weight: var(--ztc-weight-regular);
    color: var(--ztc-text-text-2);
}

.bk-progress-modern-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.bk-progress-modern-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ztc-bg-bg-3), var(--ztc-text-text-14));
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.bk-progress-modern-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bkShimmer 2s infinite;
}

.bk-progress-modern-percent {
    text-align: right;
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-4);
    position: relative;
    z-index: 2;
}


/* Amount Presets - Modern Style */

.bk-cause-modern-amounts {
    margin: 25px 0;
}

.bk-amount-modern-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.bk-amount-modern-preset {
    padding: 12px 5px;
    background: var(--ztc-bg-bg-9);
    border: 2px solid transparent;
    border-radius: 60px;
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.bk-amount-modern-preset small {
    font-size: var(--ztc-font-size-font-s11);
    font-weight: var(--ztc-weight-regular);
    color: var(--ztc-text-text-2);
    margin-top: 2px;
}

.bk-amount-modern-preset:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--ztc-text-text-4);
    transform: translateY(-3px);
}

.bk-amount-modern-preset.active {
    background: var(--ztc-bg-bg-3);
    border-color: var(--ztc-bg-bg-3);
    color: #ffffff;
}

.bk-amount-modern-preset.active small {
    color: rgba(255, 255, 255, 0.9);
}


/* Custom Amount Input */

.bk-custom-modern-amount {
    display: flex;
    align-items: center;
    background: var(--ztc-bg-bg-9);
    border: 2px solid transparent;
    border-radius: 60px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.bk-custom-modern-amount:focus-within {
    border-color: var(--ztc-text-text-4);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.bk-custom-modern-amount .bk-currency-modern {
    font-size: var(--ztc-font-size-font-s18);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-4);
    margin-right: 5px;
}

.bk-custom-modern-amount input {
    flex: 1;
    padding: 14px 0;
    background: transparent;
    border: none;
    font-size: var(--ztc-font-size-font-s16);
    color: var(--ztc-text-text-3);
}

.bk-custom-modern-amount input:focus {
    outline: none;
}

.bk-custom-modern-amount input::placeholder {
    color: var(--ztc-text-text-2);
    opacity: 0.7;
}


/* Card Footer with Actions */

.bk-cause-modern-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px dashed rgba(212, 175, 55, 0.2);
}

.bk-cause-modern-link-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ztc-text-text-2);
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-medium);
    transition: all 0.3s ease;
}

.bk-cause-modern-link-left i {
    color: var(--ztc-text-text-4);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bk-cause-modern-link-left:hover {
    color: var(--ztc-text-text-4);
}

.bk-cause-modern-link-left:hover i {
    transform: translateX(-5px);
}

.bk-cause-modern-link-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ztc-bg-bg-3);
    border-radius: 60px;
    color: #ffffff;
    font-size: var(--ztc-font-size-font-s14);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.bk-cause-modern-link-right i {
    transition: transform 0.3s ease;
}

.bk-cause-modern-link-right:hover {
    background: var(--ztc-text-text-14);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.bk-cause-modern-link-right:hover i {
    transform: translateX(5px);
}


/* View All Button Modern */

.bk-causes-view-all {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.bk-causes-view-all .bk-modern-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--ztc-text-text-4);
    border-radius: 60px;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bk-causes-view-all .bk-modern-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--ztc-bg-bg-3);
    transition: left 0.4s ease;
    z-index: -1;
}

.bk-causes-view-all .bk-modern-btn-outline:hover {
    color: #ffffff;
    border-color: var(--ztc-bg-bg-3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.bk-causes-view-all .bk-modern-btn-outline:hover::before {
    left: 0;
}

.bk-causes-view-all .bk-modern-btn-outline i {
    transition: transform 0.3s ease;
}

.bk-causes-view-all .bk-modern-btn-outline:hover i {
    transform: translateX(8px);
}


/* RTL Support */

[dir="rtl"] .bk-cause-modern-link-left i {
    transform: rotate(180deg);
}

[dir="rtl"] .bk-cause-modern-link-left:hover i {
    transform: rotate(180deg) translateX(5px);
}

[dir="rtl"] .bk-cause-modern-link-right i {
    transform: rotate(180deg);
}

[dir="rtl"] .bk-cause-modern-link-right:hover i {
    transform: rotate(180deg) translateX(-5px);
}

[dir="rtl"] .bk-cause-modern-title::after {
    left: auto;
    right: 0;
}


/* Responsive */

@media (max-width: 767px) {
    .bk-modern-cause-card {
        padding: 25px 20px;
    }
    .bk-cause-modern-image {
        height: 180px;
    }
    .bk-amount-modern-presets {
        grid-template-columns: repeat(2, 1fr);
    }
    .bk-cause-modern-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .bk-cause-modern-link-left,
    .bk-cause-modern-link-right {
        justify-content: center;
    }
}


/*============= SECTION 1: MODERN FULL-SCREEN HERO WITH SLIDER ===============*/

.bk-modern-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    overflow: hidden;
    background: var(--ztc-bg-bg-2);
    @media (max-width: 991px) {
        min-height: 900px;
        height: auto;
    }
    @media (max-width: 767px) {
        min-height: 800px;
    }
}


/* Background Slider */

.bk-hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bk-hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(95deg, rgba(10, 37, 64, 0.95) 15%, rgba(10, 37, 64, 0.7) 50%, rgba(10, 37, 64, 0.3) 85%);
    }
    &.active {
        opacity: 1;
        z-index: 2;
    }
}


/* ================================
   Animated Background Elements
================================ */

.bk-hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bk-hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}


/* Circle 1 */

.bk-hero-circle-1 {
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--ztc-text-text-4);
    animation: bkFloat1 20s infinite alternate ease-in-out;
}


/* Circle 2 */

.bk-hero-circle-2 {
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: var(--ztc-text-text-6);
    animation: bkFloat2 25s infinite alternate ease-in-out;
}


/* Circle 3 */

.bk-hero-circle-3 {
    top: 50%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: var(--ztc-text-text-3);
    animation: bkPulse 15s infinite alternate ease-in-out;
}


/* ================================
   Animations
================================ */

@keyframes bkFloat1 {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-40px, 40px);
    }
}

@keyframes bkFloat2 {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(40px, -40px);
    }
}

@keyframes bkPulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

.bk-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bkGridMove 30s linear infinite;
}


/* Split Container */

.bk-split-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
}


/* Left Column - Content */

.bk-hero-content-wrapper {
    padding: 40px 0 60px;
    max-width: 650px;
    @media (max-width: 991px) {
        padding: 100px 0 30px;
        margin: 0 auto;
        text-align: center;
        max-width: 600px;
    }
    @media (max-width: 767px) {
        padding: 80px 0 20px;
    }
}


/* Floating Badge */

.bk-hero-floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    margin-bottom: 35px;
    @media (max-width: 991px) {
        margin-left: auto;
        margin-right: auto;
    }
    .bk-badge-pulse {
        background: var(--ztc-bg-bg-3);
        color: var(--ztc-text-text-1);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: var(--ztc-font-size-font-s12);
        font-weight: var(--ztc-weight-bold);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: bkShimmer 2s infinite;
        }
    }
    .bk-badge-text {
        color: var(--ztc-text-text-1);
        font-size: var(--ztc-font-size-font-s13);
        font-weight: var(--ztc-weight-medium);
        padding-right: 15px;
    }
}


/* Animated Title */

.bk-modern-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--ztc-text-text-1);
    line-height: 1.1;
    margin-bottom: 25px;
    .bk-title-line {
        display: block;
        overflow: hidden;
        margin-bottom: 8px;
        span {
            display: block;
            animation: bkReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
            transform: translateY(100%);
            animation-delay: calc(0.2s * var(--i));
        }
        &:nth-child(1) {
            --i: 1;
        }
        &:nth-child(2) {
            --i: 2;
        }
    }
    .bk-title-highlight {
        color: var(--ztc-text-text-4);
        position: relative;
        display: inline-block;
        &::before {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 30%;
            background: var(--ztc-text-text-4);
            opacity: 0.2;
            transform: skewX(-15deg);
            z-index: -1;
        }
    }
}


/* Description */

.bk-modern-description {
    font-size: var(--ztc-font-size-font-s18);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
    animation: bkFadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    @media (max-width: 991px) {
        margin-left: auto;
        margin-right: auto;
    }
}


/* Buttons */

.bk-modern-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: bkFadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    @media (max-width: 991px) {
        justify-content: center;
    }
    @media (max-width: 576px) {
        flex-direction: column;
        gap: 15px;
    }
}

.bk-modern-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: linear-gradient(135deg, var(--ztc-bg-bg-3), #e6c35c);
    border: none;
    border-radius: 60px;
    color: var(--ztc-text-text-1);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #e6c35c, var(--ztc-bg-bg-3));
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }
    i {
        transition: transform 0.4s ease;
    }
    &:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
        &::before {
            opacity: 1;
        }
        i {
            transform: translateX(5px);
        }
    }
}

.bk-modern-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 38px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    color: var(--ztc-text-text-1);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    &:hover {
        background: var(--ztc-text-text-1);
        border-color: var(--ztc-text-text-1);
        color: var(--ztc-text-text-3);
        transform: translateY(-3px);
    }
}


/* Right Column - Visual Wrapper */

.bk-visual-wrapper {
    position: relative;
    padding: 40px 30px 60px 0;
    height: 100%;
    display: flex;
    align-items: center;
    @media (max-width: 991px) {
        padding: 30px 15px 50px;
        justify-content: center;
    }
}


/* Dynamic Card */

.bk-dynamic-card {
    position: relative;
    bottom: -200px !important;
    padding-bottom: -50px;
    margin-bottom: -50px;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 23px;
    margin-left: auto;
    transform: translateX(0);
    transition: all 0.5s ease;
    animation: bkCardFloat 6s ease-in-out infinite;
    @media (max-width: 991px) {
        margin: 0 auto;
        max-width: 400px;
    }
    @media (max-width: 767px) {
        padding: 25px;
    }
    &:hover {
        transform: translateX(-5px) translateY(-5px);
        border-color: rgba(212, 175, 55, 0.3);
    }
}

.bk-card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bk-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    }
}

.bk-card-caption {
    position: absolute;
    top: 40px;
    right: 50px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: var(--ztc-text-text-1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: var(--ztc-font-size-font-s11);
    letter-spacing: 1px;
    z-index: 5;
    i {
        color: var(--ztc-text-text-4);
        margin-right: 5px;
    }
}

.bk-card-content {
    margin-bottom: 20px;
    h4 {
        font-size: var(--ztc-font-size-font-s20);
        font-weight: var(--ztc-weight-bold);
        color: var(--ztc-text-text-1);
        margin-bottom: 8px;
    }
    p {
        font-size: var(--ztc-font-size-font-s14);
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 15px;
        line-height: 1.5;
    }
}

.bk-card-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    .bk-progress-fill {
        height: 100%;
        width: 75%;
        background: linear-gradient(90deg, var(--ztc-text-text-4), #e6c35c);
        border-radius: 10px;
        animation: bkProgressFill 1.5s ease-out;
    }
}

.bk-card-stats {
    display: flex;
    justify-content: space-between;
    span {
        color: var(--ztc-text-text-1);
        font-size: var(--ztc-font-size-font-s15);
        font-weight: var(--ztc-weight-bold);
        small {
            font-size: var(--ztc-font-size-font-s11);
            font-weight: var(--ztc-weight-regular);
            color: rgba(255, 255, 255, 0.6);
            margin-left: 4px;
        }
    }
}


/* Preview Links */

.bk-preview-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bk-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--ztc-font-size-font-s13);
    text-decoration: none;
    transition: all 0.3s ease;
    i {
        color: var(--ztc-text-text-4);
        font-size: var(--ztc-font-size-font-s10);
        transition: transform 0.3s ease;
    }
    &:hover {
        color: var(--ztc-text-text-4);
        i {
            transform: translateX(3px);
        }
    }
}


/* Floating Elements */

.bk-float-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ztc-text-text-4);
    font-size: var(--ztc-font-size-font-s16);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.bk-float-1 {
    top: -20px;
    right: -20px;
    animation: bkFloat1 8s ease-in-out infinite;
}

.bk-float-2 {
    bottom: 20px;
    left: -20px;
    animation: bkFloat2 10s ease-in-out infinite;
}

.bk-float-3 {
    top: 50%;
    right: -30px;
    animation: bkFloat3 12s ease-in-out infinite;
}


/* Navigation Controls */

.bk-hero-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 20;
    @media (max-width: 991px) {
        bottom: 30px;
        right: 30px;
    }
    @media (max-width: 767px) {
        display: none;
    }
}

.bk-hero-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ztc-text-text-1);
    font-size: var(--ztc-font-size-font-s20);
    cursor: pointer;
    transition: all 0.4s ease;
    &:hover {
        background: var(--ztc-bg-bg-3);
        border-color: var(--ztc-bg-bg-3);
        transform: scale(1.1);
        i {
            animation: bkArrowMove 0.8s ease infinite;
        }
    }
}


/* Slide Indicators */

.bk-hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 20;
    @media (max-width: 991px) {
        bottom: 30px;
        left: 30px;
    }
    @media (max-width: 767px) {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.bk-hero-indicator {
    width: 70px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    @media (max-width: 576px) {
        width: 40px;
    }
    &.active {
        .bk-indicator-progress {
            width: 100%;
            background: var(--ztc-bg-bg-3);
        }
    }
}

.bk-indicator-progress {
    width: 0;
    height: 100%;
    background: var(--ztc-bg-bg-3);
    transition: width 5s linear;
    border-radius: 3px;
}


/* Scroll Indicator */

.bk-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    @media (max-width: 767px) {
        display: none;
    }
    .bk-scroll-text {
        color: rgba(255, 255, 255, 0.5);
        font-size: var(--ztc-font-size-font-s11);
        text-transform: uppercase;
        letter-spacing: 2px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }
    .bk-scroll-line {
        width: 2px;
        height: 60px;
        background: linear-gradient(180deg, var(--ztc-text-text-4), transparent);
        animation: bkScrollLine 2s ease-in-out infinite;
    }
}


/* Animations */

@keyframes bkReveal {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bkFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bkFloat1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes bkFloat2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

@keyframes bkFloat3 {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(10deg);
    }
}

@keyframes bkCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bkProgressFill {
    from {
        width: 0;
    }
    to {
        width: 75%;
    }
}

@keyframes bkShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes bkGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes bkPulse {
    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes bkArrowMove {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes bkScrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


/* RTL Support */

[dir="rtl"] {
    .bk-modern-btn-primary i,
    .bk-preview-link i {
        transform: rotate(180deg);
    }
    .bk-modern-btn-primary:hover i,
    .bk-preview-link:hover i {
        transform: rotate(180deg) translateX(-5px);
    }
    .bk-dynamic-card {
        margin-left: 0;
        margin-right: auto;
    }
    .bk-hero-nav {
        right: auto;
        left: 50px;
        @media (max-width: 991px) {
            left: 30px;
        }
    }
    .bk-hero-indicators {
        left: auto;
        right: 50px;
        @media (max-width: 991px) {
            right: 30px;
        }
        @media (max-width: 767px) {
            right: 50%;
            transform: translateX(50%);
        }
    }
}