:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-soft: #f5f8fb;
    --color-primary: #4a7d1f;          /* green */
    --color-primary-soft: #e7f6df;
    --color-purple: #5b35ff;           /* hero CTAs / nav active */
    --color-purple-soft: #ebe7ff;
    --color-text: #111827;
    --color-text-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-footer-bg: #e9f8e8;

    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);

    --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --header-height: 80px;
}

/* RESET / BASE */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
}

body.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .main-nav {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rtl .footer-columns {
    text-align: right;
}

.rtl .footer-bottom-inner {
    justify-content: flex-start;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
}

.container {
    width: min(1160px, 100% - 3rem);
    margin-inline: auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.menu-toggle {
    display: none;
    border: 1px solid #d1d5db;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #111827;
    margin: 4px 0;
    border-radius: 999px;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
    display: flex;
    gap: 1.75rem;
    font-size: 0.95rem;
}

.nav-link {
    position: relative;
    padding-block: 0.25rem;
}

.nav-link.active {
    font-weight: 600;
    color: var(--color-purple);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--color-purple);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .header-inner {
        gap: 0.6rem;
        padding-block: 0.75rem;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-top: 1px solid #e5e7eb;
        background: #ffffff;
        margin-top: 0.35rem;
        box-shadow: 0 10px 28px rgba(0,0,0,0.08);
        border-radius: 12px;
        padding-inline: 0.75rem;
    }
    .main-nav.is-open {
        display: flex;
    }
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-self: center;
        margin-left: auto;
        z-index: 3;
    }
    .main-nav .header-actions {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
    }
    .logo {
        align-self: center;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 40px;
    }
    .site-header {
        position: sticky;
    }
    .main-nav {
        gap: 0.75rem;
        font-size: 0.95rem;
    }
    .header-actions {
        gap: 0.5rem;
    }
    .btn.btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.92rem;
    }
    .lang-switcher-select {
        width: 100%;
    }
}

.lang-switcher-select {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
}

.lang-switcher-select option {
    padding: 0.4rem;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

/* Global primary: green (Register, Subscribe) */
.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(74, 125, 31, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(74, 125, 31, 0.4);
}

.btn-ghost {
    background: #ffffff;
    border: 1px solid var(--color-purple);
    color: var(--color-purple);
}

.btn-ghost:hover {
    background: var(--color-purple-soft);
}

/* Hero overrides – purple CTA */
.hero .btn-primary {
    background: var(--color-purple);
    box-shadow: 0 12px 25px rgba(91, 53, 255, 0.35);
}

.hero .btn-primary:hover {
    box-shadow: 0 16px 35px rgba(91, 53, 255, 0.45);
}

/* Apply button */

.btn-apply {
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding-inline: 1.5rem;
    font-weight: 500;
}

.job-card.featured .btn-apply {
    background: var(--color-primary);
    color: #ffffff;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 40%,
            rgba(255, 255, 255, 0.35) 60%,
            rgba(255, 255, 255, 0) 80%),
        url("../images/Hero.jpg");
    background-size: cover;
    background-position: center right;
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    padding-block: 3.5rem;
    gap: 2.5rem;
    color: var(--color-text);
}

.hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    color: var(--color-purple);
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 3vw + 1.6rem, 3.4rem);
    line-height: 1.05;
    margin: 0 0 0.75rem;
    color: #355b19;
}

.hero-copy h1 span {
    color: var(--color-primary);
}

.hero-subtitle {
    margin-top: 0;
    margin-bottom: 1.6rem;
    max-width: 420px;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.7rem;
}

.hero-btn {
    min-width: 9.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fef9c3;
}

.stat-number {
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.hero-visual {
    /* image handled via background, keep column for layout spacing */
}

/* GENERIC SECTION STYLING */

.section {
    padding-block: 3.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.section-header h2 {
    margin: 0;
    font-size: 1.6rem;
}

.section-count {
    color: #16a34a;
    font-weight: 600;
    margin-left: 0.4rem;
}

.section-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-purple);
}

/* TRENDING JOBS */

.trending {
    background: #ffffff;
}

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

.job-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 1.2rem 1.3rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.job-card.featured {
    border-color: rgba(74,125,31,0.35);
    box-shadow: var(--shadow-soft);
}

.job-card:hover {
    border-color: rgba(148,163,184,0.9);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.job-card-header {
    display: flex;
    gap: 0.75rem;
}

.job-logo {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #6b7280;
}

.job-meta h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.job-meta .job-company {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    text-transform: lowercase;
    color: var(--color-text-muted);
}

.job-description {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.job-time {
    margin: 0;
    font-size: 0.75rem;
    color: #9ca3af;
}

.job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.job-pill {
    font-size: 0.76rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: #f3f4f6;
}

.job-footer {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-salary {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.job-salary-amount {
    font-weight: 600;
}

.job-salary-period {
    color: var(--color-text-muted);
}

/* PAGINATION */

.pagination {
    margin-top: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.page-arrow,
.page-number {
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #ffffff;
    font-size: 0.82rem;
    cursor: pointer;
}

.page-number.active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.page-ellipsis {
    padding-inline: 0.3rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.page-size {
    margin-left: 0.75rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--color-border);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* FIND YOUR NEXT JOB */

.find-job {
    position: relative;
}

.find-job-banner {
    background: #e9f8e8; /* light mint */
}

.find-job-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-block: 3rem;
}

.find-job-heading {
    flex: 0 0 32%;
}

.find-job-heading h2 {
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.05;
    color: #1d3a0e;
    font-weight: 700;
}

.find-job-heading h2 span {
    display: block;
    color: #1d3a0e;
}

.job-tags {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    justify-content: flex-start;
}

.tag {
    border-radius: 999px;
    border: 1.5px solid #4a7d1f;
    padding: 0.45rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #f9fff4;
    color: #355b19;
    cursor: default;
    white-space: nowrap;
}

.tag:hover {
    background: #eefbe1;
}

/* Decorative hammer/drill icons */

.steps-icon {
    position: absolute;
    opacity: 0.35;
    pointer-events: none;
}

.steps-icon-left {
    left: 6%;
    top: 58%;
    transform: translateY(-50%);
}

.steps-icon-right {
    right: 6%;
    top: 66%;
    transform: translateY(-50%);
}

.steps-icon img {
    max-width: 90px;
    height: auto;
}

/* STEPS */

.steps {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #ffffff;
}

.steps-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 2.4rem;
}

.steps-header h3 {
    margin: 0 0 0.6rem;
    font-size: 1.8rem;
}

.steps-header h3 span {
    color: var(--color-primary);
}

.steps-header p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    max-width: 780px;
    margin-inline: auto;
}

.step-card {
    flex: 1 1 0;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    padding: 1.7rem 1.9rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.step-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e2f8d8, #b7e48d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon-circle img {
    width: 22px;
    height: 22px;
}

.step-card h4 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
}

.step-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* responsive tweaks for this block */

@media (max-width: 960px) {
    .find-job-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.8rem;
    }

    .find-job-heading {
        flex: 1;
    }

    .job-tags {
        width: 100%;
    }

    .steps-grid {
        flex-direction: column;
    }

    .steps-icon {
        display: none; /* hide decorative icons on smaller screens */
    }
}

/* TESTIMONIALS */

.testimonials {
    padding-block: 3.8rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.testimonials-header span {
    color: var(--color-primary);
}

.testimonial-card {
    max-width: 720px;
    margin-inline: auto;
    padding: 2rem 2.2rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--color-text-muted);
    margin-bottom: 1.3rem;
}

.testimonial-name {
    margin: 0;
    font-weight: 600;
}

.testimonial-role {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.testimonial-avatars {
    margin-top: 1.6rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #e5e7eb;
    padding: 0;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease,
                box-shadow 0.15s ease, opacity 0.15s ease;
    opacity: 0.65;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar.is-active {
    transform: scale(1.15);
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(91, 53, 255, 0.25);
    opacity: 1;
}

/* CONTACT PAGE */

.contact-page {
    background: #ffffff;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 2.8rem 0 4.2rem;
    color: #1f2f12;
    background-image: url("../images/contactusimage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.68) 32%,
            rgba(255, 255, 255, 0.28) 58%,
            rgba(255, 255, 255, 0.04) 80%);
    z-index: -1;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.25));
}

.contact-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 2.6rem;
}

.contact-hero-copy h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(2.4rem, 3vw + 1.2rem, 3.2rem);
    color: #2f5f17;
}

.contact-hero-copy p {
    margin: 0 0 1.3rem;
    font-size: 1rem;
    max-width: 460px;
    font-weight: 500;
    color: #1f1f1f;
}

.contact-cta {
    padding-inline: 1.6rem;
    min-width: 160px;
}

.contact-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.9rem 1.7rem 1.6rem;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid #e8ebf0;
    max-width: 470px;
    width: 100%;
}

.contact-card-head {
    margin-bottom: 1.1rem;
}

.contact-card-title {
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-card-subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.contact-toggle {
    background: var(--color-primary-soft);
    padding: 0.2rem;
    border-radius: 999px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem;
}

.toggle-btn {
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #2c3c1c;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.toggle-btn.is-active {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(74, 125, 31, 0.32);
}

.contact-field label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
}

.contact-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #cde6c1;
    background: #eaf7e3;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-input::placeholder {
    color: #7ca06b;
}

.contact-input:focus {
    border-color: #7fbf53;
    box-shadow: 0 0 0 2px rgba(127, 191, 83, 0.2);
    background: #f2faec;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #1f2937;
}

.contact-checkbox input {
    margin-top: 0.2rem;
}

.contact-submit {
    width: 100%;
    background: var(--color-purple);
    color: #ffffff;
    font-weight: 600;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(91, 53, 255, 0.22);
}

.contact-submit:hover {
    box-shadow: 0 16px 32px rgba(91, 53, 255, 0.28);
    transform: translateY(-1px);
}

/* FAQ */

.faq-section {
    padding: 4.6rem 0 4.8rem;
}

.faq-title {
    text-align: center;
    margin: 0 0 2.6rem;
    font-size: 2.2rem;
    color: var(--color-primary);
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.9rem;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: none;
    border: none;
    padding: 0.65rem 0;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #7fbf53;
    border-radius: 10px;
    padding: 0.25rem 0.55rem;
    font-size: 0.95rem;
    color: #2c4217;
    min-width: 52px;
}

.faq-text {
    flex: 1;
}

.faq-chevron {
    font-size: 1.1rem;
    color: #111827;
    transition: transform 0.18s ease;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 0.2rem 3.45rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.faq-load-more {
    padding-inline: 1.8rem;
}

/* LOCATION */

.contact-location {
    position: relative;
    overflow: hidden;
    padding: 2.8rem 0 3.4rem;
    background: #ffffff;
    background-image: url("../images/contactusimage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-location::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.55) 45%,
            rgba(255, 255, 255, 0.2) 70%,
            rgba(255, 255, 255, 0) 88%);
    z-index: -2;
}

.contact-location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.28));
    z-index: -1;
}

.about-page {
    background: #ffffff;
}
/* ===========================
   ABOUT PAGE
   =========================== */

.about-page {
    background: #ffffff;
}

/* HERO */

.about-hero {
    position: relative;
    min-height: 640px;
    padding-top: 110px;          /* space for header */
    padding-bottom: 210px;       /* extra room for stats pill */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #ffffff;
    overflow: visible;
    z-index: 0;
}

/* Hero background: workers image + gradient overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.28) 32%,
            rgba(0, 0, 0, 0.14) 60%,
            rgba(0, 0, 0, 0.00) 100%),
        url("../images/aboutusimage.jpg") center right / cover no-repeat;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.42) 75%,
            rgba(0, 0, 0, 0.18) 100%);
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.about-hero-copy {
    max-width: 700px;
    padding-left: clamp(1.25rem, 8vw - 4rem, 3.5rem);
    transform: translateY(12px);
}

.about-hero-kicker {
    margin: 0;
    font-weight: 800;
    font-size: 60px;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--color-primary);
    line-height: 1;
}

.about-hero-title {
    margin: 6px 0 0;
    font-size: 66px;
    line-height: 1.05;
    color: var(--color-purple);
    font-weight: 800;
}

.about-hero-subtitle {
    margin-top: 22px;
    margin-bottom: 0;
    max-width: 520px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* Stats pill under the hero */

.about-hero-stats {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 2;
}

.about-hero-stats-inner {
    max-width: 780px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
    padding: 1.4rem 2.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    pointer-events: auto;
}

.about-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--color-primary-soft);
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 18px rgba(74, 125, 31, 0.25);
}

.about-stat-number {
    margin: 0;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-primary);
}

.about-stat-label {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ABOUT INTRO SECTION */

.about-intro {
    padding-top: 140px;  /* hero stats overlap */
    padding-bottom: 56px;
}

.about-intro-inner {
    max-width: 940px;
    margin: 0 auto;
    text-align: left;
}

.about-intro-title {
    margin: 0 0 1.4rem;
    font-size: 2.2rem;
    color: var(--color-primary);
}

.about-intro-body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
}

/* OUR EXPERTISE SECTION */

.about-expertise {
    padding-bottom: 80px;
}

.about-expertise-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.expertise-heading {
    margin: 0 0 1.4rem;
    font-size: 1.4rem;
}

.expertise-groups {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.expertise-group h4 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.expertise-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.97rem;
}

.expertise-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
    position: relative;
}

.check-icon::before {
    content: "✓";
    position: absolute;
    inset: -2px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--color-primary);
}

/* Logo side */

.about-expertise-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12rem;
}

.about-expertise-logo-inner {
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.about-expertise-logo-inner img {
    display: block;
    max-width: 220px;
    margin: 0 auto 0.6rem;
}

.about-expertise-logo-text {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 4.05rem;
    color: #a17a2f;
}

/* ===========================
   ABOUT PAGE – RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    .about-hero {
        min-height: 520px;
        padding-top: 110px;
        padding-bottom: 130px;
    }

    .about-hero-stats-inner {
        max-width: 90%;
        padding-inline: 1.8rem;
    }

    .about-expertise-inner {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        align-items: flex-end;
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .about-hero-inner {
        justify-content: center;
    }

    .about-hero-copy {
        text-align: center;
        align-items: center;
    }

    .about-hero-title {
        font-size: 2.4rem;
    }

    .about-hero-subtitle {
        max-width: none;
    }

    .about-hero-stats {
        bottom: -82px;
    }

    .about-hero-stats-inner {
        flex-direction: column;
        border-radius: 32px;
    }

    .about-stat {
        justify-content: center;
    }

    .about-intro {
        padding-top: 150px;
    }

    .about-expertise-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-expertise-logo {
        justify-content: flex-start;
    }

    .about-expertise-logo-inner {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-stats-inner {
        padding: 1.3rem 1.4rem;
    }

    .about-intro-inner {
        padding-inline: 1rem;
    }
}

.about-top {
    padding: 4.2rem 0 2.6rem;
}

.about-top-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    margin: 0 0 1rem;
    font-size: 2.4rem;
    color: var(--color-primary);
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1rem;
    line-height: 1.65;
}

.about-expertise {
    padding: 1rem 0 4rem;
}

.about-expertise-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: start;
}

.expertise-copy h3 {
    margin: 0 0 1.2rem;
    font-size: 1.15rem;
}

.expertise-list {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-list > li {
    margin-left: 0.4rem;
}

.expertise-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expertise-list strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1.5px solid #7fbf53;
    margin-right: 0.45rem;
    font-size: 0.75rem;
    color: #2c4217;
}

.checkmark::after {
    content: "✔";
}

.about-emblem {
    display: flex;
    justify-content: center;
}

.about-emblem-mark {
    width: min(360px, 100%);
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.about-emblem-img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .about-hero {
        align-items: flex-end;
        min-height: 460px;
    }
}

@media (max-width: 980px) {
    .about-expertise-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-emblem {
        justify-content: flex-start;
    }
}

.contact-location-inner {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.location-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem 1.6rem 1.5rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid #e8ebf0;
}

.location-card h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.location-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.95rem;
}

.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.location-icon-pin {
    background: #9a7bff;
}

.location-icon-phone {
    background: #9a7bff;
}

.location-icon-clock {
    background: var(--color-primary);
}

.location-line {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
    color: #1f2937;
}

.location-heading {
    margin: 0 0 0.35rem;
    font-weight: 700;
    color: var(--color-primary);
}

.location-block {
    margin-top: 0.4rem;
}

.location-note {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: #2f5f17;
    line-height: 1.5;
}

/* contact responsive */

@media (max-width: 1024px) {
    .contact-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .contact-card {
        max-width: 520px;
        justify-self: flex-start;
    }

    .contact-location-inner {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .contact-hero {
        padding: 2.2rem 0 3.4rem;
    }

    .contact-card {
        padding: 1.6rem 1.4rem 1.4rem;
    }

    .contact-toggle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-answer {
        padding-left: 0.5rem;
    }
}

/* NEWSLETTER / CTA ABOVE FOOTER (half overlaps footer) */

.newsletter {
    padding-block: 0;
    position: relative;
    z-index: 2;
}

.newsletter-banner {
    background: linear-gradient(135deg, #eef4fb, #e9f8e8);
    padding-top: 2.5rem;
    padding-bottom: 8rem; /* extra space so card can overlap footer */
    border-radius: 36px;
}

.newsletter-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 2.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    margin-bottom: -7rem; /* pull card down into footer */
    position: relative;
}

.newsletter-copy h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.15;
}

.newsletter-copy span {
    color: var(--color-primary);
}

/* input + button pill */

.newsletter-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    max-width: 520px;
    width: 100%;
    border-radius: 999px;
    padding: 0.2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 0 0 2px #f3f4f6;
}

.newsletter-form input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px 0 0 999px;
    background: transparent;
}

.newsletter-btn {
    border-radius: 999px;
    padding-inline: 2.2rem;
    height: 44px;
    font-size: 0.95rem;
    box-shadow: 0 0 0 3px #f9fafb; /* white rim around green button */
}

/* responsive newsletter */

@media (max-width: 960px) {
    .newsletter-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.8rem;
    }

    .newsletter-form {
        width: 100%;
        justify-content: flex-start;
    }

    .newsletter-input-group {
        max-width: none;
    }
}


/* FOOTER */

.site-footer {
    background: var(--color-footer-bg);
    padding-top: 6.5rem; /* allow for newsletter overlap */
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-logo-img {
    height: 72px;
    width: auto;
}

.footer-logo-text {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
    flex: 1;
}

.footer-col h5 {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-col a {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-text);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid #7fbf53; /* green line like Figma */
    padding-block: 0.9rem;
    font-size: 0.75rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
}

/* responsive footer columns */

@media (max-width: 960px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        align-items: flex-start;
    }
    .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 1.2rem;
    }
    .footer-bottom-inner {
        justify-content: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* RESPONSIVE */

@media (max-width: 960px) {
    .header-inner {
        gap: 1rem;
    }

    .main-nav {
        display: none; /* can be replaced later with a mobile menu */
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-block: 2.6rem;
    }

    .hero-visual {
        display: none;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-icon {
        display: none; /* hide decorative icons on small screens */
    }

    .find-job-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.8rem;
    }

    .find-job-heading {
        flex: 1;
    }

    .job-tags {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 2rem, 100%);
    }

    .hero {
        min-height: 0;
    }

    .jobs-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .newsletter-form input {
        min-width: 0;
        width: 100%;
    }

    .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* POST JOB PAGE – LAYOUT */

.post-job-main {
    background: #ffffff;
}

.register-main {
    background: #ffffff;
}

.post-job-container {
    padding-block: 2.2rem 4rem;
}

.register-container {
    padding-block: 2.2rem 4rem;
}

.register-intro {
    color: #5b35ff;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.4rem;
}

/* TOP BAR */

.post-job-top {
    margin-bottom: 1.4rem;
    border-bottom: 1px solid #e1e6dd;
    padding-bottom: 0.9rem;
}

.post-job-top-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.back-link {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--color-purple);
    color: var(--color-purple);
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
        transform 0.12s ease;
}

.back-link:hover {
    background: var(--color-purple-soft);
    box-shadow: 0 8px 18px rgba(91, 53, 255, 0.18);
    transform: translateY(-1px);
}

.post-job-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.post-job-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563; /* softer muted subtitle text */
}

/* SECTIONS */

.post-job-form {
    margin-top: 2rem;
}

.post-section {
    padding-top: 1.2rem;
    padding-bottom: 1.4rem;
    border-top: 1px solid #d9e4d2;
}

.post-section:first-of-type {
    border-top: none;
    padding-top: 0.5rem;
}

.post-section-title {
    margin: 0 0 1rem;
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 700;
}

.register-section {
    border-top: 1px solid #d9e4d2;
    padding-top: 1.2rem;
    padding-bottom: 1.4rem;
}

.register-section:first-of-type {
    border-top: none;
    padding-top: 0.4rem;
}

/* FIELD GRID */

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2.5rem;
    padding-block: 0.75rem 1rem;
    border-bottom: 1px solid #edf2e8;
}

.post-section .field-row:last-of-type {
    border-bottom: none;
}

.field-row-split {
    align-items: center;
}

.field {
    min-width: 0;
}

.post-job-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.required {
    color: #b91c1c;
    margin-left: 0.15rem;
}

.field-help {
    margin: 0.2rem 0 0.2rem;
    font-size: 0.86rem;
    color: #5a615a;
}

/* INPUTS */

.form-control {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #c8d6c1;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    color: var(--color-text);
    background: #ffffff;
    outline: none;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.form-control::placeholder {
    color: #9aa49b;
}

.form-control:focus {
    border-color: #6e9d4b;
    box-shadow: 0 0 0 1px rgba(110, 157, 75, 0.2);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41.58 0 2l6 6 6-6L10.59.58 6 5.17 1.41.58Z' fill='%23222'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 8px;
    padding-right: 2rem;
}

.textarea {
    resize: vertical;
    min-height: 130px;
}

/* INPUT GROUPS (TITLE, PHONE, VERIFY) */

.input-group {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c8d6c1;
    background: #ffffff;
}

.input-group select.form-control,
.input-group .form-control {
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.input-group select.form-control {
    min-width: 5.5rem;
    border-right: 1px solid #d4ddcc;
}

.no-border-left {
    border-left: none;
}

/* PHONE FIELD */

.phone-input {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #c8d6c1;
    overflow: hidden;
    background: #ffffff;
}

.phone-prefix {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.75rem;
    border-right: 1px solid #d4ddcc;
    font-size: 0.86rem;
    white-space: nowrap;
}

.phone-prefix .flag {
    font-size: 1.1rem;
}

.phone-input select.form-control.country-select {
    border: none;
    border-right: 1px solid #d4ddcc;
    border-radius: 0;
    height: 100%;
    min-width: 170px;
    max-width: 240px;
    padding-right: 2.2rem;
    background: #f7faf3;
    color: #1c2f0f;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41.58 6 5.17 10.59.58 12 2l-6 6-6-6L1.41.58Z' fill='%23222'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.country-select {
    min-width: 150px;
    max-width: 240px;
    border: none;
    border-right: 1px solid #d4ddcc;
    background: #f7faf3;
    height: 100%;
    padding-left: 0.75rem;
    padding-right: 2.2rem;
    border-radius: 0;
}

.phone-prefix .dial-code {
    color: #374151;
}

/* VERIFY INPUT */

.verify-input {
    display: flex;
    align-items: stretch;
    border-radius: 999px;
    background: #f3f6ff;
    padding: 0.2rem;
    gap: 0.4rem;
}

.verify-input-field {
    flex: 1;
    border-radius: 999px;
    border: none;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    background: transparent;
    min-width: 0;
}

.verify-input-field::placeholder {
    color: #9ca3af;
}

.verify-input-field:focus {
    outline: none;
}

.verify-btn {
    border-radius: 999px;
    padding-inline: 1.25rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #5b35ff, #7a5cff);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(91, 53, 255, 0.42);
}

.verify-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(91, 53, 255, 0.5);
}

/* DOCUMENTS / UPLOAD */

.documents-section {
    margin-top: 1.6rem;
}

.documents-title {
    margin: 0 0 1rem;
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 700;
}

.upload-box {
    border-radius: 18px;
    border: 1px dashed #cbd5e1;
    padding: 1.4rem 1.6rem;
    background: #f8fbf6;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease,
        transform 0.12s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.upload-box:hover {
    border-color: #a3b9ff;
    background: #f1f4ff;
    box-shadow: 0 14px 34px rgba(148, 163, 184, 0.35);
    transform: translateY(-1px);
}

.upload-icon {
    font-size: 1.6rem;
    margin-bottom: 0.15rem;
}

.upload-text {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.upload-link {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint {
    margin: 0;
    font-size: 0.78rem;
    color: #6b7280;
}

.upload-input {
    display: none;
}

/* CATEGORY TAGS */

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #4a7d1f;
    color: #ffffff;
    font-size: 0.82rem;
    box-shadow: 0 8px 16px rgba(74, 125, 31, 0.22);
}

.category-tag .remove {
    font-weight: 700;
    cursor: pointer;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 1rem;
}

.documents-grid .field {
    min-width: 0;
}

.documents-grid .field:nth-child(3) {
    grid-column: span 2;
}

/* NUMBER OF WORKERS COUNTER */

.counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #f3f7ee;
}

.counter-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #ffffff;
    color: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(148, 163, 184, 0.45);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.counter-btn:hover {
    transform: translateY(-1px);
    background: #f9fafb;
    box-shadow: 0 9px 18px rgba(148, 163, 184, 0.6);
}

.counter-value {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
}

/* EXPERIENCE CHIPS */

.experience-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-chip {
    border-radius: 999px;
    border: 1px solid #c8d6c1;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease,
        border-color 0.12s ease, transform 0.12s ease;
}

.experience-chip:hover {
    border-color: #4a7d1f;
    transform: translateY(-1px);
}

.experience-chip.is-active {
    background: #4a7d1f;
    color: #ffffff;
    border-color: #4a7d1f;
    box-shadow: 0 10px 20px rgba(74, 125, 31, 0.45);
}

/* SALARY */

.salary-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.salary-select {
    flex: 0 0 auto;
    min-width: 7rem;
}

.salary-input {
    flex: 0 0 7rem;
}

.salary-separator {
    font-size: 0.9rem;
    color: #4b5563;
}

/* EMPLOYMENT TYPE */

.employment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.employment-pill {
    border-radius: 999px;
    border: 1px solid #c8d6c1;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease,
        border-color 0.12s ease, transform 0.12s ease;
}

.employment-pill:hover {
    border-color: #4a7d1f;
    transform: translateY(-1px);
}

.employment-pill.is-active {
    background: #4a7d1f;
    color: #ffffff;
    border-color: #4a7d1f;
    box-shadow: 0 10px 20px rgba(74, 125, 31, 0.45);
}

/* TERMS CHECKBOX + MESSAGES */

.terms-row {
    border-bottom: none;
    padding-top: 1.4rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.17rem;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-success {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

.form-error {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #b91c1c;
}

/* ACTIONS */

.post-job-actions {
    margin-top: 1.4rem;
    display: flex;
    justify-content: flex-end;
}

.post-job-submit {
    padding-inline: 2.2rem;
    background: var(--color-purple);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(91, 53, 255, 0.32);
}

/* RESPONSIVE – POST JOB */

@media (max-width: 960px) {
    .field-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .post-job-container {
        padding-block: 1.8rem 3rem;
    }
}


/* JOB DETAIL PAGE */

.job-detail-page {
    background: #ffffff;
    padding-block: 3rem;
}

.back-to-jobs {
    margin-bottom: 2rem;
}

.job-details {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.job-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: #f9fafb;
}

.job-title-section h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: var(--color-text);
}

.job-company-large {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.job-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--color-surface-soft);
    font-size: 0.9rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h2 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    color: var(--color-primary);
}

.job-description-full,
.job-requirements {
    line-height: 1.7;
    color: var(--color-text);
}

.loading-message {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
}

/* APPLICATION SECTION */

.application-section {
    background: var(--color-surface-soft);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.application-section h2 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    color: var(--color-primary);
}

.application-intro {
    margin: 0 0 2rem;
    color: var(--color-text-muted);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.application-submit {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-meta-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .application-section {
        padding: 1.5rem;
    }

    .application-submit {
        width: 100%;
    }
}
