/* ══════════════════════════════════════════════════════════════
   ACU Careers Portal — Styles
   Design 7: Maroon (#621708) + Gold (#f6aa1c)
   ══════════════════════════════════════════════════════════════ */

:root {
    --maroon: #621708;
    --maroon-hover: #7a1d0a;
    --maroon-light: rgba(98,23,8,0.08);
    --gold: #f6aa1c;
    --gold-hover: #e09a14;
    --gold-light: rgba(246,170,28,0.12);
    --navy: #0c1a2e;
    --black: #111111;
    --white: #ffffff;
    --light: #f7f7f8;
    --lighter: #fafafa;
    --text: #1a1a1a;
    --sub: #333333;
    --muted: #555555;
    --dim: #888888;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 10px 32px rgba(0,0,0,0.14);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Top Bar ──────────────────────────────────────────────── */
.acu-topbar {
    background: var(--black);
    padding: 0.5em 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.acu-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.acu-topbar-left { display: flex; gap: 1.5em; align-items: center; }
.acu-topbar-item { display: flex; align-items: center; gap: 0.4em; }
.acu-topbar-item svg { opacity: 0.6; }
.acu-topbar-badge {
    background: var(--gold);
    color: var(--maroon);
    font-weight: 800;
    font-size: 11px;
    padding: 0.3em 1em;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ── Navigation ───────────────────────────────────────────── */
.acu-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.acu-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
}
.acu-nav-brand { display: flex; align-items: center; }
.acu-nav-logo-img { height: 56px; width: auto; object-fit: contain; }
.acu-nav-links { display: flex; align-items: center; gap: 0.3em; }
.acu-nav-link {
    padding: 0.5em 1em;
    font-size: 14px;
    font-weight: 600;
    color: var(--sub);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.acu-nav-link:hover { color: var(--maroon); background: var(--maroon-light); }
.acu-nav-cta {
    background: var(--maroon);
    color: var(--white) !important;
    padding: 0.6em 1.6em;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-left: 0.5em;
    transition: var(--transition);
}
.acu-nav-cta:hover { background: var(--maroon-hover); transform: translateY(-1px); }
.acu-nav-cta.active { background: var(--maroon-hover); }
.acu-nav-toggle { display: none; color: var(--text); padding: 0.5em; }

/* ── Career Hero (Apply Page) ────────────────────────────── */
.acu-career-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.acu-career-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://acu.edu.in/wp-content/uploads/2026/04/1.jpg') center 30%/cover no-repeat;
    opacity: 0.5;
}
.acu-career-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,26,46,0.92) 0%, rgba(12,26,46,0.7) 50%, rgba(98,23,8,0.5) 100%);
}
.acu-career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3em 5%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3em;
    align-items: center;
    width: 100%;
}
.acu-career-hero-text { max-width: 520px; }
.acu-career-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: rgba(246,170,28,0.15);
    color: var(--gold);
    padding: 0.4em 1.2em;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2em;
    border: 1px solid rgba(246,170,28,0.25);
}
.acu-career-hero-dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.acu-career-hero h1 {
    font-size: 2.8em;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}
.acu-career-hero h1 em { font-style: normal; color: var(--gold); }
.acu-career-hero-text > p {
    font-size: 0.95em;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
}
.acu-career-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8em;
}
.acu-career-hero-stat {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.3em 1em;
    text-align: center;
    transition: var(--transition);
}
.acu-career-hero-stat:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    border-color: rgba(246,170,28,0.3);
}
.acu-career-hero-stat-n {
    font-size: 2em;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 0.2em;
}
.acu-career-hero-stat-l {
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5em;
    background: var(--gold); color: var(--maroon);
    font-size: 15px; font-weight: 800;
    padding: 0.9em 2.2em; border-radius: var(--radius-sm);
    transition: var(--transition); border: none;
    letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(246,170,28,0.35); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5em;
    background: transparent; color: var(--white);
    font-size: 15px; font-weight: 700;
    padding: 0.85em 2em; border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.35);
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-maroon {
    display: inline-flex; align-items: center; gap: 0.5em;
    background: var(--maroon); color: var(--white);
    font-size: 15px; font-weight: 800;
    padding: 0.9em 2.2em; border-radius: var(--radius-sm);
    transition: var(--transition); border: none;
}
.btn-maroon:hover { background: var(--maroon-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(98,23,8,0.3); }

/* ── Application Form ─────────────────────────────────────── */
.acu-form-page {
    padding: 3em 0 5em;
    background: var(--light);
    min-height: 60vh;
}
.acu-form-container {
    max-width: 760px;
    margin: -3em auto 0;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}
.acu-form-hero {
    background: var(--maroon);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 2.5em 3em;
    text-align: center;
}
.acu-form-hero h1 {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.3em;
}
.acu-form-hero p {
    font-size: 0.92em;
    color: rgba(255,255,255,0.7);
}

/* Progress */
.acu-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 2em auto 0;
    max-width: 400px;
}
.acu-progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}
.acu-progress-step::before {
    content: '';
    position: absolute;
    top: 14px; left: 50%; right: -50%;
    height: 3px;
    background: rgba(255,255,255,0.15);
}
.acu-progress-step:last-child::before { display: none; }
.acu-progress-step.active::before { background: var(--gold); }
.acu-progress-dot {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
    color: rgba(255,255,255,0.5);
    margin: 0 auto 0.5em;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.acu-progress-step.active .acu-progress-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon);
}
.acu-progress-step.done .acu-progress-dot {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
    color: var(--gold);
}
.acu-progress-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.acu-progress-step.active .acu-progress-label { color: var(--gold); }
.acu-progress-step.done .acu-progress-label { color: rgba(255,255,255,0.6); }

/* Form Body */
.acu-form-body {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 2.5em 3em;
}
.acu-form-step { display: none; }
.acu-form-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.acu-form-step h2 {
    font-size: 1.2em;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.3em;
}
.acu-form-step > p {
    font-size: 0.88em;
    color: var(--muted);
    margin-bottom: 2em;
}

/* Category Card Selector */
.acu-category-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-top: 0.5em;
}
.acu-cat-card {
    cursor: pointer;
    display: block;
}
.acu-cat-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.acu-cat-card-inner {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6em 1.4em;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.acu-cat-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: var(--radius) var(--radius) 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.acu-cat-card:hover .acu-cat-card-inner {
    border-color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.acu-cat-card:hover .acu-cat-card-inner::before { transform: scaleX(1); }
.acu-cat-card input:checked + .acu-cat-card-inner {
    border-color: var(--maroon);
    background: var(--maroon-light);
    box-shadow: 0 0 0 3px rgba(98,23,8,0.12);
}
.acu-cat-card input:checked + .acu-cat-card-inner::before {
    transform: scaleX(1);
    background: var(--maroon);
}
.acu-cat-icon {
    width: 48px; height: 48px;
    background: var(--gold-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.8em;
    color: var(--maroon);
}
.acu-cat-icon svg { width: 24px; height: 24px; }
.acu-cat-title {
    display: block;
    font-size: 1em;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.2em;
}
.acu-cat-desc {
    display: block;
    font-size: 0.78em;
    color: var(--muted);
}

/* Form Fields */
.acu-field { margin-bottom: 1.4em; }
.acu-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}
.acu-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sub);
    margin-bottom: 0.45em;
}
.acu-field label .required { color: #dc2626; margin-left: 2px; }
.acu-field input,
.acu-field select,
.acu-field textarea {
    width: 100%;
    padding: 0.75em 1em;
    font-size: 14px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.acu-field input:focus,
.acu-field select:focus,
.acu-field textarea:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px var(--maroon-light);
}
.acu-field input.error,
.acu-field select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.acu-field .field-error {
    font-size: 12px;
    color: #dc2626;
    margin-top: 0.35em;
    display: none;
}
.acu-field .field-error.show { display: block; }
.acu-field select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
}

/* Email OTP */
.acu-email-verify-wrap {
    display: flex;
    gap: 0.5em;
    align-items: stretch;
}
.acu-email-verify-wrap input { flex: 1; min-width: 0; }
.acu-otp-send-btn {
    padding: 0.6em 1.2em;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: var(--maroon);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.acu-otp-send-btn:hover { background: var(--maroon-hover); }
.acu-otp-send-btn:disabled { background: var(--dim); cursor: not-allowed; }

.acu-otp-box {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.6em;
}
.acu-otp-box input {
    width: 140px !important;
    flex: 0 0 140px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.acu-otp-verify-btn {
    padding: 0.6em 1.2em;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: #16a34a;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.acu-otp-verify-btn:hover { background: #15803d; }
.acu-otp-verify-btn:disabled { background: var(--dim); cursor: not-allowed; }

.acu-otp-resend-btn {
    padding: 0.5em 0.8em;
    font-size: 12px;
    font-weight: 600;
    color: var(--maroon);
    background: var(--maroon-light);
    border: 1px solid var(--maroon);
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.acu-otp-resend-btn:hover { background: var(--maroon); color: var(--white); }
.acu-otp-resend-btn:disabled { color: var(--dim); border-color: var(--border); background: var(--light); cursor: not-allowed; }

.acu-otp-status {
    font-size: 12px;
    margin-top: 0.4em;
    font-weight: 600;
    min-height: 1.3em;
}
.acu-otp-status.success { color: #16a34a; }
.acu-otp-status.error { color: #dc2626; }
.acu-otp-status.verified { color: #16a34a; font-size: 13px; }

input.otp-locked { background: var(--light) !important; color: var(--muted) !important; }
input.otp-verified {
    border-color: #16a34a !important;
    background: #f0fdf4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2316a34a' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat right 0.8em center !important;
    padding-right: 2.5em !important;
}

/* Download Hint */
.acu-form-download-hint {
    display: flex;
    align-items: center;
    gap: 0.7em;
    padding: 0.9em 1.2em;
    background: var(--gold-light);
    border-radius: var(--radius-sm);
    margin-bottom: 1.4em;
    font-size: 13px;
    color: var(--sub);
    border: 1px solid rgba(246,170,28,0.2);
}
.acu-form-download-hint a {
    color: var(--maroon);
    font-weight: 700;
    text-decoration: underline;
}
.acu-form-download-hint a:hover { color: var(--maroon-hover); }

/* File Upload */
.acu-file-upload {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--lighter);
}
.acu-file-upload:hover,
.acu-file-upload.dragover {
    border-color: var(--maroon);
    background: var(--maroon-light);
}
.acu-file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.acu-file-upload-inner {
    padding: 2em 1.5em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
}
.acu-file-upload-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--sub);
}
.acu-file-upload-hint {
    font-size: 12px;
    color: var(--dim);
    line-height: 1.6;
}
.acu-file-upload-hint a {
    color: var(--maroon);
    font-weight: 700;
    text-decoration: underline;
}
.acu-file-selected {
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    background: #f0fdf4;
    border-radius: var(--radius);
}
.acu-file-selected span:first-of-type {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.acu-file-selected #fileSize {
    font-size: 12px;
    font-weight: 600;
    color: var(--dim);
    flex-shrink: 0;
}
.acu-file-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fef2f2;
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #fecaca;
    transition: var(--transition);
    flex-shrink: 0;
    line-height: 1;
}
.acu-file-remove:hover {
    background: #dc2626;
    color: var(--white);
}

/* Consent */
.acu-consent {
    display: flex; align-items: flex-start; gap: 0.7em;
    margin-bottom: 1.5em; padding: 1em 1.2em;
    background: var(--light); border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.acu-consent input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: var(--maroon); cursor: pointer;
}
.acu-consent label {
    font-size: 13px !important; color: var(--muted) !important;
    line-height: 1.6; font-weight: 500 !important; cursor: pointer;
}

/* Captcha */
.acu-captcha-box {
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2em 1.5em;
    display: flex;
    align-items: center;
    gap: 1.2em;
    margin-bottom: 1.5em;
}
.acu-captcha-question {
    font-size: 1.2em;
    font-weight: 800;
    color: var(--maroon);
    white-space: nowrap;
}
.acu-captcha-box input { flex: 1; max-width: 120px; }
.acu-captcha-refresh {
    color: var(--muted);
    padding: 0.3em;
    transition: var(--transition);
}
.acu-captcha-refresh:hover { color: var(--maroon); transform: rotate(180deg); }

/* Form Nav */
.acu-form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid var(--border-light);
}
.acu-form-nav .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    padding: 0.8em 1.5em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.acu-form-nav .btn-back:hover { background: var(--light); color: var(--text); }

/* Honeypot */
.acu-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ── Alert Messages ───────────────────────────────────────── */
.acu-alert {
    padding: 1em 1.4em;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5em;
}
.acu-alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.acu-alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ── Thank You ────────────────────────────────────────────── */
.acu-thankyou {
    text-align: center;
    padding: 5em 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.acu-thankyou-inner { max-width: 600px; margin: 0 auto; padding: 0 5%; }
.acu-thankyou-icon {
    width: 80px; height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5em;
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.acu-thankyou h1 {
    font-size: 2em;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.4em;
}
.acu-thankyou-ref {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--maroon);
    background: var(--maroon-light);
    padding: 0.4em 1.2em;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 0.8em 0;
    letter-spacing: 0.04em;
}
.acu-thankyou p {
    font-size: 1em;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Footer ───────────────────────────────────────────────── */
.acu-footer {
    background: var(--black);
    padding: 4em 0 0;
    color: rgba(255,255,255,0.7);
}
.acu-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.acu-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3em;
    padding-bottom: 3em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.acu-footer-brand { margin-bottom: 1.2em; }
.acu-footer-logo { height: 60px; width: auto; object-fit: contain; }
.acu-footer-desc { font-size: 13px; line-height: 1.7; }
.acu-footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2em;
}
.acu-footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding: 0.35em 0;
    transition: var(--transition);
}
.acu-footer-col a:hover { color: var(--white); transform: translateX(3px); }
.acu-footer-bottom {
    padding: 1.5em 0;
    text-align: center;
}
.acu-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* Loading Spinner */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}
.btn-loading::after {
    content: '';
    position: absolute;
    right: 1em; top: 50%;
    width: 16px; height: 16px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .acu-career-hero-content { grid-template-columns: 1fr; gap: 2em; }
    .acu-career-hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .acu-topbar-left { gap: 0.8em; font-size: 11px; }
    .acu-nav-links {
        display: none;
        position: fixed;
        top: 78px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1em;
        border-bottom: 2px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .acu-nav-links.open { display: flex; }
    .acu-nav-link { padding: 0.8em; width: 100%; text-align: center; }
    .acu-nav-cta { margin: 0.5em 0 0; text-align: center; display: block; }
    .acu-nav-toggle { display: block; }
    .acu-nav-logo-img { height: 42px; }

    .acu-career-hero { min-height: auto; }
    .acu-career-hero h1 { font-size: 2em; }
    .acu-career-hero-stats { grid-template-columns: 1fr 1fr; }

    .acu-form-hero { padding: 1.8em 1.5em; }
    .acu-form-hero h1 { font-size: 1.4em; }
    .acu-form-body { padding: 1.5em; }
    .acu-field-row { grid-template-columns: 1fr; }
    .acu-category-cards { grid-template-columns: 1fr; }

    .acu-footer-grid { grid-template-columns: 1fr 1fr; gap: 2em; }
}

@media (max-width: 480px) {
    .acu-topbar { display: none; }
    .acu-career-hero h1 { font-size: 1.6em; }
    .acu-career-hero-stats { grid-template-columns: 1fr 1fr; gap: 0.5em; }
    .acu-career-hero-stat { padding: 1em 0.8em; }
    .acu-career-hero-stat-n { font-size: 1.6em; }
    .acu-footer-grid { grid-template-columns: 1fr; }
    .acu-captcha-box { flex-wrap: wrap; }
    .acu-email-verify-wrap { flex-direction: column; }
    .acu-otp-box { flex-wrap: wrap; }
    .acu-otp-box input { width: 100% !important; flex: 1 1 100%; }
    .acu-form-download-hint { flex-direction: column; text-align: center; }
}
