/* HR Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background: #F4F5F7;
    padding: 120px 0 20px 0;
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    color: #797979;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: #E63A46;
}

.breadcrumb-separator {
    color: #797979;
    font-size: 16px;
}

.breadcrumb-current {
    color: #797979;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hr-section {
    padding: 0 0 80px;
    background: #F4F5F7;
}

/* Hero Section */

.hr-hero-title {
    color: #3C3C3C;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.hr-hero-description {
    color: #3C3C3C;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
}

.hr-hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-hr-primary {
    background: #E63A46;
    color: #F4F5F7;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 21.92px;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hr-primary:hover {
    background: #c91432;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.btn-hr-secondary {
    background: transparent;
    color: #E63A46;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 21.92px;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hr-secondary:hover {
    color: #c91432;
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.hr-hero-section .row + .row {
    margin-top: 80px;
}

.hr-hero-image {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hr-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Benefits Section */
.hr-benefits-section .row {
    display: flex;
    justify-content: space-between;

    .col-md-4 {
    }
}

.hr-section-title {
    color: #3C3C3C;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 48px;
}

.hr-benefit-card {
    width: 30%;
    flex: 0 0 auto;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hr-benefit-card:hover {
    transform: translateY(-10px);
}

.hr-benefit-icon {
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.hr-benefit-title {
    color: #3C3C3C;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 32.88px;
    margin-bottom: 16px;
}

.hr-benefit-text {
    color: #797979;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* Transform Section */
.hr-transform-section {
    position: relative;
}

.hr-feature-card {
    background: white;
    border-radius: 46px;
    padding: 40px;
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hr-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #E63A46 0%, #ff6b6b 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.hr-feature-card:hover::before {
    transform: scaleY(1);
}

.hr-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hr-feature-card-large {
    background: white;
    border-radius: 46px;
    padding: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    .hr-feature-description {
        max-width: 604px;
    }
}

.hr-feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #E63A46 0%, #ff6b6b 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.hr-feature-card-large:hover::before {
    transform: scaleY(1);
}

.hr-feature-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hr-feature-title {
    max-width: 426px;
    color: #3C3C3C;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.hr-feature-description {
    max-width: 426px;
    color: #797979;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.hr-video-link {
    color: #E63A46;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hr-video-link:hover {
    color: #c91432;
    transform: translateX(5px);
}

.hr-video-icon {
    width: 20px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hr-video-link:hover .hr-video-icon {
    transform: scale(1.2);
}

.hr-feature-image {
    width: 100%;
    height: auto;
    margin-top: auto;
}

.hr-feature-image-large {
    width: 100%;
    height: auto;
    margin-top: 24px;
}

/* Modules Section */
.hr-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hr-tab-btn {
    background: #D9D9D9;
    color: #3C3C3C;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 21.92px;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hr-tab-btn.active {
    background: #E63A46;
    color: #F8F9FD;
}

.hr-tab-btn:hover {
    background: #E63A46;
    color: #F8F9FD;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.hr-module-card {
    background: white;
    border-radius: 46px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hr-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #E63A46 0%, #ff6b6b 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.hr-module-card:hover::before {
    transform: scaleY(1);
}

.hr-module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hr-module-title {
    color: #3C3C3C;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.hr-module-description {
    color: #797979;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
}

.hr-module-subtitle {
    color: #3C3C3C;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 32.88px;
    margin-bottom: 16px;
}

.hr-module-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.hr-module-list li {
    color: #3C3C3C;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 0;
}

/* Love Section */
.hr-love-section {
    background: #F4F5F7;
}

.hr-love-item {
    margin-bottom: 40px;
    display: flex;
    gap: 16px;
    align-items: flex-start;

    &:last-child {
        margin-bottom: 0;
    }
}

.hr-love-icon {
    flex-shrink: 0;
    width: 32px;
    height: 37px;
}

.hr-love-icon img {
    width: 100%;
    height: auto;
}

.hr-love-content {
    flex: 1;
    max-width: 467px;
}

.hr-love-title {
    color: #3C3C3C;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 32.88px;
    margin-bottom: 10px;
    max-width: 430px;
}

.hr-love-text {
    color: #797979;
}

.hr-love-text, .hr-footer-form-text {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.hr-love-image-wrapper {
    background: white;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.hr-love-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hr-love-image {
    width: auto;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.hr-love-image-wrapper:hover .hr-love-image {
    transform: scale(1.05);
}

.footer-form {
    .b24-form-header, .b24-form-control-add-btn, .b24-form-sign, .b24-form-field-text, .b24-form-control-required {
        display: none;
    }

    .b24-form-wrapper.b24-form-border-bottom {
        border: none;
    }

    .b24-form-wrapper {
        background-color: unset;

        .b24-form-field {
            span, .b24-form-control-desc, .hr-section-title {
                color: white;
                opacity: unset;
            }

            input, input:-webkit-autofill {
                background-color: white !important;
                -webkit-background-clip: unset;
            }
        }

        input, button {
            border-radius: 30px;
        }
    }

    .hr-section-title, .hr-footer-form-text {
        color: white;
    }

    .row {
        padding: 40px;
        border-radius: 45px;
        background: var(--primary-blue);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hr-hero-title {
        font-size: 36px;
    }

    .hr-section-title {
        font-size: 32px;
    }

    .hr-hero-buttons {
        flex-direction: column;
    }

    .btn-hr-primary,
    .btn-hr-secondary {
        width: 100%;
        justify-content: center;
    }

    .hr-feature-card {
        min-height: auto;
        margin-bottom: 24px;
    }

    .hr-tabs {
        gap: 8px;
    }

    .hr-tab-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hr-love-item:last-child {
        margin-bottom: 40px;
    }

    .hr-hero-section .row + .row {
        margin-top: 40px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .footer-form .b24-form-wrapper {
        max-width: 1140px;
    }
}

@media (max-width: 767px) {
    .hr-hero-title {
        font-size: 28px;
    }

    .hr-section-title {
        font-size: 24px;
    }

    .hr-feature-title,
    .hr-module-title {
        font-size: 24px;
    }

    .hr-benefit-title {
        font-size: 20px;
    }
    .hr-benefits-section {
        .row {
            flex-direction: row;
        }

        .hr-benefit-card {
            width: 100%;
        }
    }

    .hr-love-section, .hr-benefits-section, .hr-hero-section, .footer-form {
        .container {
            --bs-gutter-x: 80px;
            --bs-gutter-y: 80px;
        }
    }

    .hr-section {
        padding-bottom: 40px;
    }

    .hr-transform-section, .hr-modules-section {
        .hr-section-title, .hr-tabs {
            padding-left: 28px;
            padding-right: 28px;
        }
    }
}
