.page-hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 50vh;
}

.page-hero h1 {
    font-family: var(--font-primary);
    font-size: var(--h1-size);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-hero);
    text-transform: uppercase;
    color: var(--primary-maroon);
    margin-bottom: 8px;
    position: relative;
}

.page-hero .divider-line {
    width: 70px;
    height: 2px;
    background: var(--primary-brown);
    margin: 12px auto 16px;
}

.breadcrumb-custom {
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    font-family: var(--font-editorial);
}

.breadcrumb-custom a {
    color: var(--primary-maroon);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.section-heading {
    font-family: var(--font-primary);
    font-size: var(--h2-size);
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    letter-spacing: var(--ls-section);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.section-heading span {
    color: var(--primary-maroon);
}

.heading-underline {
    width: 50px;
    height: 2px;
    background: var(--primary-maroon);
    margin-bottom: 36px;
}

.why-section {
    padding: 64px 0 52px;
    background: var(--bg-white);
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    height: 100%;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}

.why-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary-maroon);
    border: 2px solid var(--border-dark);
}

.why-card h5 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.stats-strip {
    background: var(--primary-maroon);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    color: #fff;
    letter-spacing: 0.04em;
    display: block;
}

.stat-item .label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 60px;
    margin: auto;
}

.jobs-section {
    padding: 64px 0 24px;
}

.dept-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.dept-btn {
    padding: 7px 20px;
    border: 1.5px solid var(--border-dark);
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    transition: all 0.22s;
    font-family: var(--font-body);
}

.dept-btn:hover,
.dept-btn.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
}

.job-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 28px 28px 24px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
    transition:
        box-shadow 0.25s,
        border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-maroon);
    transform: scaleY(0);
    transition: transform 0.25s;
    transform-origin: bottom;
}

.job-card:hover {
    box-shadow: 0 8px 28px rgba(140, 29, 24, 0.12);
    border-color: var(--border-dark);
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-title {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.job-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.job-meta i {
    margin-right: 5px;
    color: var(--primary-brown);
}

.job-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.job-tag {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 12px;
    background: var(--bg-cream);
    color: var(--primary-brown);
    border: 1px solid var(--border-dark);
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.posted-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.btn-apply {
    display: inline-block;
    padding: 9px 24px;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--text-dark);
    transition: all 0.22s;
    font-family: var(--font-body);
    cursor: pointer;
}

.btn-apply:hover {
    background: transparent;
    color: var(--text-dark);
}

.btn-outline-apply {
    display: inline-block;
    padding: 9px 24px;
    background: transparent;
    color: var(--primary-brown);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--border-dark);
    transition: all 0.22s;
}

.btn-outline-apply:hover {
    border-color: var(--primary-maroon);
    color: var(--primary-maroon);
}

.no-positions {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg-white);
    border: 1px dashed var(--border-dark);
}

.no-positions i {
    font-size: 2.5rem;
    color: var(--border-dark);
    margin-bottom: 16px;
    display: block;
}

.no-positions p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.process-section {
    padding: 15px 0 60px;
    background: var(--bg-white);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 2px solid var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    color: var(--primary-maroon);
}

.process-step h6 {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 27px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: var(--border-dark);
    border-top: 2px dashed var(--border-dark);
}

.apply-section {
    padding: 60px 0 60px;
    background: var(--bg-light);
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    padding: 44px 40px;
}

.form-label-custom {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
    display: block;
}

.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--border-dark);
    border-radius: 0;
    padding: 11px 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 20px;
}

.form-control-custom:focus {
    border-color: var(--primary-maroon);
    background: #fff;
}

select.form-control-custom {
    appearance: none;
    cursor: pointer;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 110px;
}

.upload-area {
    border: 2px dashed var(--border-dark);
    padding: 28px 20px;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
    margin-bottom: 20px;
}

.upload-area:hover {
    border-color: var(--primary-maroon);
    background: var(--bg-cream);
}

.upload-area i {
    font-size: 1.8rem;
    color: var(--primary-brown);
    display: block;
    margin-bottom: 8px;
}

.upload-area p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.upload-area input[type="file"] {
    display: none;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: -12px;
    margin-bottom: 20px;
}

.culture-img-wrap {
    overflow: hidden;
    height: 340px;
}

.culture-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.culture-img-wrap:hover img {
    transform: scale(1.04);
}

.culture-text {
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    padding: 44px 40px;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.culture-text blockquote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--primary-maroon);
    line-height: 1.6;
    border-left: 3px solid var(--primary-maroon);
    padding-left: 20px;
    margin-bottom: 20px;
}

.culture-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991.98px) {
    .culture-text {
        height: auto;
    }

    .culture-img-wrap {
        height: 260px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .top-nav .nav-links {
        display: none;
    }

    .stat-divider {
        display: none;
    }

    .job-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

.section-heading-wrap {
    margin-bottom: 36px;
}

.section-heading-wrap .section-title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-section);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    color: #000;
    z-index: 1;
    padding-left: 20px;
    margin: 0;
}

.section-heading-wrap .section-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 104%;
    height: 27px;
    background: var(--bg-cream);
    z-index: -1;
}

.row {
    --bs-gutter-x: unset !important;
}
