:root {
    --blue-900: #0f2f66;
    --blue-700: #1d5b9b;
    --blue-500: #1f8df2;
    --blue-soft: #c7d6ff;
    --green-600: #0c5b2d;
    --green-500: #0f7d3a;
    --text: #1e2a3b;
    --text-muted: #5b6475;
    --bg-page: #f5f8ff;
    --bg-card: #ffffff;
    --border: #dfe7f3;
}

/* GLOBAL ------------------------------------------------------------------*/

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

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-page);
    color: var(--text);
    line-height: 1.6;
}

body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'Baloo 2', 'Inter', sans-serif;
}

body.rtl .site-header,
body.rtl .nav-inner,
body.rtl .nav-top,
body.rtl .nav-menu,
body.rtl .nav-links,
body.rtl .nav-actions {
    direction: rtl;
}

body.rtl .nav-inner {
    flex-direction: row-reverse;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .nav-actions {
    flex-direction: row-reverse;
}

body.rtl .nav-menu {
    margin-left: 0;
    margin-right: 1.5rem;
}

body.rtl .nav-links a,
body.rtl .nav-actions a,
body.rtl .nav-actions .button {
    text-align: right;
}

body.rtl .container,
body.rtl .job-card,
body.rtl .steps-heading,
body.rtl .testimonial-heading {
    text-align: right;
}

body.rtl .jobs-header {
    flex-direction: row-reverse;
    gap: 1rem;
}

body.rtl .job-card {
    direction: rtl;
}

body.rtl .job-tags {
    justify-content: flex-end;
}

body.rtl .hero-ctas {
    align-items: flex-start;
}

body.rtl .testimonial-stats-row,
body.rtl .testimonial-rating {
    justify-content: flex-start;
}

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

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

main {
    background: #fff;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 2rem 0;
}

.container.narrow {
    width: min(900px, 92%);
}

.message,
.form-message {
    background: #eef4ff;
    border: 1px solid #c3d4ff;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    color: #1f2b45;
    margin: 0.5rem 0 1rem;
    display: none;
}

.message.show,
.form-message.show {
    display: block;
}

.message.error,
.form-message.error {
    background: #fff2f2;
    border-color: #f4b3b3;
    color: #821a1a;
}

.message.success,
.form-message.success {
    background: #ecfee9;
    border-color: #b5f0b0;
    color: #135222;
}

/* HEADER ------------------------------------------------------------------*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(180deg, #fdfdff 0%, rgba(253, 253, 255, 0.9) 50%, rgba(253, 253, 255, 0.4) 100%);
    backdrop-filter: blur(6px);
}

.nav-shell {
    width: min(1200px, 94%);
    margin: 0 auto;
    padding: 0.75rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    background: #dbe5ff;
    border: 1.5px solid rgba(28, 75, 168, 0.18);
    box-shadow: 0 14px 40px rgba(12, 40, 100, 0.15);
}

.nav-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #cfdcfe;
    padding: 0.35rem;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: 'Baloo 2', cursive;
}

.brand-title {
    color: #1c4ba8;
    font-weight: 600;
    font-size: 1.05rem;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #4c5b78;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-weight: 600;
    font-size: 0.96rem;
    color: #0f2237;
}

.nav-links a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #214fbe;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.nav-actions .language-selector {
    flex-shrink: 0;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.9rem;
    margin-left: 1.5rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(32, 79, 190, 0.25);
    background: #ffffff;
    color: #1b3fa8;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:focus-visible {
    outline: 2px solid #1d5b9b;
    outline-offset: 2px;
}

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: currentColor;
    display: block;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-line + .nav-toggle-line {
    margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.language-selector {
    position: relative;
}

.language-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    border: 2px solid #1d4fb3;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f2237;
    cursor: pointer;
    min-width: 140px;
    justify-content: center;
}

.language-flag {
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.language-chip svg {
    color: #1d4fb3;
    margin-left: 0.2rem;
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    background: #f9fbff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(20, 40, 90, 0.2);
    padding: 0.4rem;
    display: none;
    min-width: 170px;
    z-index: 10;
}

.language-menu.is-open {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2a44;
    cursor: pointer;
}

.language-option:hover {
    background: #eef3ff;
}

/* POST JOB ---------------------------------------------------------------*/

.post-job-page {
    background: #f5f8ff;
}

.post-hero {
    background: #f0f5ff;
    border-bottom: 1px solid rgba(18, 56, 120, 0.1);
}

.post-hero-inner {
    width: min(920px, 92%);
    margin: 0 auto;
    padding: 1.5rem 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.post-hero-inner p {
    margin: 0;
    color: #1c2d45;
    font-size: 1rem;
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: transparent;
    color: #1b3fa8;
    font-weight: 600;
    cursor: pointer;
}

.post-job {
    width: min(920px, 92%);
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.post-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-block {
    background: #fff;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 18px 50px rgba(10, 40, 105, 0.08);
    border: 1px solid rgba(23, 55, 120, 0.08);
}

.form-block h2 {
    font-family: 'Baloo 2', cursive;
    color: #1c3fab;
    margin: 0 0 0.8rem;
}

.job-details-block header {
    border-bottom: 1px solid #e4e8f4;
    padding-bottom: 0.4rem;
    margin-bottom: 0.6rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #1b2b3c;
}

.field small {
    color: #6b7589;
    font-size: 0.82rem;
}

.field input,
.field select,
.field textarea {
    border-radius: 18px;
    border: 1px solid #d6deef;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
}

.field textarea {
    resize: vertical;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    padding-right: 2.5rem;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid #46557c;
    border-bottom: 2px solid #46557c;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.inline-input {
    display: flex;
    gap: 0.6rem;
}

.inline-input select,
.small-select,
.inline-input input {
    flex: 1;
}

.small-select {
    max-width: 140px;
}

.verify-btn {
    border-radius: 999px;
    background: #0c5a1f;
    color: #fff;
    border: none;
    padding: 0 1.8rem;
    font-weight: 600;
    cursor: pointer;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.upload-area {
    border: 2px dashed #c8d4f2;
    border-radius: 22px;
    padding: 1.5rem;
    text-align: center;
    color: #4a5670;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #fbfcff;
}

.upload-area .upload-title {
    font-weight: 600;
    color: #0f2237;
}

.upload-icon {
    font-size: 2rem;
}

.upload-link {
    color: #1b3fa8;
    font-weight: 600;
}

.field-full {
    grid-column: 1 / -1;
}

.job-details-block .job-row {
    display: flex;
    gap: 2rem;
    border-top: 1px solid #e4e8f4;
    padding: 1.2rem 0;
}

.job-details-block .job-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.job-row-label {
    min-width: 220px;
}

.job-row-label span {
    display: block;
    font-family: 'Baloo 2', cursive;
    color: #1c3fab;
    font-size: 1.1rem;
}

.job-row-label small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7589;
    font-size: 0.82rem;
}

.job-row-control {
    flex: 1;
}

.job-row-control input,
.job-row-control select,
.job-row-control textarea {
    border-radius: 16px;
    border: 1px solid #d6deef;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    background: #fdfefe;
    width: 100%;
    box-shadow: inset 0 2px 6px rgba(12, 40, 80, 0.05);
}

.job-row-control input:focus,
.job-row-control select:focus,
.job-row-control textarea:focus {
    outline: none;
    border-color: #1b57c9;
    box-shadow: 0 0 0 2px rgba(27, 87, 201, 0.15);
}

.job-row-control textarea {
    min-height: 140px;
    resize: vertical;
}

.job-row-control textarea {
    min-height: 140px;
}

.pill-list,
.pill-select {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0;
}

.pill-select {
    margin-top: 0.4rem;
}

.pill-list li {
    list-style: none;
}

.pill-list span,
.pill-select .pill,
.pill-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #d5def4;
    background: #eff3ff;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pill-select .pill,
.pill-tag {
    border: 1px solid #d4dcf4;
    background: #f3f5fb;
    cursor: pointer;
}

.pill-tag {
    background: #1b57c9;
    border-color: #1b57c9;
    color: #fff;
}

.pill-tag::after {
    content: '×';
    font-size: 0.95em;
}

.pill-select .pill.active {
    background: #1b57c9;
    border-color: #1b57c9;
    color: #fff;
}

.counter {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #c5cfeb;
    background: #eef3ff;
    font-size: 1.3rem;
    font-weight: 600;
    color: #16377d;
    cursor: pointer;
}

.counter input {
    width: 70px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #d6deef;
    padding: 0.45rem 0.6rem;
}

.salary-row {
    display: grid;
    grid-template-columns: 120px 1fr 40px 1fr 130px;
    gap: 0.6rem;
    align-items: center;
}

.salary-sep {
    text-align: center;
    color: #5b6475;
}

.checkbox-list {
    display: flex;
    gap: 1rem;
}

.checkbox-list.single-option {
    gap: 0;
}

.checkbox-list label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.checkbox-list input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1b57c9;
}

.agreement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.agreement a {
    color: #1b3fa8;
}

.submitted-message {
    color: #1c4ba8;
    font-weight: 600;
    display: none;
    margin: 0.8rem 0 0;
}

.post-submit {
    margin-top: 0.8rem;
    align-self: flex-end;
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.post-submit::after {
    content: '\2197';
    font-size: 1rem;
}

.post-form.form-submitted .submitted-message {
    display: block;
}

.about-page {
    background: #f2f5ff;
}

.about-page main {
    background: transparent;
}

.about-hero {
    position: relative;
    height: 480px;
    background: url('../images/peoples-shaking-hands.png') center/cover no-repeat;
    border-radius: 0 0 56px 56px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(14, 40, 105, 0.35);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 26, 71, 0.8), rgba(0, 0, 0, 0.15));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    gap: 1rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.about-hero-overlay h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    margin: 0;
    line-height: 1.1;
}

.about-hero-overlay h1 span {
    color: #0d6c1c;
}

.about-hero-overlay p {
    max-width: 540px;
    margin: 0;
    font-size: 1.05rem;
}

.about-content {
    width: min(1000px, 92%);
    margin: 0 auto;
    padding: 3rem 0 5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-intro {
    padding: clamp(1.5rem, 4vw, 2.3rem) 0;
    text-align: left;
}

.about-intro h2 {
    font-family: 'Baloo 2', cursive;
    color: #1b3fa8;
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.about-intro p {
    color: #1c2538;
    margin: 0 0 1rem;
    font-size: 1.02rem;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.expertise-panel {
    display: flex;
    gap: 2.5rem;
    background: #fff;
    border-radius: 40px;
    padding: clamp(1.8rem, 4vw, 3rem);
    box-shadow: 0 18px 55px rgba(17, 39, 99, 0.08);
    align-items: flex-start;
}

.expertise-column {
    flex: 2;
}

.expertise-column h3 {
    font-family: 'Baloo 2', cursive;
    color: #1b3fa8;
    margin: 0 0 1.25rem;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

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

.expertise-list strong {
    font-size: 1.05rem;
    color: #0f1f35;
}

.check-list {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    color: #1b2538;
    font-size: 0.98rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    border: 2px solid #1c63d8;
    box-shadow: inset 0 0 0 2px #fff;
}

.check-list li::after {
    content: '✓';
    position: absolute;
    left: 0.17rem;
    top: 0.08rem;
    color: #1b63d6;
    font-size: 0.77rem;
    font-weight: 700;
}

.expertise-visual {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-visual img {
    max-width: 260px;
    width: 100%;
}

@media (max-width: 900px) {
    .about-hero {
        height: 420px;
        border-radius: 0 0 40px 40px;
    }

    .expertise-panel {
        flex-direction: column;
        text-align: left;
    }

    .expertise-visual {
        width: 100%;
    }
}

.contact-page {
    background: #f0f4ff;
}

.contact-page main {
    background: transparent;
}

.contact-hero {
    position: relative;
    min-height: 540px;
    background: url('../images/girl%20typing.png') center/cover no-repeat;
    border-radius: 0 0 60px 60px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.contact-hero-overlay {
    position: relative;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 21, 70, 0.92), rgba(9, 37, 110, 0.35));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: clamp(1.5rem, 4vw, 4rem);
    color: #fff;
    flex-wrap: wrap;
}

.contact-hero-content {
    flex: 1;
    min-width: 280px;
}

.contact-hero-content .hero-kicker {
    font-family: 'Baloo 2', cursive;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 0 0 0.5rem;
    color: #9fd5ff;
}

.contact-hero-content h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin: 0 0 1rem;
}

.contact-hero-content p {
    max-width: 520px;
    margin: 0 0 1.25rem;
}

.contact-hero .button.ghost {
    background: #1b3fa8;
    color: #fff;
    border-color: transparent;
}

.contact-hero .button.ghost:hover {
    background: #103faa;
    color: #fff;
}

.contact-card {
    flex: 0 0 360px;
    background: #fff;
    color: #0f1a32;
    border-radius: 32px;
    padding: 1.75rem;
    box-shadow: 0 25px 60px rgba(15, 33, 80, 0.4);
}

.contact-card-head h3 {
    font-family: 'Baloo 2', cursive;
    margin: 0 0 0.3rem;
    color: #103faa;
    text-transform: uppercase;
    font-size: 1.45rem;
}

.contact-card-head p {
    margin: 0 0 1.2rem;
    color: #4b5673;
    font-size: 0.92rem;
}

.contact-chip-group {
    display: flex;
    background: #f0f4ff;
    border-radius: 999px;
    padding: 0.2rem;
    margin-bottom: 1.2rem;
}

.contact-chip-group .chip {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #1b3fa8;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-chip-group .chip.active {
    background: #1b3fa8;
    color: #fff;
}

.contact-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.contact-form .field span {
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    border-radius: 16px;
    border: 1.5px solid #d6def2;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-faq {
    padding: 1rem 0 3rem;
}

.contact-faq .container.narrow {
    width: min(900px, 92%);
    text-align: center;
}

.contact-faq h2 {
    font-family: 'Baloo 2', cursive;
    color: #1b3fa8;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 0.2rem 1.2rem;
    border: 1.5px solid #dde4f6;
    box-shadow: 0 8px 24px rgba(15, 25, 60, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 0;
    cursor: pointer;
}

.faq-question strong {
    font-size: 1.02rem;
}

.faq-label {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    color: #1b3fa8;
}

.faq-icon {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border-right: 2px solid #0b2c63;
    border-bottom: 2px solid #0b2c63;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 0.8rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #3c4760;
    padding-right: 1rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(225deg);
}

.faq-more {
    margin-top: 1.5rem;
}

.contact-office {
    position: relative;
    margin: 3rem auto 4rem;
    width: min(1100px, 94%);
    border-radius: 48px;
    overflow: hidden;
    background: #f6f8ff;
    display: flex;
    align-items: stretch;
    box-shadow: 0 25px 70px rgba(12, 30, 80, 0.2);
}

.contact-office-media {
    flex: 1;
    background: url('../images/girl%20typing.png') center/cover no-repeat;
    min-height: 260px;
}

.contact-office-card {
    flex: 1;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #fff;
}

.contact-office-card h3 {
    font-family: 'Baloo 2', cursive;
    color: #1b3fa8;
    margin-top: 0;
}

.contact-office-card p {
    margin: 0 0 0.8rem;
}

.contact-office-row span {
    font-weight: 600;
    color: #0d2248;
}

.contact-office-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #0a5e1e;
    margin: 0.4rem 0 1rem;
}

.contact-office-note {
    background: #f1f6ff;
    border-radius: 18px;
    padding: 0.8rem 1rem;
    color: #335;
}

@media (max-width: 768px) {
    .contact-hero-overlay {
        flex-direction: column;
        border-radius: 0 0 40px 40px;
    }

    .contact-card {
        width: 100%;
    }

    .contact-office {
        flex-direction: column;
    }
}

.register-page {
    background: #eef3ff;
}

.register-page main {
    background: transparent;
}

.register-intro .container {
    padding-bottom: 0;
}

.register-kicker {
    color: #0f7721;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.register-form-wrap {
    width: min(1000px, 94%);
    margin: 0 auto 4rem;
}

.apply-hero {
    width: min(1100px, 94%);
    margin: 1rem auto 0;
}

.apply-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.apply-back {
    border: none;
    background: transparent;
    color: #0f2237;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.apply-job-info {
    background: #fff;
    border-radius: 30px;
    padding: 1.3rem 1.8rem;
    box-shadow: 0 18px 60px rgba(15, 40, 80, 0.08);
    flex: 1;
}

.apply-job-info h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-family: 'Baloo 2', cursive;
    color: #0f2237;
}

.apply-job-info .job-role {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: #0f7721;
}

.apply-job-info .job-company {
    margin: 0.3rem 0 0;
    color: #556077;
}

@media (max-width: 700px) {
    .apply-hero-inner {
        flex-direction: column;
    }

    .apply-back {
        order: 2;
    }
}

.register-form {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.register-block h2 {
    font-family: 'Baloo 2', cursive;
    margin: 0 0 1rem;
    color: #1b3fa8;
    font-size: 1.8rem;
}

.register-block h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #e5e9f4;
    margin-top: 0.8rem;
}

.register-block + .register-block {
    border-top: 1px solid #e5e9f4;
    padding-top: 1.8rem;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem 1.5rem;
}

.register-grid.uploads {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.register-grid.uploads .upload-area {
    min-height: 220px;
    justify-content: center;
}

.register-grid.uploads .upload-area.full {
    grid-column: 1 / -1;
}

.register-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.register-form .field span {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0d2248;
}

.register-form .field small {
    color: #7c8599;
    font-size: 0.8rem;
    margin-top: -0.2rem;
}

.register-form select,
.register-form input,
.register-form textarea {
    height: 48px;
    width: 100%;
    border: 1px solid #d6deef;
    border-radius: 18px;
    padding: 0.7rem 1rem;
    font-size: 0.96rem;
    background: #fff;
    color: #1b1f2b;
    box-shadow: inset 0 2px 4px rgba(15, 30, 60, 0.04);
}

.register-form textarea {
    min-height: 130px;
    resize: vertical;
    height: auto;
    line-height: 1.5;
}

.register-form ::placeholder {
    color: #98a2b5;
}

.register-form input[type="date"] {
    font-family: inherit;
    color: #0f2237;
}

.register-form select {
    appearance: none;
    -webkit-appearance: none;
}

.register-form .select-wrapper select {
    width: 100%;
    padding-right: 2.5rem;
}

.register-form .select-wrapper::after {
    border-color: #1c3fb0;
}

.register-form .pill-list {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    list-style: none;
}

.register-form .pill-select {
    flex-wrap: wrap;
    gap: 0.4rem;
}

.question-card {
    background: #e2ebff;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1.5px solid #c2d6ff;
}

.question-card header {
    display: flex;
    justify-content: space-between;
    font-family: 'Baloo 2', cursive;
    color: #1b3fa8;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid #bcd3ff;
    padding-bottom: 0.4rem;
    align-items: center;
}

.question-step {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #0f7721;
}

.question-step::before {
    content: attr(data-step);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #0f7721;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.question-range {
    color: #1b3fa8;
    font-size: 0.95rem;
}

.question-body {
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: inset 0 0 0 1px rgba(22, 60, 130, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.question-item p {
    margin: 0 0 0.4rem;
}

.question-item + .question-item {
    border-top: 1px solid #e5edff;
    padding-top: 1rem;
}

.register-form .checkbox-list label {
    font-weight: 500;
    color: #1f2937;
}

.checkbox-list.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    width: 100%;
}

.checkbox-list.inline.short {
    gap: 0.8rem 1.2rem;
}

.register-form .inline-input {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    width: 100%;
}

.register-form .inline-input .small-select {
    flex: 0 0 150px;
    min-width: 140px;
}

.register-form .inline-input input {
    flex: 1;
    min-width: 180px;
}

.register-form .inline-input button {
    flex: 0 0 auto;
}

.question-footer {
    text-align: right;
    margin-top: 0.8rem;
}

.register-form .apply-btn {
    align-self: flex-end;
    padding-inline: 2.6rem;
}

.submitted-message.show {
    display: block;
    color: #1546b0;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
}

.submitted-message.show::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.register-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.6px solid #1b3fa8;
    accent-color: #1b3fa8;
}

@media (max-width: 900px) {
    .register-form-wrap {
        width: min(96%, 720px);
        margin-bottom: 3rem;
    }

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

    .register-grid.uploads .upload-area {
        min-height: 180px;
    }

    .register-form .field {
        gap: 0.25rem;
    }

    .register-form .inline-input {
        flex-direction: column;
        align-items: stretch;
    }

    .register-form .inline-input .small-select,
    .register-form .inline-input input,
    .register-form .inline-input button {
        width: 100%;
        flex: 1;
    }

    .register-form .apply-btn {
        width: 100%;
        align-self: stretch;
    }
}

.register-form input[type="radio"] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #8b97b2;
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    cursor: pointer;
    background: #fff;
    position: relative;
}

.register-form input[type="radio"]:checked {
    border-color: #1b3fa8;
    background: #fff;
}

.register-form input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1b3fa8;
    transform: translate(-50%, -50%);
}

.register-form .agreement {
    align-items: flex-start;
}

.register-form .agreement input {
    margin-top: 0.2rem;
}

.register-form .agreement span {
    line-height: 1.4;
}

@media (max-width: 680px) {
    .question-card header {
        flex-direction: column;
        gap: 0.3rem;
    }

    .register-form .agreement {
        flex-direction: column;
        gap: 0.4rem;
    }

    .register-form .agreement input {
        margin-top: 0;
    }
}

.button {
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button.ghost {
    background: transparent;
    color: #0f2237;
    border-color: transparent;
}

.button.ghost:hover {
    color: #214fbe;
}

.button.register {
    background: #0c5a1f;
    color: #fff;
    padding-inline: 1.6rem;
    box-shadow: 0 8px 24px rgba(11, 70, 30, 0.35);
}

.button.register:hover {
    background: #094618;
    transform: translateY(-1px);
}

/* HERO --------------------------------------------------------------------*/

.hero-section {
    padding: 1.5rem 0 3.5rem;
}

.hero-card {
    position: relative;
    min-height: 430px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 36px 80px rgba(8, 40, 105, 0.35);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 25, 70, 0.85), rgba(10, 25, 70, 0.2));
}

.hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    padding: 2.5rem 3rem;
}

.hero-content {
    color: #fff;
    max-width: 60%;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    color: #d5e1ff;
    margin: 0 0 0.4rem;
}

.hero-content h1 {
    margin: 0 0 0.8rem;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.15;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
    margin: 0;
    font-size: 1rem;
    max-width: 450px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.hero-btn {
    border-radius: 999px;
    padding: 0.75rem 2.4rem;
    font-weight: 600;
    border: none;
    font-size: 1rem;
    min-width: 170px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-btn.primary {
    background: #0f7d3a;
    color: #fff;
    box-shadow: 0 16px 40px rgba(11, 99, 39, 0.6);
}

.hero-btn.secondary {
    background: #1d5b9b;
    color: #fff;
    box-shadow: 0 16px 40px rgba(11, 46, 105, 0.45);
}

.hero-btn:hover {
    transform: translateY(-2px);
    opacity: 0.98;
}

/* JOB LIST ----------------------------------------------------------------*/

.jobs-section {
    padding: 0 0 3.5rem;
    background: #ffffff;
}

.jobs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.jobs-header h2 {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    color: var(--blue-900);
    font-size: 1.6rem;
}

.jobs-header .jobs-count {
    color: var(--green-500);
    margin-left: 0.3rem;
}

.link-ghost {
    color: var(--green-500);
    font-weight: 600;
    font-size: 0.95rem;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dfe7f3;
    box-shadow: 0 18px 40px rgba(12, 60, 130, 0.08);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: stretch;
}

.job-main {
    display: flex;
    gap: 1.25rem;
    flex: 1;
}

.job-logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.job-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.job-content {
    flex: 1;
}

.job-title {
    margin: 0;
    color: var(--blue-700);
    font-size: 1.1rem;
}

.job-company {
    margin: 0.15rem 0 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.7rem;
}

.job-meta-item {
    font-size: 0.88rem;
}

.meta-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.meta-value {
    font-weight: 600;
    color: var(--blue-900);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #e9f0ff;
    color: var(--blue-700);
    font-weight: 600;
}

.job-actions {
    display: flex;
    align-items: center;
}

.apply-btn {
    border-radius: 999px;
    background: #0f7d3a;
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(11, 99, 39, 0.5);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.apply-btn:hover {
    background: #0b612d;
}

.jobs-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pager,
.page {
    border-radius: 999px;
    border: 1px solid #d4ddeb;
    background: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-700);
    cursor: pointer;
}

.pager:disabled {
    opacity: 0.5;
    cursor: default;
}

.page.active {
    background: var(--blue-700);
    color: #fff;
}

.page.dots {
    border-color: transparent;
    cursor: default;
}

/* GALLERY -----------------------------------------------------------------*/

.gallery-section {
    background: #ffffff;
    padding: 4.2rem 0 5rem;
}

.gallery-section .container {
    width: min(1320px, 94%);
}

.gallery-heading {
    text-align: center;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.4rem, 3.6vw, 3rem);
    color: var(--blue-700);
    margin: 0 0 3.2rem;
}

/* main row : one line of cards, lots of breathing room */
.gallery-row {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2.4rem;              /* nice spacing but controlled */
    margin: 0 auto;
    padding: 0 0 2.5rem;      /* no extra side padding, container handles it */
}

/* card size tuned so 6 cards + 5 gaps fit inside container */
.gallery-card {
    flex-shrink: 0;
    width: 180px;
    height: 340px;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 26px 60px rgba(7, 35, 92, 0.18);
}

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


/* subtle vertical offsets (no second row look) */
.card-1 { transform: translateY(10px); }
.card-2 { transform: translateY(40px); }
.card-3 { transform: translateY(0); }
.card-4 { transform: translateY(35px); }
.card-5 { transform: translateY(10px); }
.card-6 { transform: translateY(25px); }

.gallery-church {
    position: absolute;
    width: 170px;
    pointer-events: none;
    opacity: 0.98;
}

.gallery-church--left {
    left: 0;
    bottom: -6px;
}

.gallery-church--right {
    right: 0;
    top: -70px;
}


/* STEPS -------------------------------------------------------------------*/

.steps-section {
    background: #c6d7f5;
    padding: 3.8rem 0 4.2rem;
}

.steps-section .container {
    text-align: center;
}

.steps-heading {
    font-family: 'Baloo 2', cursive;
    font-size: 2.35rem;
    color: #1f3f74;
    margin: 0 0 2.6rem;
    letter-spacing: 0.02em;
}

.steps-heading span {
    color: #1d7a39;
    font-size: 2.45rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 3rem;
    max-width: 930px;
    margin: 0 auto;
    text-align: left;
}

.step-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.step-card h3 {
    margin: 0 0 0.65rem;
    color: #101727;
    font-size: 1.3rem;
    font-family: 'Baloo 2', cursive;
}

.step-card p {
    margin: 0;
    font-size: 1rem;
    color: #152540;
    line-height: 1.7;
    max-width: 420px;
}

/* TESTIMONIAL ------------------------------------------------------------*/

.testimonial-section {
    background: #ffffff;
    padding: 4.2rem 0 4.6rem;
    text-align: center;
}

.testimonial-heading {
    font-family: 'Baloo 2', cursive;
    font-size: 2.45rem;
    color: #1a4ea9;
    margin: 0 0 0.8rem;
    line-height: 1.3;
}

.testimonial-subheading {
    margin: 0 0 2.8rem;
    color: #1d2535;
    font-size: 1.02rem;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: center;
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-copy {
    max-width: 560px;
}

.testimonial-name {
    font-weight: 600;
    color: #1848a5;
    margin: 0 0 0.7rem;
    font-size: 1.18rem;
}

.testimonial-text {
    margin: 0;
    color: #1f2535;
    font-size: 1rem;
    line-height: 1.85;
}

.testimonial-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 1.8rem;
}

.testimonial-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #1c45a3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.testimonial-nav svg {
    width: 22px;
    height: 22px;
}

.testimonial-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(13, 39, 110, 0.35);
}

.testimonial-highlight {
    font-family: 'Baloo 2', cursive;
    color: #0a5214;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.05;
}

.testimonial-highlight .highlight-value {
    font-size: 2rem;
}

.testimonial-highlight .highlight-label {
    font-size: 1.15rem;
    color: #0f1e3a;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.rating-stars {
    display: inline-flex;
    gap: 0.35rem;
}

.star-icon {
    width: 22px;
    height: 22px;
    fill: #1c4cd0;
}

.rating-value {
    font-weight: 600;
    color: #1c2536;
}

.testimonial-visual {
    display: flex;
    justify-content: center;
}

/* testimonial image card */
.testimonial-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #0052b8;    /* blue rounded rectangle */
    max-width: 260px;
    box-shadow: 0 20px 50px rgba(18, 52, 120, 0.25);
    padding: 0;
}

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

.testimonial-card img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
/* left-align row instead of centering */
.testimonial-stats-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* was center */
    gap: 1.4rem;
    margin-top: 1.8rem;
}

/* make label sit to the right of the number */
.testimonial-highlight {
    font-family: 'Baloo 2', cursive;
    color: #0a5214;
    display: flex;
    flex-direction: row;          /* was column */
    align-items: baseline;
    gap: 0.4rem;
    line-height: 1.1;
}

.testimonial-highlight .highlight-value {
    font-size: 2rem;
    color: #0c5b2d;               /* green */
}

.testimonial-highlight .highlight-label {
    font-size: 1.05rem;
    color: #000;
}
.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* was center */
    gap: 1rem;
    margin-top: 1.2rem;
}

/* NEWSLETTER -------------------------------------------------------------*/

.newsletter-section {
    background: #cbdcfa;
    padding: 3.2rem 0 2.4rem;
}

.newsletter-inner {
    width: min(920px, 94%);
    margin: 0 auto;
    background: #fff;
    border-radius: 26px;
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    box-shadow: 0 20px 50px rgba(40, 66, 130, 0.15);
}

.newsletter-copy h3 {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    font-size: 1.55rem;
    color: #1a45a5;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
    background: #f8faff;
    border-radius: 999px;
    border: 3px solid #eef2ff;
    padding: 0.25rem;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-btn {
    border: none;
    border-radius: 999px;
    background: #0b45aa;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.8rem 1.9rem;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.4), 0 12px 25px rgba(11, 69, 170, 0.3);
    cursor: pointer;
}

.newsletter-feedback {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #1c2f55;
}

.newsletter-feedback.error {
    color: #c52a2a;
}

.newsletter-feedback.success {
    color: #0a7f38;
}

/* FOOTER ------------------------------------------------------------------*/

.site-footer {
    background: #cbdcfa;
    padding: 2.6rem 0 0;
    font-size: 0.92rem;
}


.footer-inner {
    width: min(1050px, 94%);
    margin: 0 auto;
    text-align: left;
    border-bottom: 1px solid rgba(15, 56, 120, 0.25);
    padding-bottom: 1.6rem;
}

.footer-logo {
    width: 90px;
    margin-bottom: 0.4rem;
}

.footer-wordmark {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: #1c4ba8;
    display: inline-block;
}

.footer-wordmark span {
    color: #0f7d3a;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2.8rem 4rem;
    margin-bottom: 2.6rem;
    align-items: start;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 100%;
    max-width: 240px;
}

@media (min-width: 1100px) {
    .footer-columns {
        grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(150px, 1fr));
    }
}

.footer-col h4 {
    margin: 0 0 0.7rem;
    font-size: 1rem;
    color: #1c4ba8;
}

.footer-col a {
    display: block;
    color: #111931;
    margin-bottom: 0.45rem;
    font-size: 0.93rem;
}

.footer-bottom {
    margin: 0;
    padding-top: 1.4rem;
    text-align: center;
    color: #111931;
    font-size: 0.85rem;
}

/* RESPONSIVE -------------------------------------------------------------*/

@media (max-width: 1100px) {
    .hero-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .gallery-row {
        flex-wrap: wrap;
    }

    .testimonial-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-visual {
        width: 100%;
        justify-content: flex-start;
    }

    .register-form-wrap,
    .post-job,
    .apply-hero,
    .contact-hero-overlay,
    .post-hero-inner {
        width: min(95%, 860px);
    }

    .contact-card {
        width: 100%;
    }
}

@media (max-width: 980px) {
    body.rtl .nav-inner {
        flex-direction: column;
        align-items: stretch;
    }

    body.rtl .nav-top {
        flex-direction: row;
    }

    body.rtl .nav-menu {
        margin-right: 0;
        align-items: flex-end;
        text-align: right;
    }

    body.rtl .nav-links {
        flex-direction: column;
        align-items: flex-end;
    }

    body.rtl .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-inner {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        padding: 0.9rem 1.2rem;
        border-radius: 28px;
        background: #ffffff;
        border: 1.5px solid rgba(28, 75, 168, 0.1);
    }

    .nav-top {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1.4rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        border-top: 1px solid rgba(16, 50, 120, 0.12);
        margin-top: 0.2rem;
        padding: 0;
        background: #f7f9ff;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(15, 35, 90, 0.15);
        transition: max-height 0.32s ease, opacity 0.2s ease, padding 0.2s ease;
        margin-left: 0;
    }

    .nav-menu.is-open {
        max-height: 640px;
        opacity: 1;
        pointer-events: auto;
        padding: 1rem 1.2rem 1.4rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
    }

    .nav-actions .language-selector,
    .nav-actions .button,
    .nav-actions .language-chip {
        width: 100%;
        justify-content: center;
    }

    .language-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #e0e7ff;
        margin-top: 0.25rem;
    }

    .post-form {
        gap: 1.2rem;
    }

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

    .salary-row {
        grid-template-columns: 1fr 1fr 40px 1fr 1fr;
    }

    .checkbox-list {
        flex-direction: column;
    }

    .gallery-row {
        flex-wrap: wrap;
        padding-bottom: 0;
        gap: 1.2rem;
    }

    .gallery-card {
        flex: 1 1 240px;
        max-width: 280px;
        min-width: 200px;
        height: 320px;
        transform: none !important;
    }

    .gallery-church {
        display: none;
    }

    .hero-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: row;
        align-items: center;
    }

    .testimonial-layout {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2.4rem;
    }

    .testimonial-visual {
        justify-content: flex-start;
    }

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

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

    .footer-brand-col {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 720px) {
    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .language-chip {
        width: 100%;
        justify-content: center;
    }

    .hero-body {
        padding: 2rem 1.6rem;
    }

    .jobs-section .container,
    .hero-section .container,
    .gallery-section .container,
    .steps-section .container,
    .testimonial-section .container,
    .newsletter-section .container,
    .site-footer .container {
        width: 94%;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .jobs-pagination {
        justify-content: center;
    }

    .testimonial-layout {
        text-align: center;
    }

    .testimonial-copy {
        margin: 0 auto;
    }

    .testimonial-stats-row,
    .testimonial-rating {
        justify-content: center;
    }

    .testimonial-visual {
        justify-content: center;
    }

    .gallery-row {
        flex-wrap: wrap;
        gap: 1.2rem;
        padding-bottom: 0;
    }

    .gallery-card {
        flex: 1 1 45%;
        height: 300px;
        transform: none !important;
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.8rem;
    }

    .newsletter-form input {
        width: 100%;
        border-radius: 18px;
        border: 1.5px solid #cfd9f6;
        background: #f7f9ff;
        padding: 0.85rem 1rem;
    }

    .newsletter-btn {
        width: 100%;
        border-radius: 18px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand-col {
        grid-column: auto;
        align-items: center;
        text-align: center;
    }

    .post-hero-inner,
    .post-job {
        width: 94%;
    }

    .form-block {
        padding: 1.2rem 1.4rem;
    }
}

@media (max-width: 640px) {
    .register-block h2,
    .form-block h2 {
        font-size: 1.5rem;
    }

    .inline-input {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .inline-input select,
    .inline-input input,
    .inline-input button {
        width: 100%;
    }

    .question-card header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .apply-job-info,
    .register-form-wrap,
    .post-job {
        width: 94%;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 540px) {
    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .jobs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .job-meta-row {
        flex-direction: column;
        gap: 0.35rem;
    }

    .gallery-card {
        min-width: 160px;
        height: 240px;
    }

    .steps-heading {
        font-size: 1.7rem;
    }

    .testimonial-heading {
        font-size: 2rem;
    }

    .testimonial-stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-inner {
        padding: 1.3rem;
        gap: 1rem;
    }

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

    .footer-columns {
        gap: 1.6rem;
    }

    .post-hero-inner {
        padding: 1rem 0 1.2rem;
    }

    .pill-select,
    .pill-list {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .job-details-block .job-row {
        flex-direction: column;
        gap: 0.9rem;
    }

    .job-row-label {
        min-width: auto;
    }
}
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    padding-right: 2.5rem;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid #42537a;
    border-bottom: 2px solid #42537a;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.pill-tag {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: none;
    background: #1b57c9;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 720px) {
    .register-form {
        gap: 1.4rem;
    }

    .register-grid,
    .register-grid.uploads {
        gap: 1rem;
    }

    .register-form .pill-select,
    .register-form .pill-list,
    .checkbox-list.inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkbox-list.inline label {
        width: 100%;
    }

    .question-card {
        padding: 1.2rem;
    }

    .question-body {
        padding: 0.8rem;
    }
}
