/* ── FIXES ───────────────────────────────────────────────────── */

/* 1. Top bar */
.topbar { display: block; }   /* or flex, depending on how .topbar__inner is laid out */

/* 2. Container — consistent left-aligned padding */
.container {
    max-width: 1400px;
    padding: 0 5rem;
    margin: 0 auto;
}

.topbar-socials { display: inline-flex; align-items: center; gap: 12px; margin-left: 16px; }
.topbar-socials a { color: currentColor; display: inline-flex; opacity: .85; transition: opacity .2s, transform .2s, color .2s; }
.topbar-socials a:hover { opacity: 1; color: var(--orange); transform: translateY(-1px); }

/* 3. Header */
.header__inner {
    max-width: 1400px;
    padding: 0 5rem;
    margin: 0 auto;
}

/* 4. Hero content */
.hero__content {
    max-width: 1400px;
    padding: 5rem 5rem 2rem;
    margin: 0 auto;
}
.hero__title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    max-width: 820px;
}
.hero__subtitle { max-width: 520px; }

/* 5. Search bar — flush left with hero content, no gap */
.hero__search {
    padding: 1rem 0;
}
.hero__search .container {
    max-width: 1400px;
    padding: 0 5rem;
    margin: 0 auto;
    display: block;
}
.search-bar {
    max-width: 860px;
    margin: 0;
}

@media (max-width: 1200px) {
    .container,
    .header__inner,
    .hero__content,
    .hero__search .container { padding-left: 3rem; padding-right: 3rem; }
}

@media (max-width: 1024px) {
    .container,
    .header__inner,
    .hero__content,
    .hero__search .container { padding-left: 2rem; padding-right: 2rem; }

    /* About: tighter gap, shorter image, drop the accent frame */
    .about__inner { gap: 2.5rem; }
    .about__image-wrap img { min-height: 340px; }
    .about__image::before { display: none; }
    .about__content p { max-width: 100%; }

    /* Centred hero from tablets down — the desktop max-widths strangle
       the text once the viewport narrows, so release them here. */
    .hero__content {
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
    .hero__title {
        font-size: clamp(2rem, 5.5vw, 3.2rem);
        max-width: 100%;
        line-height: 1.2;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__subtitle {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
    .hero__actions { justify-content: center; }
    .search-bar { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .container,
    .header__inner,
    .hero__content,
    .hero__search .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .hero__content {
        padding-top: 3rem;
        padding-bottom: 1.5rem;
    }
    .hero__title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        line-height: 1.25;
        max-width: 100%;
        white-space: normal;
        word-break: normal;
    }
    .hero__subtitle {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.65;
    }
    .hero__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .hero__actions .btn { flex: 1; min-width: 140px; justify-content: center; font-size: 0.85rem; padding: 0.65rem 1rem; }    .search-bar { flex-direction: column; }
    .search-bar__input,
    .search-bar__select,
    .search-bar__btn { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
    .container,
    .header__inner,
    .hero__content,
    .hero__search .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero__title { font-size: clamp(1.55rem, 7.5vw, 2rem); }
    .hero__subtitle { font-size: 0.9rem; }
    /* Stack the hero buttons rather than cramming two per row */
    .hero__actions .btn { flex: 1 1 100%; }
}

/* ── Top Bar ─────────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: var(--silver);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.topbar__contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.topbar__contact a {
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}
.topbar__contact a:hover { color: var(--orange); }
.topbar__hours {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--silver);
}
@media (max-width: 768px) { .topbar { display: none; } }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(27,45,107,0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(27,45,107,0.15);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 72px;
}

/* ── Logo ── */
.site-logo { display: flex; align-items: center; text-decoration: none; }

/* Custom logo (Customizer image) — override WP's inline 612×408 dimensions */
.custom-logo-link { display: inline-flex !important; align-items: center; }
.custom-logo,
.custom-logo-link img {
    max-height: 112px !important;
    width: auto !important;
    height: auto !important;
    display: block;
}

/* Text logo fallback (shown only when no image logo is set) */
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text__muto {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
}
.logo-text__consults {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
}

/* Nav */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.main-nav__list li a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav__list li a:hover,
.main-nav__list li.active a {
    color: var(--orange);
    background: rgba(240,90,34,0.06);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--silver-light);
    padding: 1rem 0 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu__list { padding: 0 1.5rem; }
.mobile-menu__list li a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 1px solid var(--silver-light);
    transition: var(--transition);
}
.mobile-menu__list li a:hover { color: var(--orange); }

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .header__cta { display: none; }
    .nav-toggle { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27,45,107,0.85) 0%,
        rgba(27,45,107,0.65) 60%,
        rgba(240,90,34,0.3) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 1;
    padding: 6rem 0 3rem;
    color: var(--white);
}
.hero__title {
    color: var(--white);
    margin: 0.75rem 0 1.25rem;
    line-height: 1.15;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Hero Search */
.hero__search {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1.25rem 0;
}
.search-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.search-bar__input {
    flex: 2;
    min-width: 220px;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.95);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    color: var(--black);
}
.search-bar__input:focus { border-color: var(--orange); }
.search-bar__select {
    flex: 1;
    min-width: 160px;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.95);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gray);
    outline: none;
    cursor: pointer;
}
.search-bar__btn { white-space: nowrap; }

@media (max-width: 768px) {
    .hero { min-height: 100vh; }
    /* top/bottom only — a four-value shorthand here would wipe out the
       side padding set in the media queries above */
    .hero__content { padding-top: 3rem; padding-bottom: 1.5rem; }
    .search-bar { flex-direction: column; }
    .search-bar__input,
    .search-bar__select { width: 100%; min-width: unset; }
}

/* ── Statistics ──────────────────────────────────────────────── */
.stats { padding: 3rem 0; }
.stats__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    min-width: 120px;
}
.stat-item__number {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-item__label {
    font-size: 0.85rem;
    color: var(--silver);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ── About ───────────────────────────────────────────────────── */
/* Text column and image share a centre line, with room to breathe */
.about__inner {
    align-items: center;
    gap: 4rem;
}
.about__content h2 { margin-bottom: 1.25rem; }
.about__content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
    max-width: 56ch;   /* comfortable reading measure */
}

.about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27, 45, 107, 0.18);
    transition: var(--transition);
}
.about__image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px rgba(27, 45, 107, 0.24);
}
/* Orange accent frame peeking out behind the photo */
.about__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    pointer-events: none;
}
.about__image {
    position: relative;
}
.about__image::before {
    content: '';
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
    width: 55%;
    height: 55%;
    border: 3px solid var(--orange);
    border-radius: var(--radius-lg);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}
.about__image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.about__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.about__badge-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.about__badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}
.about__mission-vision {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}
.mv-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--silver-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
}
.mv-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv-card h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.mv-card p  { margin: 0; font-size: 0.9rem; }

/* ── Service Cards ───────────────────────────────────────────── */
.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(240,90,34,0.1);
    color: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--orange);
    color: var(--white);
}
.service-card__title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.service-card__desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    flex: 1;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
}
.service-card__link:hover { color: var(--navy); gap: 0.6rem; }
.service-card {
    display: flex;
    flex-direction: column;
}

/* ── Featured Jobs on Homepage ───────────────────────────────── */
.featured-jobs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .featured-jobs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .featured-jobs__grid { grid-template-columns: 1fr; }
}

/* Job Card */
.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}
.job-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
}
.job-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(240,90,34,0.2);
}
.job-card:hover::before { transform: scaleX(1); }
.job-card__company {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.job-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}
.job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.job-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--gray);
}
.job-card__meta-item svg { color: var(--orange); flex-shrink: 0; }
.job-card__salary {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}
.job-card__deadline {
    font-size: 0.8rem;
    color: #e53e3e;
    font-weight: 600;
}
.job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--silver-light);
}
.job-card--featured::after {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 2.5rem;
    transform: rotate(35deg);
    letter-spacing: 0.05em;
}

/* Loading spinner */
.jobs-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    color: var(--gray);
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--silver-light);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Why Us Cards ────────────────────────────────────────────── */
.why-card { text-align: center; }
.why-card__icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.why-card__title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--navy);
}
.why-card__desc { font-size: 0.875rem; color: var(--gray); margin: 0; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner { background: var(--navy); }

/* ── Contact Strip ───────────────────────────────────────────── */
.contact-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.contact-strip__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-strip__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(240,90,34,0.1);
    color: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-strip__item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-strip__item p  { font-size: 0.875rem; margin: 0; line-height: 1.6; }
.contact-strip__item a  { color: var(--gray); }
.contact-strip__item a:hover { color: var(--orange); }
@media (max-width: 1024px) { .contact-strip__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .contact-strip__grid { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: var(--silver); }
.footer-top { padding: 4rem 0 3rem; }
.footer-top__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline {
    margin: 1rem 0 0.5rem;
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.6;
}
.footer-est { font-size: 0.8rem; color: rgba(200,205,214,0.7); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    color: var(--silver);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col__title {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: var(--silver);
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a::before {
    content: '›';
    color: var(--orange);
    font-size: 1.1rem;
    line-height: 1;
}
.footer-links a:hover { color: var(--orange); padding-left: 0.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--silver);
}
.footer-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--silver); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(200,205,214,0.7);
}
.footer-bottom a { color: rgba(200,205,214,0.7); }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 1024px) {
    .footer-top__inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
    .footer-top__inner { grid-template-columns: 1fr; }
    .footer-bottom__inner { flex-direction: column; text-align: center; }
}

/* ── Jobs Page ───────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a9e 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240,90,34,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p  { color: var(--silver); font-size: 1.05rem; }

.jobs-filters {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin: -1.5rem 0 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}
.jobs-filters .form-group { margin: 0; flex: 1; min-width: 160px; }
.jobs-filters .form-group label { font-size: 0.8rem; }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .jobs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .jobs-grid { grid-template-columns: 1fr; } }

.jobs-count {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.jobs-count span { color: var(--orange); font-weight: 700; }

/* Pagination */
.jobs-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--silver);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-btn:hover,
.pagination-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ── Career Services Page ────────────────────────────────────── */
.career-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .career-services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .career-services-grid { grid-template-columns: 1fr; } }

.career-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    border-top: 4px solid var(--orange);
}
.career-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.career-card__price {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
}
.career-card__price span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.career-card__free { color: var(--orange); }

/* ── Forms Page ──────────────────────────────────────────────── */
.forms-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--silver-light);
    flex-wrap: wrap;
}
.forms-tab {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: var(--transition);
}
.forms-tab:hover { color: var(--orange); }
.forms-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}
.forms-panel { display: none; }
.forms-panel.active { display: block; }

/* File upload */
.file-upload-area {
    border: 2px dashed var(--silver);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-light);
}
.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--orange);
    background: rgba(240,90,34,0.03);
}
.file-upload-area input[type="file"] { display: none; }
.file-upload-area p { margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--gray); }

/* Form success / error */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: none;
}
.form-message.success {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
    border: 1px solid rgba(34,197,94,0.3);
    display: block;
}
.form-message.error {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.3);
    display: block;
}

/* ── Job Detail Page ─────────────────────────────────────────── */
.job-detail {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
.job-detail__sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
    border-top: 4px solid var(--orange);
}
.job-detail__meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.25rem 0;
}
.job-detail__meta-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
}
.job-detail__meta-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.job-detail__meta-item strong { display: block; font-size: 0.78rem; color: var(--gray); margin-bottom: 0.1rem; }
.job-detail__content h2 { font-size: 1.1rem; margin: 1.75rem 0 0.75rem; }
.job-detail__content ul { padding-left: 1.25rem; }
.job-detail__content ul li { margin-bottom: 0.4rem; font-size: 0.95rem; list-style: disc; }
@media (max-width: 768px) {
    .job-detail { grid-template-columns: 1fr; }
    .job-detail__sidebar { position: static; }
}

/* ── Utility animations ──────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--silver-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── reCAPTCHA ───────────────────────────────────────────────── */
/* Badge hidden (it collides with the tawk.to widget) — Google
   permits this ONLY when the attribution text below is shown
   near each protected form. Do not remove .recaptcha-notice. */
.grecaptcha-badge { visibility: hidden; }

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.75rem;
    line-height: 1.5;
}
.recaptcha-notice a { color: var(--gray); text-decoration: underline; }
.recaptcha-notice a:hover { color: var(--orange); }