/* Time Attendance System Page */

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

.automated_workforce_section h1 {
    color: var(--ma-tag-black);
    margin-bottom: 16px;
}

.hero_content>p {
    color: var(--ma-grey130);
    margin-bottom: 16px;
}

.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 {
    border-radius: 20px;
    overflow: hidden;
}

.hero_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ------------------------------ SECTION 2: SMART INTEGRATION ------------------------------ */
.smart_integration_section {
    background-color: var(--ma-white);
    padding: 80px 0;
}

.smart_integration_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.smart_integration_section h2 {
    margin-bottom: 16px;
}

.smart_integration_section p {
    margin-bottom: 16px;
}

/* Feature Cards */
.smart_integration_card {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.smart_integration_card:hover {
    box-shadow: var(--ma-depth64);
    transform: translateY(-3px);
}

.smart_integration_card_icon {
    margin-bottom: 12px;
}

.smart_integration_card_icon i {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #034694 0%, #4F7EB4 100%);
    color: var(--ma-white);
    font-size: 24px;
}

.smart_integration_card h6 {
    margin-bottom: 8px;
}

.smart_integration_card p {
    margin-bottom: 0;
}

/* SECTION 3A: HR MEETS FINANCE */
.hr_meets_finance_section {
    background-color: #FAFAFA;
    padding: 80px 0;
}

.hr_meets_finance_section h2 {
    margin-bottom: 16px;
}

/* Checklist box */
.hr_meets_finance_checklist {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 14px;
    padding: 28px;
}

.hr_meets_finance_checklist h6 {
    margin-bottom: 16px;
}

.hr_meets_finance_checklist ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.hr_meets_finance_checklist ul li {
    font-size: var(--ma-body-text);
    color: var(--ma-grey130);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hr_meets_finance_checklist ul li:last-child {
    margin-bottom: 0;
}

.hr_meets_finance_checklist ul li i {
    color: var(--ma-type-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Section image */
.hr_meets_finance_img {
    border-radius: 16px;
    overflow: hidden;
}

.hr_meets_finance_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ------------------------------ SECTION 3B: SUPPORTS ------------------------------ */
.biometrics_supports_section {
    background-color: var(--ma-bg-section-dark);
    padding: 80px 0px;
}

.biometrics_supports_section h2 {
    color: var(--ma-white);
}

.supports_item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.supports_item:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.supports_item i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    background-color: #e6edf417;
    color: white;
}

    .supports_item h6 {
        color: var(--ma-white);
    }

.supports_item p {
    color: var(--ma-white);
    opacity: 0.85;
    margin-bottom: 0px;
}

/* ------------------------------ FAQ Section ------------------------------ */
.frequently-asked-questions-section {
    background-color: var(--ma-white);
    padding: 80px 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);
}

/* FAQ items */
.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);
}

.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;
    }
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
    .smart_integration_img {
        margin-bottom: 30px;
    }

    .hr_meets_finance_img {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .automated_workforce_section {
        padding: 30px 0 40px 0;
    }

    .hero_image {
        margin-top: 30px;
    }

    .smart_integration_section,
    .hr_meets_finance_section,
    .biometrics_supports_section {
        padding: 50px 0;
    }
}

@media screen and (max-width: 576px) {
    .supports_item {
        padding: 12px 14px;
    }
}