/* =======================================================
   CAREER HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.career-hero-section{
    position:relative;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* =========================================
   OVERLAY
========================================= */

.career-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;
    backdrop-filter:blur(5px);
    z-index:1;
}

/* =========================================
   CONTAINER
========================================= */

.career-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.career-hero-content{
    text-align:center;
    color:#ffffff;
    animation:careerFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.career-hero-title{
    font-family:'Orbitron',sans-serif;
    font-size:46px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:20px;
    line-height:1.3;
    letter-spacing:.5px;
    text-shadow:0 4px 20px rgba(0,0,0,.35);
}

/* =========================================
   DIVIDER
========================================= */

.career-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.career-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.career-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:careerLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.career-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:careerPulse 2s ease infinite;
}

.career-hero-icon svg{
    width:100%;
    height:100%;
    fill:#CE0F2C;
    filter:drop-shadow(0 0 10px rgba(206,15,44,.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes careerFadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes careerLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes careerPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .career-hero-title{
        font-size:28px;
    }

    .career-hero-section{
        padding:60px 15px;
    }

    .career-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .career-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .career-hero-line{
        width:40px;
    }

    .career-hero-divider{
        gap:8px;
    }

}




/* ==========================================
   CAREER APPLICATION 2026 PREMIUM UI
========================================== */

:root{
    --primary:#CE0F2C;
    --primary-dark:#b50d27;

    --bg:#f8fafc;
    --surface:#c6bbbb;

    --text:#CE0F2C;
    --muted:#64748b;

    --border:#e5e7eb;

    --radius:24px;

    --shadow-sm:
        0 1px 2px rgba(0,0,0,.04);

    --shadow-md:
        0 12px 40px rgba(15,23,42,.08);

    --shadow-lg:
        0 30px 80px rgba(15,23,42,.12);
}

/* ==========================================
   SECTION
========================================== */

.career-application-section{
    position:relative;
    padding:40px 20px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.career-application-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.92),
            rgba(248,250,252,.96)
        );
}

.career-application-wrapper{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

/* ==========================================
   HEADER
========================================== */

.career-application-header{
    text-align:center;
    margin-bottom:50px;
}

.career-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid rgba(206,15,44,.15);

    background:rgba(206,15,44,.05);

    color:var(--primary);

    font-size:12px;
    font-weight:700;

    letter-spacing:.12em;

    text-transform:uppercase;

    margin-bottom:20px;
}

.career-application-title{
    margin:0 0 16px;

    color:var(--text);

    font-size:clamp(2.2rem,5vw,4rem);

    line-height:1.1;

    font-weight:900;

    letter-spacing:-.03em;
}

.career-application-subtitle{
    max-width:700px;

    margin:auto;

    color:var(--muted);

    font-size:17px;

    line-height:1.8;
}

/* ==========================================
   FORM
========================================== */

.career-application-form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* ==========================================
   CARDS
========================================== */

.career-card,
.career-consent-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:28px;

    padding:32px;

    box-shadow:var(--shadow-md);

    transition:.35s ease;
}

.career-card:hover,
.career-consent-card:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-lg);
}

/* ==========================================
   CARD HEADER
========================================== */

.career-card-header{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:30px;
}

.career-card-step{

    width:52px;
    height:52px;

    flex-shrink:0;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:14px;

    font-weight:800;
}

.career-card-header h3{

    margin:0 0 6px;

    color:var(--text);

    font-size:22px;

    font-weight:800;
}

.career-card-header p{

    margin:0;

    color:var(--muted);

    font-size:15px;
}

/* ==========================================
   GRID
========================================== */

.career-application-row{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:24px;
}

.career-form-group{
    margin-bottom:24px;
}

/* ==========================================
   LABEL
========================================== */

.career-form-group label{

    display:block;

    margin-bottom:10px;

    color:var(--text);

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;
}

/* ==========================================
   INPUT
========================================== */

.career-form-group input,
.career-form-group select,
.career-form-group textarea{

    width:100%;

    border:1px solid #dbe2ea;

    background:#fff;

    border-radius:18px;

    padding:18px 20px;

    color:var(--text);

    font-size:15px;

    transition:.25s ease;

    outline:none;
}

.career-form-group textarea{

    resize:vertical;

    min-height:150px;
}

.career-large-textarea{
    min-height:220px !important;
}

.career-form-group input::placeholder,
.career-form-group textarea::placeholder{
    color:#94a3b8;
}

.career-form-group input:hover,
.career-form-group select:hover,
.career-form-group textarea:hover{
    border-color:#cbd5e1;
}

.career-form-group input:focus,
.career-form-group select:focus,
.career-form-group textarea:focus{

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(206,15,44,.10);
}

/* ==========================================
   FILE INPUT
========================================== */

input[type="file"]{

    padding:18px;

    background:#fafafa;

    border:2px dashed #dbe2ea;

    cursor:pointer;
}

/* ==========================================
   RADIO
========================================== */

.career-radio-group{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:10px;
}

.career-radio-group label{

    display:flex;

    align-items:center;

    gap:10px;

    padding:16px 18px;

    border:1px solid var(--border);

    border-radius:18px;

    cursor:pointer;

    background:#fff;

    transition:.25s ease;

    text-transform:none;

    letter-spacing:0;
}

.career-radio-group label:hover{

    border-color:var(--primary);
}

/* ==========================================
   CONSENT
========================================== */

.career-consent-label{

    display:flex;

    gap:14px;

    align-items:flex-start;
}

.career-consent-label span{

    color:var(--muted);

    line-height:1.8;

    font-size:14px;
}

.career-consent-label a{

    color:var(--primary);

    font-weight:700;

    text-decoration:none;
}

/* ==========================================
   BUTTON
========================================== */

.career-submit-button{

    border:none;

    height:68px;

    border-radius:22px;

    cursor:pointer;

    color:#fff;

    font-size:15px;

    font-weight:800;

    letter-spacing:.12em;

    text-transform:uppercase;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 15px 35px
        rgba(206,15,44,.25);

    transition:.3s ease;
}

.career-submit-button:hover{

    transform:translateY(-3px);

    box-shadow:
        0 20px 50px
        rgba(206,15,44,.35);
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .career-application-section{
        padding:60px 14px;
    }

    .career-card,
    .career-consent-card{
        padding:22px;
        border-radius:22px;
    }

    .career-application-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .career-card-header{
        flex-direction:column;
    }

    .career-submit-button{
        height:60px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .career-application-title{
        font-size:2rem;
    }

    .career-card-step{
        width:46px;
        height:46px;
    }

    .career-form-group input,
    .career-form-group select,
    .career-form-group textarea{
        padding:16px;
    }
}




/* =====================================
   CAREER SECTION (MODERN CTA STYLE)
===================================== */

.career-content-section{
    padding: 50px 20px;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;
        backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.career-content-container{
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* CONTENT CARD (GLASS STYLE) */
.career-content{
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    margin-bottom: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.career-content:hover{
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

/* TITLE */
.career-content-title{
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
    display: block;  
    text-align: center;
}

/* UNDERLINE EFFECT */
.career-content-title::after{
    left: 50%;
    transform: translateX(-50%);
}

/* PARAGRAPH */
.career-content p{
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
}

/* LIST WRAPPER */
.career-positions-content{
    margin-top: 15px;
}

/* LIST */
.career-positions-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-positions-list li{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* RED ACCENT BAR */
.career-positions-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #CE0F2C;
}

/* HOVER EFFECT */
.career-positions-list li:hover{
    transform: translateX(6px);
    background: rgba(255,255,255,0.08);
}

/* FOOTER TEXT */
.career-positions-footer{
    margin-top: 15px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* LINKS */
.career-content a{
    color: #ff4d6d;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.career-content a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff4d6d;
    transition:0.3s ease;
}

.career-content a:hover::after{
    width:100%;
}

/* RESPONSIVE */
@media(max-width:768px){
    .career-content{
        padding: 25px 20px;
    }

    .career-content p{
        font-size: 15px;
    }

    .career-content-title{
        font-size: 22px;
    }
}