/* --- CAREERS PAGE STYLES (EXACT DESIGN) --- */

:root {
    --c-bg: #fff;
    --c-gray-light: #f5f5f5;
    --c-border: #eee;
}

.c-red {
    color: var(--primary-red);
}

/* HERO */
.c-hero {
    display: flex;
    min-height: 340px;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.c-hero-left {
    flex: 0.9;
    padding: 120px 40px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
}

.c-breadcrumb {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.c-hero-left h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 25px;
    color: var(--dark-text);
    text-transform: uppercase;
}

.c-hero-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 45px;
}

.c-hero-btn {
    width: fit-content;
    padding: 18px 36px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-hero-right {
    flex: 1.4;
    position: relative;
}

.c-hero-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.c-hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    clip-path: polygon(14.5% 0, 15.5% 0, 0.5% 100%, -0.5% 100%);
    z-index: 10;
}

.c-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-hero-floating-text {
    position: absolute;
    top: 80px;
    right: 80px;
    text-align: right;
    z-index: 15;
}

.c-hero-floating-text p {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.c-hero-floating-text p:last-child {
    color: #444;
}

/* FLOATING STATS */
.c-stats-section {
    position: relative;
    z-index: 20;
    margin-top: -70px;
}

.c-stats-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 45px 60px;
    border: 1px solid #f5f5f5;
}

.c-stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.c-stat-icon-outline {
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-stat-info {
    display: flex;
    flex-direction: column;
}

.c-stat-info strong {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}

.c-stat-info span {
    font-size: 12px;
    color: #777;
    font-weight: 600;
    margin-top: 6px;
}

.c-stat-divider {
    width: 1px;
    height: 70px;
    background: #e5e5e5;
}

/* WHY JOIN SECTION */
.c-why-section {
    padding: 80px 0;
}

.c-section-header {
    margin-bottom: 35px;
}

.c-subtitle {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-title-line {
    width: 25px;
    height: 2.5px;
    background: var(--primary-red);
    border-radius: 2px;
}

.c-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.c-why-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2f2f2;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.c-why-icon-box {
    color: var(--primary-red);
    flex-shrink: 0;
}

.c-why-text h4 {
    font-size: 13.5px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.c-why-text p {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* OPENINGS & BENEFITS GRID */
.c-openings-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.c-openings-area {
    width: 100%;
}

.c-openings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.c-btn-view-all {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
    border: 1px solid var(--primary-red);
    padding: 8px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-jobs-container-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2f2f2;
}

.c-job-item {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 100px 100px;
    align-items: center;
    padding: 22px 30px;
    border-bottom: 1px solid #f5f5f5;
    gap: 15px;
    transition: background 0.3s ease;
}

.c-job-item:last-child {
    border-bottom: none;
}

.c-job-item:hover {
    background: #fdfdfd;
}

.c-job-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-job-chevron {
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 800;
}

.c-job-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
}

.c-job-dept {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.c-job-loc {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.c-job-type {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--primary-red);
    border: 1.2px solid var(--primary-red);
    padding: 4px 0;
    border-radius: 4px;
    background: rgba(228, 0, 0, 0.03);
    text-align: center;
}

.c-job-apply {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
    text-align: right;
}

/* BENEFITS SIDEBAR */
.c-benefits-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f2f2f2;
}

.c-benefits-image {
    height: 170px;
}

.c-benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-benefits-content {
    padding: 30px 25px;
}

.c-benefits-content h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.c-benefits-line {
    width: 25px;
    height: 2.5px;
    background: var(--primary-red);
    margin-bottom: 30px;
    border-radius: 2px;
}

.c-benefits-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-benefits-checklist li {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-benefits-checklist li svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

/* CTA BAR */
.c-cta-section {
    padding-bottom: 80px;
}

.c-cta-bar {
    background: var(--primary-red);
    border-radius: 12px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.c-cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.c-cta-icon {
    flex-shrink: 0;
}

.c-cta-icon svg {
    fill: rgba(255, 255, 255, 0.15);
}

.c-cta-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.c-cta-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.c-cta-center {
    flex: 1;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.c-cta-btn {
    background: white;
    color: #222;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.c-cta-btn:hover {
    background: #f5f5f5;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .c-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-openings-benefits-grid {
        grid-template-columns: 1fr;
    }

    .c-benefits-sidebar {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .c-hero {
        flex-direction: column;
        min-height: auto;
    }

    .c-hero-left {
        padding: 40px 20px;
        flex: none;
    }

    .c-hero-img-wrapper {
        clip-path: none;
        height: 250px;
    }

    .c-hero-right::after {
        display: none;
    }

    .c-stats-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .c-stat-divider {
        display: none;
    }

    .c-stat-item {
        width: 100%;
        justify-content: flex-start;
    }

    .c-hero-floating-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .c-job-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        gap: 15px;
    }

    .c-job-main {
        width: 100%;
    }

    .c-job-dept,
    .c-job-loc,
    .c-job-type {
        margin-left: 30px;
    }

    .c-job-type {
        width: 100px;
    }

    .c-job-apply {
        margin-left: 30px;
        text-align: left;
        width: 100%;
        margin-top: 5px;
    }

    .c-cta-bar {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
    }

    .c-cta-left {
        flex-direction: column;
        text-align: center;
    }

    .c-cta-divider {
        display: none;
    }

    .c-cta-center {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .c-why-grid {
        grid-template-columns: 1fr;
    }

    .c-hero-left h1 {
        font-size: 32px;
    }

    .c-hero-left {
        padding: 60px 20px;
    }

    .c-stats-card {
        padding: 30px 20px;
    }
}