:root {
    --brand-gold: #efb506;
    --brand-gold-dark: #d49b00;
    --brand-dark: #111111;
    --brand-text: #222222;
    --brand-muted: #5b5b5b;
    --brand-light: #f8f9fb;
    --brand-border: #e9e9e9;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-text);
    background: var(--white);
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--brand-muted);
    line-height: 1.8;
}

/* Hero */
#careers-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background-image: url('/resources/Careers/Careers.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.careers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42));
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--white);
}

.careers-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 700;
}

.careers-hero-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

/* Intro */
#careers-intro {
    padding: 90px 0 50px;
    background: var(--white);
}

.careers-intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.careers-intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.careers-intro-content p {
    color: var(--brand-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Why Work With Us */
#why-work-with-us {
    padding: 40px 0 90px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.benefit-card p {
    color: var(--brand-muted);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* Job Openings */
#job-openings-section {
    padding: 95px 0;
    background: var(--brand-light);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--brand-border);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(239, 181, 6, 0.14);
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.job-location {
    color: var(--brand-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.job-card h3 {
    font-size: 1.35rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.job-card p {
    color: var(--brand-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.job-card-actions {
    margin-top: auto;
}

/* CTA */
#careers-cta {
    padding: 90px 0;
    background: var(--white);
}

.careers-cta-box {
    background: linear-gradient(135deg, #101010, #1d1d1d);
    color: var(--white);
    border-radius: 28px;
    padding: 42px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}

.careers-cta-box h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 12px;
}

.careers-cta-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 700px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(239, 181, 6, 0.2);
}

.primary-button:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .careers-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    #careers-hero {
        min-height: 65vh;
        padding: 120px 20px 60px;
    }

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

@media (max-width: 640px) {
    .careers-cta-box {
        padding: 30px 24px;
    }
}
