/* ============================================================
   IDENTITY AND ACCESS MANAGEMENT PAGE STYLES
   Modern enterprise design matching Bio-Logon aesthetic
   ============================================================ */

/* Section 1: Hero */
.iam_hero_section {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #EFF6FF 100%);
    padding: 130px 0px 80px 0px;
    position: relative;
    overflow: hidden;
}

.hero_content h1 {
    margin-bottom: 25px;
}

.hero_content h1 span {
    color: var(--ma-type-primary);
}

.hero_content p {
    margin-bottom: 35px;
}

.hero_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero_cta_btn:hover,
.hero_cta_btn:focus,
.hero_cta_btn:active {
    background-color: var(--ma-type-primaryhoverdark);
    color: var(--ma-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 68, 140, 0.3);
}

.hero_image img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Unified Content Section */
.unified_content_section {
    background-color: var(--ma-white);
    padding: 100px 0;
}

.section_content p {
    margin-bottom: 30px;
}

.section_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Steps Item */
.step_item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step_icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: #EFF6FF;
    color: var(--ma-type-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--ma-font-bold);
}

.step_text h3 {
    font-family: var(--ma-font-bold);
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 8px;
}

.step_text p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Capabilities/Feature Box */
.capabilities_box {
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    padding: 35px;
    margin: 30px 0px;
}

.capabilities_box h4 {
    font-family: var(--ma-font-bold);
    color: #111827;
    margin-bottom: 25px;
    font-size: 18px;
}

.capabilities_box p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.capabilities_box p i {
    color: var(--ma-type-primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Feature Cards */
.feature_card {
    background-color: var(--ma-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--ma-type-primary);
}

.feature_card .card_content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature_card .card_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #034694 0%, #4F7EB4 100%);
    color: var(--ma-white);
}

.feature_card .card_icon i {
    font-size: 24px;
    color: var(--ma-white);
}

.feature_card h3 {
    font-family: var(--ma-font-bold);
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 15px;
}

.feature_card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Dark Section Style */
.benefits_platform_section {
    background-color: var(--ma-type-primary);
    padding: 100px 0;
    color: var(--ma-white);
}

.benefits_platform_section h2 {
    font-family: var(--ma-font-bold);
    font-size: var(--ma-greeting-title);
    color: var(--ma-white);
    margin-bottom: 50px;
    text-align: center;
}

.platform_card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.platform_card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.platform_card .card_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.platform_card h3 {
    font-family: var(--ma-font-bold);
    font-size: 18px;
    color: var(--ma-white);
    margin-bottom: 12px;
}

.platform_card p {
    font-size: 14px;
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
}

/* Customer Stories */
.customer_stories_section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.customer_stories_section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.customer_card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #EEEEEE;
    height: 100%;
}

.customer_card img {
    max-height: 80px;
    margin-bottom: 25px;
}

.customer_card p {
    font-family: var(--ma-font-semibold);
    color: #1F2937;
    margin: 0;
}

/* Brochure Download */
.brochure_section {
    background: linear-gradient(rgba(3, 70, 148, 0.9), rgba(3, 70, 148, 0.9)), url('/Assets/Images/Common/brochure-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
}

.brochure_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.brochure_content h3 {
    color: white;
    margin: 0;
}

.btn_download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: var(--ma-type-primary);
    border-radius: 30px;
    font-family: var(--ma-font-bold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_download:hover {
    background: var(--ma-type-primaryhoverdark);
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.frequently-asked-questions-section {
    background-color: var(--ma-white);
    padding: 100px 0;
}

.fq-aside {
    position: sticky;
    top: 120px;
}

.fq-aside h2 {
    margin-bottom: 20px;
}

.fq-aside p {
    margin-bottom: 30px;
}

.fq-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 12px;
    padding: 30px;
}

.fq-contact-ico {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--ma-type-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.fq-contact span {
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
}

.fq-contact a {
    font-size: 15px;
    font-weight: 700;
    color: var(--ma-tag-black);
    text-decoration: none;
}

.fq-contact a:hover {
    color: var(--ma-type-primary);
}

.fq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq-item {
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .25s;
}

.fq-item.open {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border-color: transparent;
}

.fq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: background .2s;
    background-color: var(--ma-white);
}

.fq-q-text {
    margin-bottom: 0;
    font-size: 16px;
    font-family: var(--ma-font-semibold);
    color: var(--ma-tag-black);
}

.fq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--ma-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ma-type-primary);
    transition: transform .3s, background .3s;
}

.fq-item.open .fq-icon {
    transform: rotate(180deg);
    background: var(--ma-type-primary);
    color: #fff;
}

.fq-a {
    display: none;
    padding: 0 20px 18px;
    background-color: var(--ma-white);
}

.fq-item.open .fq-a {
    display: block;
}

.fq-a p {
    margin-bottom: 0;
    color: var(--ma-grey130);
    line-height: 1.6;
}

@media(max-width:1024px) {
    .fq-aside {
        position: static;
        margin-bottom: 40px;
    }
}

/* Responsive */
@media screen and (max-width: 991px) {
    .iam_hero_section {
        padding: 80px 0;
    }

    .hero_content h1 {
        font-size: 32px;
    }

    .unified_content_section {
        padding: 80px 0;
    }

    .benefits_platform_section {
        padding: 80px 0;
    }

    .customer_stories_section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    .hero_cta_btn {
        width: 100%;
        justify-content: center;
    }

    .brochure_content {
        justify-content: center;
        text-align: center;
    }

    .btn_download {
        width: 100%;
        justify-content: center;
    }
}