/* Workforce Recruitment Solutions - HR Services Template (Poster-inspired) */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Dark theme – no red, no yellow */
    --hr-red: #3b82f6;
    --hr-red-dark: #1e3a5f;
    --hr-blue: #3b82f6;
    --hr-blue-dark: #1e3a5f;
    --hr-blue-mid: #60a5fa;
    --hr-orange: #60a5fa;
    --hr-orange-light: #93c5fd;
    --hr-yellow: #e8e8e8;
    --hr-green: #22c55e;
    --hr-white: #ffffff;
    --hr-bg: #1a1a1e;
    --hr-bg-surface: #242429;
    --hr-gray-50: #2a2a30;
    --hr-gray-100: #242429;
    --hr-gray-200: #3a3a42;
    --hr-gray-400: #94a3b8;
    --hr-gray-600: #64748b;
    --hr-text: #e8e8e8;
    --hr-text-muted: #a8a8a8;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-light: var(--hr-text-muted);
    --hr-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--hr-text);
    background: var(--hr-bg);
    overflow-x: hidden;
    transition: background-color 0.25s ease, color 0.25s ease;
}

img, picture, video { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

a, button { -webkit-tap-highlight-color: rgba(30, 58, 95, 0.12); tap-highlight-color: rgba(30, 58, 95, 0.12); }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--hr-blue);
    color: var(--hr-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--hr-yellow); outline-offset: 2px; }

/* Nav - HR */
.navbar--hr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--hr-bg-surface);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--hr-border);
    z-index: 1000;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
.navbar--hr .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}
.nav-brand--hr {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.nav-brand-link--hr {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--hr-text);
}
.nav-logo--hr {
    display: block;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.nav-brand-title--hr {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--hr-text);
}
.nav-brand--hr h1 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.nav-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--hr-white);
    background: var(--hr-blue);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    width: fit-content;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}
.nav-menu a {
    text-decoration: none;
    color: var(--hr-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--hr-red); }
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}
.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--hr-blue);
    transition: all 0.3s ease;
}

/* Hero - HR */
.hero--hr {
    margin-top: 88px;
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, var(--hr-blue) 0%, var(--hr-blue-dark) 100%);
    color: var(--hr-white);
    position: relative;
}
.hero--hr::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.06"/></svg>');
    pointer-events: none;
}
.hero-content--hr { position: relative; z-index: 1; text-align: center; }
.hero-title--hr {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.hero-icon-hello {
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.hero-subtitle--hr {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}
.text-accent { color: var(--hr-orange-light); }
.hero-desc {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 1.5rem;
}
.cta-button--hr {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--hr-red);
    color: var(--hr-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    margin: 0 0.5rem 0.5rem 0;
}
.cta-button--hr:hover { background: var(--hr-red-dark); transform: translateY(-2px); }
.cta-button--outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--hr-white);
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin: 0 0.5rem 0.5rem 0;
}
.cta-button--outline:hover { border-color: var(--hr-white); background: rgba(255,255,255,0.1); }

/* Section HR - Why Us / Services / Roles / Coverage */
.section-hr { padding: 4rem 0; }
.section-hr--light { background: var(--hr-gray-50); }
.section-hr--white { background: var(--hr-bg); }
.section-hr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.section-hr-card {
    background: var(--hr-bg-surface);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--hr-border);
    border-top: 4px solid transparent;
}
.section-hr-card--red { border-top-color: var(--hr-red); }
.section-hr-card--blue { border-top-color: var(--hr-blue); }
.section-hr-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.section-hr-card--red .section-hr-title { color: var(--hr-red); }
.section-hr-card--blue .section-hr-title { color: var(--hr-blue); }
.section-hr-title--center { text-align: center; margin-bottom: 1.5rem; }
.section-hr-grid--single { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-hr-grid--three { grid-template-columns: repeat(3, 1fr); }
.section-hr-subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.section-hr-card--red .section-hr-subtitle { color: var(--hr-red); }
.section-hr-card--blue .section-hr-subtitle { color: var(--hr-blue); }
.section-hr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.section-hr-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--hr-text);
    font-size: 0.95rem;
    line-height: 1.5;
}
.section-hr-list--check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    background: var(--hr-green);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--hr-white), 0 0 0 2px var(--hr-green);
}
.section-hr-list--puzzle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: var(--hr-blue);
    border-radius: 4px;
    opacity: 0.85;
}
.section-hr-list--globe li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    background: var(--hr-blue);
    border-radius: 50%;
    border: 2px solid var(--hr-blue-mid);
}

/* More Than Recruitment - HR template */
.hr-services-section--hr .container { max-width: 800px; }
.hr-services-intro--hr {
    text-align: center;
    color: var(--hr-text);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.hr-services-list-title--hr {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--hr-red);
    margin: 2rem 0 1rem;
    text-align: center;
}
.hr-services-list--hr {
    margin: 0 auto 2rem;
    max-width: 560px;
}
.hr-services-closing--hr {
    text-align: center;
    color: var(--hr-text);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}
.hr-services-tagline--hr {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hr-red);
    text-align: center;
    margin-bottom: 1.5rem;
}
.hr-services-section--hr .cta-button--hr {
    display: block;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
}

/* Quote - HR */
.quote-section--hr { padding: 4rem 0; background: var(--hr-bg); }
.section-label--hr {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hr-red);
    text-align: center;
    margin-bottom: 1.5rem;
}
.quote--hr {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--hr-gray-50);
    border-radius: 16px;
    border-left: 4px solid var(--hr-blue);
}
.quote--hr p {
    font-size: 1.2rem;
    color: var(--hr-text);
    margin-bottom: 1rem;
    font-style: italic;
}
.quote--hr cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--hr-blue);
    font-weight: 600;
}

/* Jobs - HR */
.jobs-section--hr { padding: 4rem 0; background: var(--hr-gray-50); }
.jobs-section--hr .section-title--hr { color: var(--hr-blue); }
.section-title { font-size: 1.85rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--hr-text-muted); font-size: 1rem; margin-bottom: 2rem; }
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.job-card {
    background: var(--hr-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.job-card:hover {
    border-color: var(--hr-red);
    box-shadow: 0 8px 30px rgba(185, 28, 28, 0.15);
    transform: translateY(-4px);
}
.job-image-container {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hr-blue) 0%, var(--hr-blue-dark) 100%);
}
.job-image-container .job-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.job-image-container .job-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.job-image-icon { font-size: 3rem; opacity: 0.5; }
.job-card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.job-status {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}
.job-status.active { background: #dcfce7; color: #166534; }
.job-card h3 {
    font-size: 1.25rem;
    color: var(--hr-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.job-meta span {
    background: var(--hr-gray-100);
    color: var(--hr-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
.job-description {
    color: var(--hr-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}
.job-card-actions { display: flex; gap: 0.75rem; margin-top: auto; }
.btn-primary {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--hr-red);
    color: var(--hr-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--hr-red-dark); }
.btn-secondary {
    padding: 0.6rem 1rem;
    background: transparent;
    color: var(--hr-red);
    border: 2px solid var(--hr-red);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { background: var(--hr-red); color: var(--hr-white); }

/* About - HR */
.about-section--hr { padding: 4rem 0; background: var(--hr-bg); }
.about-section--hr .section-title--hr { color: var(--hr-blue); }
.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--hr-gray-50);
    padding: 2.5rem;
    border-radius: 20px;
}
.image-container--hr {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--hr-blue);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
}
.profile-image { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 { font-size: 1.75rem; color: var(--hr-blue); margin-bottom: 0.25rem; font-weight: 800; }
.job-title { color: var(--hr-text-muted); font-size: 1rem; margin-bottom: 0.75rem; font-weight: 600; }
.experience-badge--hr {
    display: inline-block;
    background: var(--hr-yellow);
    color: var(--hr-blue-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
}
.about-description p { margin-bottom: 0.75rem; color: var(--hr-text); font-size: 0.95rem; line-height: 1.6; }

/* Apply / Contact - HR */
.contact-section--hr {
    padding: 4rem 0;
    background: var(--hr-gray-50);
}
.contact-section--hr .apply-header .section-title--hr { color: var(--hr-blue); }
.container--apply { max-width: 1100px; }
.apply-header { text-align: center; margin-bottom: 2rem; }
.apply-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}
.apply-sidebar-card--hr {
    background: var(--hr-bg-surface);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-left: 4px solid var(--hr-blue);
}
.apply-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hr-blue);
    margin-bottom: 0.75rem;
}
.apply-sidebar-list { list-style: none; padding: 0; margin: 0; }
.apply-sidebar-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--hr-text);
}
.apply-sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    background: var(--hr-green);
    border-radius: 50%;
}
.apply-contact-item { margin: 0.5rem 0; font-size: 0.9rem; }
.apply-contact-item a { color: var(--hr-red); font-weight: 600; text-decoration: none; }
.apply-contact-item a:hover { text-decoration: underline; }
.apply-new-window--hr {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background: var(--hr-white);
    color: var(--hr-blue);
    border: 2px solid var(--hr-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
}
.apply-new-window--hr:hover { background: var(--hr-blue); color: var(--hr-white); }
.apply-form-wrapper--hr {
    background: var(--hr-bg-surface);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-top: 4px solid var(--hr-red);
}
.google-form-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 600px;
}
.google-form-embed iframe {
    display: block;
}
.form-block { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--hr-gray-200); }
.form-block:last-of-type { border-bottom: none; margin-bottom: 1.25rem; padding-bottom: 0; }
.form-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hr-blue);
    margin-bottom: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--hr-text);
    font-weight: 600;
    font-size: 0.95rem;
}
.required { color: var(--hr-red); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--hr-gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hr-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}
.file-upload-wrapper { position: relative; }
.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 2px dashed var(--hr-gray-400);
    border-radius: 8px;
    background: var(--hr-gray-50);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.file-upload-label:hover { border-color: var(--hr-blue); background: var(--hr-gray-100); }
.file-upload-text { color: var(--hr-text-muted); font-size: 0.9rem; }
.file-upload-button {
    padding: 0.4rem 0.8rem;
    background: var(--hr-blue);
    color: var(--hr-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}
.file-name { display: block; margin-top: 0.4rem; font-size: 0.85rem; color: var(--hr-red); font-weight: 500; }
.submit-button--hr {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--hr-red);
    color: var(--hr-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}
.submit-button--hr:hover { background: var(--hr-red-dark); transform: translateY(-2px); }
.submit-button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.button-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--hr-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-message { margin-top: 1rem; padding: 0.75rem; border-radius: 8px; text-align: center; font-weight: 500; }
.form-message.success { background: #dcfce7; color: #166534; }
.form-message.error { background: rgba(30, 115, 216, 0.12); color: var(--hr-blue-mid); border: 1px solid rgba(30, 115, 216, 0.3); }
.form-trouble {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hr-gray-200);
    text-align: center;
    font-size: 0.9rem;
    color: var(--hr-text-muted);
}
.form-trouble a { color: var(--hr-red); font-weight: 600; text-decoration: none; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* CTA Strip */
.cta-strip {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--hr-blue) 0%, var(--hr-blue-dark) 100%);
    color: var(--hr-white);
    text-align: center;
}
.cta-strip-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cta-strip-text {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}
.cta-strip-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-button--light {
    background: var(--hr-white) !important;
    color: var(--hr-blue) !important;
}
.cta-button--light:hover { background: var(--hr-gray-100) !important; color: var(--hr-blue-dark) !important; }
.cta-button--outline-light {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--hr-white);
    border: 2px solid rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-button--outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--hr-white); }

/* Footer - HR */
.footer--hr {
    background: var(--hr-blue-dark);
    color: var(--hr-white);
    padding: 2.5rem 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.footer-contact-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.footer-contact-item { margin: 0.35rem 0; font-size: 0.95rem; opacity: 0.95; }
.footer--hr a { color: var(--hr-yellow); text-decoration: none; }
.footer--hr a:hover { text-decoration: underline; }
.footer-section--copy { text-align: right; }
.footer-section--copy p { margin: 0.35rem 0; font-size: 0.9rem; opacity: 0.9; }
.footer-slogan {
    font-style: italic;
    color: var(--hr-yellow);
    font-weight: 600;
}

/* Back to top - HR */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 900;
    width: 48px;
    height: 48px;
    background: var(--hr-red);
    color: var(--hr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(185, 28, 28, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
.back-to-top:hover { background: var(--hr-red-dark); color: var(--hr-white); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top-icon {
    width: 12px;
    height: 12px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: 6px;
}

/* Modal - HR */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    overflow: auto;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
}
.modal-content {
    background: var(--hr-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative;
}
.modal-content--hr { border-top: 4px solid var(--hr-blue); }
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--hr-text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0.25rem;
    line-height: 1;
}
.modal-close:hover { color: var(--hr-red); }
#modal-job-details h2 { color: var(--hr-blue); margin-bottom: 0.75rem; font-size: 1.35rem; }
#modal-job-details .job-meta { margin-bottom: 1rem; }
#modal-job-details .job-details-content { color: var(--hr-text); line-height: 1.6; font-size: 0.95rem; }
#modal-job-details .job-details-content h3 { color: var(--hr-blue); margin-top: 1.25rem; margin-bottom: 0.5rem; font-size: 1.1rem; }
#modal-job-details .job-details-content ul { margin-left: 1.25rem; margin-bottom: 0.75rem; }
#modal-job-details .job-details-content li { margin-bottom: 0.35rem; }
.modal-job-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--hr-blue) 0%, var(--hr-blue-dark) 100%);
}
.modal-job-image .job-image-modal {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.modal-job-image .job-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-job-image .job-image-icon { font-size: 4rem; opacity: 0.5; }

/* Responsive */
@media (max-width: 900px) {
    .section-hr-grid { grid-template-columns: 1fr; }
    .section-hr-grid--three { grid-template-columns: 1fr; }
    .apply-layout { grid-template-columns: 1fr; }
    .apply-form-wrapper { order: -1; }
    .about-content { grid-template-columns: 1fr; text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-section--copy { text-align: center; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--hr-white);
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 0;
    }
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        min-height: 44px;
    }
    .nav-menu.active { left: 0; }
    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    .nav-tagline { font-size: 0.6rem; letter-spacing: 0.1em; }
    .hero--hr { padding: 3rem 0 4rem; }
    .hero-title--hr { flex-direction: column; }
    .cta-button--hr, .cta-button--outline { display: block; margin: 0.5rem auto; }
    .form-row { grid-template-columns: 1fr; }
    .apply-form-wrapper { padding: 1.5rem; }
    .jobs-grid { grid-template-columns: 1fr; }
    .cta-strip-title { font-size: 1.5rem; }
    .section-hr { padding: 3rem 0; }
    .hr-services-section--hr .container { padding: 0 16px; }
    .hr-services-intro--hr { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-logo--hr { max-height: 36px; }
    .section-hr-card { padding: 1.5rem; }
    .section-hr { padding: 2.5rem 0; }
    .about-content { padding: 1.5rem; }
    .image-container--hr { max-width: 260px; margin: 0 auto; }
    .hr-services-intro--hr { font-size: 0.9rem; }
    .hr-services-list-title--hr { font-size: 1rem; }
}
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .nav-brand-title--hr { font-size: 0.85rem; }
    .hero-title--hr { font-size: 1.25rem; }
}
