/* ═══════════════════════════════════════════════
   RECRUTEMENT — "Talent Dark" Concept
   Accent: Emerald #10b981
═══════════════════════════════════════════════ */
:root {
    --acc: #10b981;
    --acc-d: #059669;
    --acc-rgb: 16,185,129;
    --navy: #0b1a2e;
    --navy2: #0f2340;
    --dark: #081525;
}

/* ── HERO ───────────────────────────────────── */
.rc-hero {
    position: relative;
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}
/* dot grid */
.rc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
/* radial glow */
.rc-hero::after {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(var(--acc-rgb),.18) 0%, transparent 70%);
    top: -200px; right: -200px;
    border-radius: 50%;
    pointer-events: none;
}
.rc-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* breadcrumb */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.hero-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--acc); }
.hero-breadcrumb span { color: var(--acc); }

/* label pill */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(var(--acc-rgb),.12);
    border: 1px solid rgba(var(--acc-rgb),.35);
    color: var(--acc);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}
.hero-label::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--acc);
    border-radius: 50%;
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.7); }
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title span { color: var(--acc); }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-acc {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(var(--acc-rgb),.35);
}
.btn-acc:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--acc-rgb),.5); }
.btn-ghost-w {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    background: transparent;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .95rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.25);
    text-decoration: none;
    transition: all .3s;
}
.btn-ghost-w:hover { border-color: var(--acc); color: var(--acc); }

/* ── HERO VISUAL : floating talent cards ─────── */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Central circle */
.hv-core {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--acc-rgb),.25), rgba(var(--acc-rgb),.08));
    border: 2px solid rgba(var(--acc-rgb),.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 60px rgba(var(--acc-rgb),.2);
}
.hv-core-inner {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    gap: 4px;
    box-shadow: 0 0 40px rgba(var(--acc-rgb),.6);
}
.hv-core-inner i { font-size: 1.8rem; }

/* Orbit ring */
.hv-orbit {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(var(--acc-rgb),.3);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: spinOrbit 20s linear infinite;
}
@keyframes spinOrbit { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Floating talent cards */
.hv-card {
    position: absolute;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: .9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 4;
}
.hv-card:nth-child(3) { top: 4%;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hv-card:nth-child(4) { top: 25%; right: 0;   animation-delay: .6s; }
.hv-card:nth-child(5) { bottom: 25%; right: 2%; animation-delay: 1.2s; }
.hv-card:nth-child(6) { bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }
.hv-card:nth-child(7) { bottom: 25%; left: 0;   animation-delay: 2.4s; }
.hv-card:nth-child(8) { top: 25%; left: 2%;   animation-delay: 3s; }
@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.hv-card:nth-child(3), .hv-card:nth-child(6) {
    animation: floatCardCenter 4s ease-in-out infinite;
}
@keyframes floatCardCenter {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-10px); }
}
.hv-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}
.hv-card-txt { font-size: .78rem; color: rgba(255,255,255,.9); }
.hv-card-txt strong { display: block; font-size: .82rem; color: #fff; margin-bottom: 2px; }

/* ── STATS BAR ───────────────────────────────── */
.rc-stats {
    background: linear-gradient(90deg, var(--navy2), var(--dark));
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 0;
}
.rc-stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.08);
}
.stat-item .s-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--acc);
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-item .s-lbl {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ── WHY JOIN ─────────────────────────────────── */
.rc-why {
    background: #fff;
    padding: 6rem 0;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(var(--acc-rgb),.1);
    color: var(--acc);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title span { color: var(--acc); }
.section-sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
}
.rc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3.5rem;
}
.why-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--acc), var(--acc-d));
    transform: scaleX(0);
    transition: transform .35s ease;
}
.why-card:hover {
    border-color: rgba(var(--acc-rgb),.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(var(--acc-rgb),.12);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--acc-rgb),.15), rgba(var(--acc-rgb),.05));
    border: 1px solid rgba(var(--acc-rgb),.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--acc);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all .35s;
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(var(--acc-rgb),.35);
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: .6rem; }
.why-card p  { font-size: .9rem; color: #64748b; line-height: 1.65; margin: 0; }


/* ── PROCESS CANDIDATURE ────────────────────── */
.rc-process {
    background: var(--navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.rc-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.rc-process .section-title { color: #fff; }
.rc-process .section-sub   { color: rgba(255,255,255,.6); }

.proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}
/* connector line */
.proc-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--acc), rgba(var(--acc-rgb),.2));
    z-index: 0;
}
.proc-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}
.ps-num {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(var(--acc-rgb),.1);
    border: 2px solid rgba(var(--acc-rgb),.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--acc);
    margin-bottom: 1.5rem;
    transition: all .3s;
    position: relative;
}
.proc-step:hover .ps-num {
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(var(--acc-rgb),.5);
}
.ps-num i { font-size: 1.5rem; }
.ps-label { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.ps-desc  { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── AVANTAGES / BENEFITS ────────────────────── */
.rc-benefits {
    background: #fff;
    padding: 6rem 0;
}
.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3.5rem;
}
.ben-card {
    border-radius: 20px;
    padding: 2rem 1.8rem;
    border: 2px solid #e2e8f0;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all .3s;
    background: #f8fafc;
}
.ben-card:hover {
    border-color: rgba(var(--acc-rgb),.3);
    background: #fff;
    box-shadow: 0 16px 36px rgba(var(--acc-rgb),.09);
    transform: translateY(-4px);
}
.ben-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(var(--acc-rgb),.3);
}
.ben-body h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
.ben-body p  { font-size: .85rem; color: #64748b; line-height: 1.65; margin: 0; }

/* ── APPLICATION FORM ────────────────────────── */
.rc-form-section {
    background: linear-gradient(135deg, var(--navy2) 0%, var(--dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.rc-form-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--acc-rgb),.12) 0%, transparent 70%);
    bottom: -200px; left: -200px;
    pointer-events: none;
}

.rc-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* left: info panel */
.rc-form-info .section-title { color: #fff; margin-bottom: 1rem; }
.rc-form-info .section-sub   { color: rgba(255,255,255,.65); margin-bottom: 2rem; }

.form-contact-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.form-contact-items li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    color: rgba(255,255,255,.8);
    font-size: .9rem;
}
.form-contact-items li i { color: var(--acc); font-size: 1.1rem; flex-shrink: 0; }

/* right: actual form */
.rc-form-box {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 2.5rem;
}
.rc-form-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}
.rc-form-box .fc-sub { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 2rem; }

.fg { margin-bottom: 1.4rem; }
.fg label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: .5rem;
    letter-spacing: .03em;
}
.fg label .req { color: var(--acc); }
.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: .85rem 1rem;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    transition: all .25s;
    outline: none;
    box-sizing: border-box;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.3); }
.fg select option { background: #1e293b; color: #fff; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--acc);
    background: rgba(var(--acc-rgb),.08);
    box-shadow: 0 0 0 3px rgba(var(--acc-rgb),.15);
}
.fg textarea { min-height: 120px; resize: vertical; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* file upload dark */
.file-drop {
    border: 2px dashed rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}
.file-drop:hover, .file-drop.dragover {
    border-color: var(--acc);
    background: rgba(var(--acc-rgb),.07);
}
.file-drop input[type="file"] { display: none; }
.file-drop .fd-icon { font-size: 2.2rem; color: var(--acc); margin-bottom: .6rem; }
.file-drop .fd-txt  { font-size: .82rem; color: rgba(255,255,255,.55); }
.file-drop .fd-info { margin-top: .6rem; font-size: .82rem; color: var(--acc); font-weight: 600; }

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--acc), var(--acc-d));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(var(--acc-rgb),.35);
    margin-top: .5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--acc-rgb),.5); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── CTA BOTTOM ──────────────────────────────── */
.rc-cta {
    background: linear-gradient(135deg, var(--acc-d), var(--acc));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 24px 24px;
}
.cta-inner { position: relative; z-index: 1; }
.rc-cta h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.rc-cta p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .9rem 2.2rem;
    background: #fff;
    color: var(--acc-d);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    font-size: .95rem;
}
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.btn-outline-w {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .9rem 2.2rem;
    background: transparent;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.5);
    text-decoration: none;
    transition: all .3s;
    font-size: .95rem;
}
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .rc-hero .container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { height: 360px; }
    .rc-why-grid, .ben-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .proc-steps::before { display: none; }
    .rc-form-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .rc-stats .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(3)::before, .stat-item:nth-child(1)::before { display: none; }
    .rc-why-grid, .ben-grid { grid-template-columns: 1fr; }
    .job-card { grid-template-columns: 1fr; }
    .jc-actions { align-items: flex-start; }
    .proc-steps { grid-template-columns: 1fr; }
    .fg-row { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}
