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

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

.job-container {
    max-width: 1240px;
    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;
}

/* Hero without image */
#job-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 55%, #232323 100%);
    padding: 150px 20px 85px;
    position: relative;
    overflow: hidden;
}

#job-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(239, 181, 6, 0.08);
    border-radius: 50%;
    filter: blur(10px);
}

#job-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: rgba(239, 181, 6, 0.05);
    border-radius: 50%;
    filter: blur(8px);
}

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

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

.job-hero-subtext {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.job-meta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.job-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Main Layout */
#job-listing-main {
    padding: 90px 0;
    background: var(--brand-light);
}

.job-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
    gap: 32px;
    align-items: start;
}

.job-content-column,
.job-sidebar-column {
    display: grid;
    gap: 24px;
}

.job-content-card,
.job-sidebar-card {
    background: var(--white);
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.job-content-card h2,
.job-sidebar-card h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.job-content-card p,
.job-sidebar-card p {
    color: var(--brand-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.job-list {
    padding-left: 20px;
    margin: 0;
}

.job-list li {
    margin-bottom: 12px;
    color: var(--brand-text);
    line-height: 1.75;
}

/* Quick Info */
.job-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-border);
}

.job-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-info-label {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-muted);
    font-weight: 600;
}

.job-info-value {
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 600;
}

/* Form */
.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    margin-bottom: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.5;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: #fcfcfc;
    color: var(--brand-text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(239, 181, 6, 0.12);
    background: var(--white);
}

.form-group input[type="file"] {
    padding: 12px 14px;
    background: var(--white);
}

.form-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 999px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(239, 181, 6, 0.2);
}

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

.success-message {
    margin-top: 12px;
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(239, 181, 6, 0.12);
    border: 1px solid rgba(239, 181, 6, 0.25);
    text-align: center;
}

.success-message h3 {
    color: var(--brand-dark);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.success-message p {
    color: var(--brand-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .job-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #job-hero {
        padding: 130px 20px 65px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .job-content-card,
    .job-sidebar-card {
        padding: 26px 22px;
    }

    .job-content-card h2,
    .job-sidebar-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .job-meta-row {
        flex-direction: column;
        align-items: center;
    }
}
