/* =====================================================
   Finozone Investor Awareness Program
===================================================== */
.fz-iap {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--bg-light);
}
.fz-iap::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 51, 0, 0.035);
    pointer-events: none;
}
.fz-iap .container {
    position: relative;
    z-index: 2;
}
/* =====================================================
   Header
===================================================== */
.fz-iap-heading-row {
    margin-bottom: 42px;
}
.fz-iap-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--bg-first);
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08rem;
}
.fz-iap-header h2 {
    margin: 0;
    color: var(--text-dark);
    font-family: var(--third-font);
    font-size: var(--font-section-title);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.025em;
}
.fz-iap-header h2 span {
    color: var(--bg-first);
}
/* =====================================================
   Introduction
===================================================== */
.fz-iap-intro {
    max-width: 850px;
}
.fz-iap-intro p {
    margin: 0;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 1.8;
}
/* =====================================================
   Gallery
===================================================== */
.fz-iap-gallery {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.fz-iap-photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #eeeeee;
}
.fz-iap-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fz-iap-photo:hover img {
    transform: scale(1.035);
}
.fz-iap-photo-main {
    height: 516px;
}
.fz-iap-photo-small {
    height: 250px;
}
/* =====================================================
   Main Image Overlay
===================================================== */
.fz-iap-photo-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 55%, transparent 100%);
    pointer-events: none;
}
.fz-iap-photo-overlay {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    z-index: 2;
}
.fz-iap-photo-overlay span {
    display: inline-block;
    margin-bottom: 7px;
    color: #ffb29f;
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08rem;
}
.fz-iap-photo-overlay h3 {
    margin: 0;
    color: var(--bg-white);
    font-family: var(--primary-font);
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 1.4;
}
/* =====================================================
   Small Image Overlay
===================================================== */
.fz-iap-photo-small::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, transparent 60%);
    pointer-events: none;
}
/* =====================================================
   Small Image Tag
===================================================== */
.fz-iap-photo-tag {
    position: absolute;
    bottom: 13px;
    left: 15px;
    z-index: 2;
}
.fz-iap-photo-tag span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-primary);
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.3;
    backdrop-filter: blur(5px);
}
/* =====================================================
   Bottom Information
===================================================== */
.fz-iap-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    padding: 21px 23px;
    border: 1px solid rgba(255, 51, 0, 0.12);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
}
.fz-iap-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--bg-third);
    color: var(--bg-first);
}
.fz-iap-bottom-icon i {
    font-size: 24px;
}
.fz-iap-bottom-content {
    flex: 1;
}
.fz-iap-bottom-content h4 {
    margin: 0 0 4px;
    color: var(--text-dark);
    font-family: var(--primary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.4;
}
.fz-iap-bottom-content p {
    margin: 0;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.7;
}
/* =====================================================
   Tablet
===================================================== */
@media (max-width: 991.98px) {
    .fz-iap {
        padding: 70px 0;
    }
    .fz-iap-heading-row {
        margin-bottom: 38px;
    }
    .fz-iap-intro {
        max-width: 700px;
    }
    .fz-iap-photo-main {
        height: 450px;
    }
    .fz-iap-bottom {
        flex-wrap: wrap;
    }
}
/* =====================================================
   Mobile
===================================================== */
@media (max-width: 767.98px) {
    .fz-iap {
        padding: 60px 0;
    }
    .fz-iap-heading-row {
        margin-bottom: 30px;
    }
    .fz-iap-intro p {
        font-size: var(--font-base);
    }
    .fz-iap-photo-main {
        height: 380px;
    }
    .fz-iap-photo-small {
        height: 200px;
    }
    .fz-iap-photo-overlay {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }
    .fz-iap-photo-overlay h3 {
        font-size: var(--font-xl);
    }
    .fz-iap-bottom {
        align-items: flex-start;
    }
}
/* =====================================================
   Small Mobile
===================================================== */
@media (max-width: 575.98px) {
    .fz-iap {
        padding: 50px 0;
    }
    .fz-iap-intro p {
        font-size: 15px;
    }
    .fz-iap-photo-main {
        height: 330px;
    }
    .fz-iap-photo-small {
        height: 165px;
    }
    .fz-iap-photo-overlay {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }
    .fz-iap-photo-overlay span {
        font-size: 13px;
    }
    .fz-iap-photo-overlay h3 {
        font-size: 19px;
    }
    .fz-iap-photo-tag {
        bottom: 9px;
        left: 9px;
    }
    .fz-iap-photo-tag span {
        min-height: 27px;
        padding: 4px 8px;
        font-size: 12px;
    }
    .fz-iap-bottom {
        padding: 18px;
    }
    .fz-iap-bottom-icon {
        width: 44px;
        height: 44px;
    }
    .fz-iap-bottom-icon i {
        font-size: 22px;
    }
    .fz-iap-bottom-content {
        width: calc(100% - 60px);
        flex: none;
    }
    .fz-iap-bottom-content h4 {
        font-size: 17px;
    }
    .fz-iap-bottom-content p {
        font-size: 15px;
    }
}