/* ===================================================== */
/* HOSPITALITY RECRUITMENT PROCESS SECTION */
/* ===================================================== */

.hw-recruitment-process{
    width:100%;
    padding:80px 20px;
    background:#f3f7fc;
    position:relative;
    overflow:hidden;
}

/* Main Layout */

.hw-process-container{
    max-width:1350px;
    margin:auto;
    display:flex;
    gap:35px;
    align-items:stretch;
}

/* ===================================================== */
/* LEFT SIDE PANEL */
/* ===================================================== */

.hw-process-left{
    width:38%;
    background:linear-gradient(180deg,#06152e,#0b2143);
    padding:30px;
    border-radius:32px;
    display:flex;
    flex-direction:column;
    gap:22px;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(6,21,46,0.18);
}

/* Decorative Glow */

.hw-process-left::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    top:-120px;
    right:-120px;
}

/* ===================================================== */
/* BUTTONS */
/* ===================================================== */

.hw-process-btn{
    position:relative;
    width:100%;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:24px 22px;
    display:flex;
    align-items:center;
    gap:18px;
    cursor:pointer;
    overflow:hidden;
    transition:all 0.4s ease;
    text-align:left;
    backdrop-filter:blur(8px);
}

/* Hover */

.hw-process-btn:hover{
    transform:translateY(-6px) scale(1.02);
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    box-shadow:0 20px 45px rgba(37,99,235,0.35);
}

/* Active */

.hw-process-btn.active{
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    transform:scale(1.02);
    box-shadow:0 20px 50px rgba(37,99,235,0.35);
}

/* Animated Shine */

.hw-process-btn::after{
    content:"";
    position:absolute;
    width:120px;
    height:200%;
    background:rgba(255,255,255,0.12);
    top:-50%;
    left:-140px;
    transform:rotate(25deg);
    transition:all 0.7s ease;
}

.hw-process-btn:hover::after{
    left:130%;
}

/* ===================================================== */
/* STEP NUMBER */
/* ===================================================== */

.hw-step-number{
    min-width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid rgba(255,255,255,0.08);
    transition:all 0.4s ease;
    flex-shrink:0;
}

.hw-step-number span{
    color:#ffffff;
    font-size:22px;
    font-weight:700;
}

/* Hover Number */

.hw-process-btn:hover .hw-step-number,
.hw-process-btn.active .hw-step-number{
    background:#ffffff;
    transform:rotate(8deg) scale(1.08);
}

.hw-process-btn:hover .hw-step-number span,
.hw-process-btn.active .hw-step-number span{
    color:#2563eb;
}

/* ===================================================== */
/* BUTTON CONTENT */
/* ===================================================== */

.hw-btn-content{
    position:relative;
    z-index:2;
}

.hw-btn-content h4{
    margin:0;
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    line-height:1.4;
}

.hw-btn-content p{
    margin-top:8px;
    color:rgba(255,255,255,0.72);
    font-size:14px;
    line-height:1.6;
}

/* ===================================================== */
/* RIGHT SIDE */
/* ===================================================== */

.hw-process-right{
    width:62%;
    background:#ffffff;
    border-radius:32px;
    padding:60px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(15,23,42,0.08);
}

/* Decorative Background */

.hw-process-right::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(37,99,235,0.05);
    top:-140px;
    right:-140px;
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.hw-tab-content{
    display:none;
    position:relative;
    z-index:2;
    animation:hwFade 0.4s ease;
}

.hw-tab-content.active{
    display:block;
}

/* Tag */

.hw-process-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(37,99,235,0.1);
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

/* Heading */

.hw-tab-content h3{
    font-size:42px;
    color:#06152e;
    line-height:1.2;
    margin-bottom:24px;
    font-weight:800;
}

/* Paragraph */

.hw-tab-content p{
    font-size:18px;
    line-height:2;
    color:#475569;
    margin:0;
}

/* ===================================================== */
/* ANIMATION */
/* ===================================================== */

@keyframes hwFade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================================== */
/* LARGE LAPTOP */
/* ===================================================== */

@media(max-width:1200px){

    .hw-tab-content h3{
        font-size:34px;
    }

    .hw-process-right{
        padding:45px;
    }

}

/* ===================================================== */
/* TABLET */
/* ===================================================== */

@media(max-width:991px){

    .hw-process-container{
        flex-direction:column;
    }

    .hw-process-left,
    .hw-process-right{
        width:100%;
    }

    .hw-process-left{
        padding:24px;
    }

    .hw-process-right{
        padding:40px 30px;
    }

    .hw-tab-content h3{
        font-size:30px;
    }

    .hw-tab-content p{
        font-size:16px;
        line-height:1.9;
    }

}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:767px){

    .hw-recruitment-process{
        padding:50px 15px;
    }

    .hw-process-container{
        gap:22px;
    }

    .hw-process-left{
        padding:18px;
        border-radius:24px;
        gap:16px;
    }

    .hw-process-btn{
        padding:18px 16px;
        gap:14px;
        border-radius:18px;
    }

    .hw-step-number{
        min-width:56px;
        height:56px;
    }

    .hw-step-number span{
        font-size:17px;
    }

    .hw-btn-content h4{
        font-size:16px;
    }

    .hw-btn-content p{
        font-size:13px;
    }

    .hw-process-right{
        padding:30px 22px;
        border-radius:24px;
    }

    .hw-process-tag{
        font-size:13px;
        padding:8px 14px;
        margin-bottom:18px;
    }

    .hw-tab-content h3{
        font-size:24px;
        margin-bottom:16px;
    }

    .hw-tab-content p{
        font-size:15px;
        line-height:1.9;
    }

}

/* ===================================================== */
/* SMALL MOBILE */
/* ===================================================== */

@media(max-width:480px){

    .hw-process-btn{
        align-items:flex-start;
    }

    .hw-step-number{
        min-width:48px;
        height:48px;
    }

    .hw-btn-content h4{
        font-size:15px;
    }

    .hw-btn-content p{
        font-size:12px;
    }

    .hw-tab-content h3{
        font-size:22px;
    }

    .hw-tab-content p{
        font-size:14px;
    }

}