/* ========================================
   JOB LISTINGS - E-Manset Frontend
   ======================================== */

/* Variables */
:root {
    --job-primary: #191c4f;
    --job-accent: #4f52aa;
    --job-success: #22c55e;
    --job-warning: #f59e0b;
    --job-info: #3b82f6;
    --job-danger: #ef4444;
    --job-gray-50: #f9fafb;
    --job-gray-100: #f3f4f6;
    --job-gray-200: #e5e7eb;
    --job-gray-300: #d1d5db;
    --job-gray-400: #9ca3af;
    --job-gray-500: #6b7280;
    --job-gray-600: #4b5563;
    --job-gray-700: #374151;
    --job-gray-800: #1f2937;
    --job-gray-900: #111827;
    --job-radius: 8px;
    --job-radius-lg: 12px;
    --job-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --job-shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --job-shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --job-transition: all 0.2s ease;
}

/* ========== BREADCRUMB ========== */
.job-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--job-gray-500);
    flex-wrap: wrap;
}

.job-breadcrumb .breadcrumb-link {
    color: var(--job-gray-600);
    text-decoration: none;
    transition: var(--job-transition);
}

.job-breadcrumb .breadcrumb-link:hover {
    color: var(--job-primary);
}

.job-breadcrumb svg {
    flex-shrink: 0;
    color: var(--job-gray-400);
}

.job-breadcrumb .breadcrumb-active {
    color: var(--job-gray-800);
    font-weight: 500;
}

/* ========== ALERT MESSAGES ========== */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--job-radius);
    margin-bottom: 20px;
}

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

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========== JOB LISTINGS PAGE ========== */
.job-listings-page {
    padding: 24px 0 60px;
}

.job-listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-sidebar-card {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 20px;
    box-shadow: var(--job-shadow);
}

.job-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--job-gray-900);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--job-gray-100);
}

/* Search */
.job-search-input-wrapper {
    position: relative;
}

.job-search-input {
    width: 100%;
    padding: 12px 44px 12px 14px;
    border: 1px solid var(--job-gray-200);
    border-radius: var(--job-radius);
    font-size: 14px;
    transition: var(--job-transition);
}

.job-search-input:focus {
    outline: none;
    border-color: var(--job-primary);
    box-shadow: 0 0 0 3px rgba(25, 28, 79, 0.1);
}

.job-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--job-primary);
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--job-transition);
}

.job-search-btn:hover {
    background: var(--job-accent);
}

/* Filters */
.filter-group {
    margin-bottom: 16px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--job-gray-700);
    margin-bottom: 6px;
}

.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--job-gray-200);
    border-radius: var(--job-radius);
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: var(--job-transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--job-primary);
}

.filter-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    margin-top: 16px;
    background: var(--job-gray-100);
    color: var(--job-gray-600);
    border: none;
    border-radius: var(--job-radius);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--job-transition);
}

.filter-clear-btn:hover {
    background: var(--job-gray-200);
    color: var(--job-gray-800);
}

/* Sector List */
.sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-list li {
    margin-bottom: 4px;
}

.sector-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--job-gray-700);
    text-decoration: none;
    border-radius: var(--job-radius);
    font-size: 14px;
    transition: var(--job-transition);
}

.sector-link:hover,
.sector-link.active {
    background: var(--job-gray-50);
    color: var(--job-primary);
}

.sector-link i {
    font-size: 16px;
    color: var(--job-gray-400);
}

.sector-link.active i,
.sector-link:hover i {
    color: var(--job-primary);
}

.sector-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--job-gray-400);
    background: var(--job-gray-100);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Add Job CTA */
.job-add-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--job-primary) 0%, var(--job-accent) 100%);
    color: #fff;
}

.job-add-cta svg {
    opacity: 0.8;
    margin-bottom: 12px;
}

.job-add-cta h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.job-add-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 16px 0;
}

.job-add-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: var(--job-primary);
    border-radius: var(--job-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--job-transition);
}

.job-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--job-shadow-md);
}

/* Main Content */
.job-main {
    min-width: 0;
}

.job-list-header {
    margin-bottom: 20px;
}

.job-list-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--job-gray-900);
    margin: 0;
}

.job-count {
    font-size: 16px;
    font-weight: 400;
    color: var(--job-gray-500);
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--job-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
}

.filter-tag-remove {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    margin-left: 4px;
}

.filter-tag-remove:hover {
    color: #fff;
}

/* Job Cards Grid */
.job-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: #fff;
    border-radius: var(--job-radius-lg);
    box-shadow: var(--job-shadow);
    overflow: hidden;
    transition: var(--job-transition);
}

.job-card:hover {
    box-shadow: var(--job-shadow-lg);
    transform: translateY(-2px);
}

.job-card-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.job-card-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--job-radius);
    overflow: hidden;
    background: var(--job-gray-100);
}

.job-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.job-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--job-gray-900);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.job-card-company {
    font-size: 14px;
    color: var(--job-gray-600);
}

.job-card-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
}

.job-badge-fulltime {
    background: #dcfce7;
    color: #166534;
}

.job-badge-parttime {
    background: #dbeafe;
    color: #1e40af;
}

.job-badge-remote {
    background: #f3e8ff;
    color: #7c3aed;
}

.job-badge-intern {
    background: #fef3c7;
    color: #92400e;
}

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

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--job-gray-600);
}

.job-meta-item svg {
    color: var(--job-gray-400);
}

.job-salary {
    color: var(--job-success);
    font-weight: 500;
}

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

.job-tag {
    padding: 4px 10px;
    background: var(--job-gray-100);
    color: var(--job-gray-700);
    border-radius: 4px;
    font-size: 12px;
}

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

.job-date {
    font-size: 13px;
    color: var(--job-gray-500);
}

.job-views {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--job-gray-500);
}

/* Empty State */
.job-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: var(--job-radius-lg);
}

.job-empty svg {
    color: var(--job-gray-300);
    margin-bottom: 16px;
}

.job-empty h3 {
    font-size: 20px;
    color: var(--job-gray-800);
    margin: 0 0 8px 0;
}

.job-empty p {
    color: var(--job-gray-500);
    margin: 0 0 20px 0;
}

.btn-reset-filters {
    display: inline-block;
    padding: 10px 20px;
    background: var(--job-primary);
    color: #fff;
    border-radius: var(--job-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--job-transition);
}

.btn-reset-filters:hover {
    background: var(--job-accent);
}

/* Pagination */
.job-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* ========== JOB DETAIL PAGE ========== */
.job-detail-page {
    padding: 24px 0 60px;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.job-detail-main {
    min-width: 0;
}

.job-detail-header {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 24px;
    box-shadow: var(--job-shadow);
    margin-bottom: 24px;
}

.job-detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.job-detail-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--job-gray-900);
    margin: 0;
    line-height: 1.3;
}

.job-detail-company-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--job-gray-100);
}

.job-detail-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--job-radius);
    overflow: hidden;
    background: var(--job-gray-100);
}

.job-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.job-detail-company-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--job-gray-900);
    display: block;
}

.job-detail-sector {
    font-size: 14px;
    color: var(--job-accent);
    text-decoration: none;
}

.job-detail-sector:hover {
    text-decoration: underline;
}

.job-detail-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.job-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--job-gray-600);
}

.job-detail-meta-item svg {
    color: var(--job-gray-400);
}

.job-detail-meta-item.expired {
    color: var(--job-danger);
}

.job-detail-meta-item.expired svg {
    color: var(--job-danger);
}

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

/* Job Sections */
.job-detail-section {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 24px;
    box-shadow: var(--job-shadow);
    margin-bottom: 24px;
}

.job-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--job-gray-900);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--job-gray-100);
}

.job-section-title svg {
    color: var(--job-primary);
}

.job-description-content {
    color: var(--job-gray-700);
    line-height: 1.7;
}

.job-description-content p {
    margin: 0 0 16px 0;
}

.job-description-content p:last-child {
    margin-bottom: 0;
}

.job-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--job-gray-100);
    color: var(--job-gray-700);
}

.job-requirements-list li:last-child {
    border-bottom: none;
}

.job-requirements-list li svg {
    color: var(--job-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.job-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.job-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--job-gray-50);
    border-radius: var(--job-radius);
    font-size: 14px;
    color: var(--job-gray-700);
}

.job-benefit-item svg {
    color: var(--job-success);
    flex-shrink: 0;
}

/* Share Section */
.job-share-section {
    text-align: center;
}

.job-share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--job-transition);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-facebook {
    background: #1877f2;
    color: #fff;
}

.share-whatsapp {
    background: #25d366;
    color: #fff;
}

.share-linkedin {
    background: #0077b5;
    color: #fff;
}

.share-copy {
    background: var(--job-gray-200);
    color: var(--job-gray-700);
}

/* Sidebar */
.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-contact-card {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 20px;
    box-shadow: var(--job-shadow);
}

.job-contact-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--job-gray-100);
}

.job-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: var(--job-radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--job-transition);
    margin-bottom: 10px;
}

.job-contact-btn:last-child {
    margin-bottom: 0;
}

.job-contact-phone {
    background: var(--job-success);
    color: #fff;
}

.job-contact-phone:hover {
    background: #16a34a;
}

.job-contact-email {
    background: var(--job-primary);
    color: #fff;
}

.job-contact-email:hover {
    background: var(--job-accent);
}

.job-expired-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fef2f2;
    border-radius: var(--job-radius);
    color: var(--job-danger);
}

.job-expired-notice svg {
    margin-bottom: 8px;
}

.job-expired-notice p {
    margin: 0;
    font-size: 14px;
}

.job-company-card {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 20px;
    box-shadow: var(--job-shadow);
}

.job-company-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--job-gray-100);
}

.job-company-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--job-radius);
    object-fit: contain;
    background: var(--job-gray-100);
}

.job-company-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: var(--job-gray-900);
}

.job-company-sector {
    font-size: 13px;
    color: var(--job-gray-500);
}

.job-company-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--job-primary);
    font-size: 14px;
    text-decoration: none;
}

.job-company-link:hover {
    text-decoration: underline;
}

/* Similar Jobs */
.job-similar-card {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 20px;
    box-shadow: var(--job-shadow);
}

.job-similar-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--job-gray-100);
}

.job-similar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-similar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--job-gray-50);
    border-radius: var(--job-radius);
    text-decoration: none;
    transition: var(--job-transition);
}

.job-similar-item:hover {
    background: var(--job-gray-100);
}

.job-similar-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.job-similar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.job-similar-info {
    min-width: 0;
}

.job-similar-item-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--job-gray-900);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-similar-item-company {
    display: block;
    font-size: 12px;
    color: var(--job-gray-600);
}

.job-similar-item-location {
    display: block;
    font-size: 11px;
    color: var(--job-gray-500);
}

/* ========== ADD JOB PAGE ========== */
.add-job-hero {
    position: relative;
    background: linear-gradient(135deg, var(--job-primary) 0%, var(--job-accent) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.add-job-hero-content {
    position: relative;
    z-index: 1;
}

.add-job-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.add-job-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.add-job-page {
    padding: 40px 0 60px;
    background: var(--job-gray-50);
}

.add-job-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.job-add-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 24px;
    box-shadow: var(--job-shadow);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--job-gray-900);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--job-gray-100);
}

.form-section-title svg {
    color: var(--job-primary);
}

.form-row {
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--job-gray-700);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--job-danger);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--job-gray-200);
    border-radius: var(--job-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--job-transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--job-primary);
    box-shadow: 0 0 0 3px rgba(25, 28, 79, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--job-gray-500);
    margin-top: 6px;
}

/* Image Upload */
.image-upload-wrapper {
    position: relative;
}

.image-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.image-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 30px;
    border: 2px dashed var(--job-gray-300);
    border-radius: var(--job-radius);
    cursor: pointer;
    transition: var(--job-transition);
    text-align: center;
    color: var(--job-gray-500);
}

.image-upload-label:hover {
    border-color: var(--job-primary);
    background: var(--job-gray-50);
}

.image-upload-label svg {
    color: var(--job-gray-400);
}

.image-upload-label span {
    font-size: 14px;
    font-weight: 500;
}

.image-upload-label small {
    font-size: 12px;
}

.image-preview {
    display: none;
    margin-top: 12px;
}

.image-preview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: var(--job-radius);
    border: 1px solid var(--job-gray-200);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.benefit-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--job-gray-50);
    border-radius: var(--job-radius);
    cursor: pointer;
    transition: var(--job-transition);
}

.benefit-checkbox:hover {
    background: var(--job-gray-100);
}

.benefit-checkbox input {
    display: none;
}

.benefit-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--job-gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--job-transition);
    flex-shrink: 0;
}

.benefit-checkbox input:checked + .benefit-checkmark {
    background: var(--job-success);
    border-color: var(--job-success);
}

.benefit-checkbox input:checked + .benefit-checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.benefit-label {
    font-size: 14px;
    color: var(--job-gray-700);
}

/* Submit Section */
.form-submit-section {
    background: #fff;
    border-radius: var(--job-radius-lg);
    padding: 24px;
    box-shadow: var(--job-shadow);
    text-align: center;
}

.form-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--job-gray-600);
    margin: 0 0 20px 0;
}

.form-notice svg {
    color: var(--job-info);
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--job-primary);
    color: #fff;
    border: none;
    border-radius: var(--job-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--job-transition);
}

.form-submit-btn:hover {
    background: var(--job-accent);
    transform: translateY(-2px);
    box-shadow: var(--job-shadow-md);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .job-listings-layout {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        display: none;
    }

    .job-detail-layout {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .job-list-title {
        font-size: 20px;
    }

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

    .job-detail-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-detail-meta-grid {
        gap: 12px;
    }

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

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

    .add-job-hero-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .job-card-header {
        flex-wrap: wrap;
    }

    .job-card-badge {
        order: -1;
        margin-left: auto;
    }

    .job-benefits-grid {
        grid-template-columns: 1fr;
    }

    .job-share-buttons {
        flex-wrap: wrap;
    }
}
