/* ============================================
   Recruite Jobs — Complete Stylesheet
   Black & Blue design
   ============================================ */

:root {
    --recruite-blue: #2563eb;
    --recruite-blue-light: #eff6ff;
    --recruite-blue-hover: #1d4ed8;
    --recruite-dark: #111827;
    --recruite-text: #374151;
    --recruite-text-light: #6b7280;
    --recruite-bg: #f9fafb;
    --recruite-bg-cool: #f0f4ff;
    --recruite-border: #e5e7eb;
    --recruite-green: #16a34a;
    --recruite-white: #ffffff;
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--recruite-text);
    background: var(--recruite-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--recruite-dark);
    line-height: 1.3;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--recruite-blue);
    color: var(--recruite-white);
    border-color: var(--recruite-blue);
}

.btn-primary:hover {
    background: var(--recruite-blue-hover);
    border-color: var(--recruite-blue-hover);
}

.btn-outline {
    background: transparent;
    color: var(--recruite-blue);
    border-color: var(--recruite-blue);
}

.btn-outline:hover {
    background: var(--recruite-blue);
    color: var(--recruite-white);
}

.btn-sm {
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 6px;
}

.btn-lg {
    font-size: 16px;
    padding: 14px 28px;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--recruite-white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
}

/* ---- Form Inputs ---- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="file"],
select,
textarea {
    font-family: inherit;
    font-size: 14px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--recruite-border);
    border-radius: 8px;
    background: var(--recruite-white);
    color: var(--recruite-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

textarea {
    height: auto;
    min-height: 100px;
    padding: 12px 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--recruite-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder {
    color: #9ca3af;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--recruite-text);
    margin-bottom: 6px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--recruite-white);
    border-bottom: 1px solid var(--recruite-border);
    height: 80px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 48px;
    margin-right: auto;
}

.desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--recruite-text);
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--recruite-blue);
}

.desktop-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--recruite-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
}

.mobile-drawer.open {
    display: block;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--recruite-white);
    padding: 24px;
    animation: slideInRight 0.3s;
    overflow-y: auto;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-drawer-header img {
    height: 35px;
    width: auto;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--recruite-text);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-drawer-nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--recruite-text);
    border-bottom: 1px solid var(--recruite-border);
}

.mobile-drawer-nav a:hover {
    color: var(--recruite-blue);
}

.mobile-drawer-contact {
    margin-top: 32px;
}

.mobile-drawer-contact .btn {
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: var(--recruite-white);
    padding: 56px 24px;
    text-align: center;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--recruite-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.hero-search {
    display: flex;
    background: var(--recruite-white);
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-search input {
    flex: 1;
    border: none;
    height: 52px;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 0;
    outline: none;
}

.hero-search input:focus {
    box-shadow: none;
}

.hero-search button {
    background: var(--recruite-blue);
    color: var(--recruite-white);
    border: none;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.hero-search button:hover {
    background: var(--recruite-blue-hover);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #60a5fa;
}

.hero-stat .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* ============================================
   CATEGORY PILLS
   ============================================ */
.category-pills-wrap {
    background: var(--recruite-white);
    border-bottom: 1px solid var(--recruite-border);
    padding: 16px 24px;
}

.category-pills {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid var(--recruite-border);
    background: var(--recruite-white);
    color: var(--recruite-text);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.category-pill:hover {
    border-color: var(--recruite-blue);
    color: var(--recruite-blue);
}

.category-pill.active {
    background: var(--recruite-blue);
    color: var(--recruite-white);
    border-color: var(--recruite-blue);
}

.category-pill .pill-count {
    font-size: 11px;
    background: rgba(0, 0, 0, 0.08);
    padding: 1px 7px;
    border-radius: 10px;
}

.category-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   CONTENT LAYOUT
   ============================================ */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    gap: 32px;
}

.content-main {
    flex: 1;
    min-width: 0;
}

.content-sidebar {
    width: 260px;
    flex-shrink: 0;
}

/* ============================================
   SIDEBAR FILTERS
   ============================================ */
.filter-card {
    background: var(--recruite-white);
    border: 1px solid var(--recruite-border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-card h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--recruite-text-light);
    margin-bottom: 14px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--recruite-blue);
    cursor: pointer;
}

.filter-option .filter-label {
    flex: 1;
    color: var(--recruite-text);
}

.filter-option .filter-count {
    font-size: 12px;
    color: var(--recruite-text-light);
    background: var(--recruite-bg);
    padding: 1px 8px;
    border-radius: 10px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 10px;
    padding: 24px 20px;
    color: var(--recruite-white);
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--recruite-white);
    margin-bottom: 8px;
}

.sidebar-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.sidebar-cta .btn {
    width: 100%;
}

/* ============================================
   RESULTS HEADER
   ============================================ */
.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.results-count {
    font-size: 14px;
    color: var(--recruite-text-light);
}

.results-sort select {
    height: 38px;
    font-size: 13px;
    padding: 0 12px;
    border-radius: 6px;
    min-width: 160px;
}

/* ============================================
   JOB CARDS
   ============================================ */
.job-card {
    background: var(--recruite-white);
    border: 1px solid var(--recruite-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.job-card:hover {
    border-color: var(--recruite-blue);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.job-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--recruite-border);
    object-fit: contain;
    flex-shrink: 0;
}

.job-card-info {
    flex: 1;
    min-width: 0;
}

.job-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--recruite-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.job-card-company {
    font-size: 14px;
    color: var(--recruite-text-light);
}

.job-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tag-location {
    background: #e6f7ff;
    color: #1677ff;
}

.tag-type {
    background: #f6ffed;
    color: #52c41a;
}

.tag-license {
    background: #eff6ff;
    color: #2563eb;
}

.tag-salary {
    background: var(--recruite-bg);
    color: var(--recruite-text);
}

.tag-featured {
    background: var(--recruite-dark);
    color: var(--recruite-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-card-desc {
    font-size: 13px;
    color: var(--recruite-text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--recruite-border);
}

.job-card-salary {
    font-size: 15px;
    font-weight: 700;
    color: var(--recruite-dark);
}

.job-card-meta {
    font-size: 13px;
    color: var(--recruite-text-light);
}

.btn-apply {
    background: var(--recruite-blue);
    color: var(--recruite-white);
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-apply:hover {
    background: var(--recruite-blue-hover);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 20px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--recruite-border);
    background: var(--recruite-white);
    color: var(--recruite-text);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--recruite-blue);
    color: var(--recruite-blue);
}

.pagination .active {
    background: var(--recruite-blue);
    color: var(--recruite-white);
    border-color: var(--recruite-blue);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================
   JOB DETAIL PAGE
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--recruite-text-light);
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--recruite-text-light);
}

.breadcrumb a:hover {
    color: var(--recruite-blue);
}

.breadcrumb .separator {
    color: var(--recruite-border);
}

.job-detail-header {
    background: var(--recruite-white);
    border: 1px solid var(--recruite-border);
    border-radius: 10px;
    padding: 32px;
    margin-bottom: 24px;
}

.job-detail-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.job-detail-logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid var(--recruite-border);
    object-fit: contain;
    flex-shrink: 0;
}

.job-detail-info {
    flex: 1;
}

.job-detail-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--recruite-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.job-detail-company {
    font-size: 16px;
    color: var(--recruite-text-light);
    margin-bottom: 16px;
}

.job-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.job-detail-salary {
    font-size: 20px;
    font-weight: 800;
    color: var(--recruite-dark);
    margin-bottom: 4px;
}

.job-detail-deadline {
    font-size: 13px;
    color: var(--recruite-text-light);
}

.job-detail-body {
    display: flex;
    gap: 32px;
}

.job-detail-content {
    flex: 1;
    min-width: 0;
}

.job-detail-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--recruite-dark);
}

.job-detail-content h3:first-child {
    margin-top: 0;
}

.job-detail-content p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.job-detail-content ul,
.job-detail-content ol {
    margin-bottom: 12px;
    padding-left: 24px;
    list-style: disc;
}

.job-detail-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.job-detail-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.detail-info-card {
    background: var(--recruite-white);
    border: 1px solid var(--recruite-border);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.detail-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.detail-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--recruite-border);
}

.detail-info-row:last-child {
    border-bottom: none;
}

.detail-info-icon {
    width: 20px;
    color: var(--recruite-text-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-info-label {
    font-size: 12px;
    color: var(--recruite-text-light);
    margin-bottom: 2px;
}

.detail-info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--recruite-dark);
}

.related-jobs h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ============================================
   APPLY MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--recruite-white);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    animation: modalSlideUp 0.3s;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--recruite-text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.modal-close:hover {
    background: var(--recruite-bg);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--recruite-text-light);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
}

.form-group .required {
    color: #ef4444;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn {
    flex: 1;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.form-message.success {
    background: #f0fdf4;
    color: var(--recruite-green);
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: var(--recruite-white);
    padding: 64px 24px;
    text-align: center;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--recruite-white);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--recruite-text);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.about-value-card {
    background: var(--recruite-white);
    border: 1px solid var(--recruite-border);
    border-radius: 10px;
    padding: 28px;
    text-align: center;
}

.about-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 14px;
    color: var(--recruite-text-light);
    margin-bottom: 0;
}

.about-value-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 64px 24px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--recruite-text-light);
    font-size: 15px;
    margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--recruite-dark);
    padding: 56px 24px 0;
    color: #9ca3af;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-brand {
    min-width: 260px;
    flex: 1.5;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--recruite-blue);
    transition: all 0.2s;
}

.social-circle:hover {
    background: var(--recruite-blue);
    border-color: var(--recruite-blue);
    color: var(--recruite-white);
}

.social-circle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-app-badges img {
    height: 40px;
    width: auto;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--recruite-white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--recruite-blue);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--recruite-blue);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-blue { color: var(--recruite-blue); }
.text-light { color: var(--recruite-text-light); }
.text-bold { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .content-wrap {
        flex-direction: column;
        padding: 20px 16px;
    }

    .content-sidebar {
        width: 100%;
        order: -1;
    }

    .hero {
        padding: 40px 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 10px;
        max-width: 100%;
    }

    .hero-search input {
        border: 2px solid var(--recruite-border);
        border-radius: 10px 10px 0 0;
        min-height: 48px;
        height: 48px;
        flex: none;
        font-size: 16px;
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
        background: var(--recruite-white);
        color: var(--recruite-dark);
    }

    .hero-search input::placeholder {
        color: #9ca3af;
        font-size: 14px;
    }

    .hero-search button {
        height: 48px;
        border-radius: 0 0 10px 10px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .stat-number {
        font-size: 22px;
    }

    .job-card {
        padding: 16px;
    }

    .job-card-header {
        flex-direction: column;
    }

    .job-card-actions {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .job-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .job-detail-header {
        padding: 20px;
    }

    .job-detail-top {
        flex-direction: column;
    }

    .job-detail-title {
        font-size: 20px;
    }

    .job-detail-company {
        font-size: 14px;
    }

    .job-detail-header {
        padding: 16px;
    }

    .job-detail-content h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .job-card-title {
        font-size: 15px;
    }

    .job-card-company {
        font-size: 13px;
    }

    .job-card-salary {
        font-size: 14px;
    }

    .tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .job-detail-body {
        flex-direction: column;
    }

    .job-detail-sidebar {
        width: 100%;
    }

    .job-detail-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        margin-top: 16px;
    }

    .job-detail-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .job-detail-salary {
        font-size: 18px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand {
        min-width: 100%;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb {
        padding: 12px 16px;
        font-size: 12px;
    }

    .modal-content {
        padding: 24px;
        margin: 16px;
    }

    .about-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat .stat-number {
        font-size: 18px;
    }

    .hero-stat .stat-label {
        font-size: 11px;
    }

    .category-pills-wrap {
        padding: 12px 16px;
    }

    .job-card {
        padding: 14px;
    }

    .job-card-title {
        font-size: 14px;
    }

    .job-card-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .footer-app-badges {
        flex-direction: column;
    }

    .footer-app-badges img {
        width: 135px;
    }
}

@media (min-width: 769px) {
    .filter-card-mobile-toggle {
        display: none;
    }
}
