/* ===== IMKIS — Global Stylesheet ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --yellow:       #FFDE00;
  --yellow-dark:  #e8c800;
  --yellow-light: #fff7b0;
  --dark:         #0C0606;
  --dark-2:       #1a1010;
  --gray:         #565656;
  --gray-light:   #888888;
  --white:        #FFFFFF;
  --off-white:    #F8F8F6;
  --border:       #E4E4E4;
  --shadow:       0 2px 12px rgba(12,6,6,0.10);
  --shadow-lg:    0 8px 32px rgba(12,6,6,0.15);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.22s ease;
  --max-width:    1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.text-gray   { color: var(--gray); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}
.badge-yellow  { background: var(--yellow); color: var(--dark); }
.badge-dark    { background: var(--dark); color: var(--white); }
.badge-gray    { background: var(--border); color: var(--gray); }
.badge-green   { background: #d4f5e2; color: #1a7a45; }
.badge-blue    { background: #dceeff; color: #1a5c9e; }
.badge-orange  { background: #ffe4cc; color: #a35000; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow); color: var(--dark); border-color: var(--yellow);
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--dark); border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 17px; border-radius: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center;
  font-size: 26px; font-weight: 900; letter-spacing: -1px;
  color: var(--yellow);
}
.nav-logo span { color: var(--white); }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
.auth-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; flex: 1;
  padding-left: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-user { color: var(--white); font-size: 14px; font-weight: 500; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 22px; }

/* ===== NAV MEMBER SEARCH ===== */
.nav-member-search {
  position: relative; display: flex; align-items: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 0 10px; gap: 6px;
  transition: var(--transition);
}
.nav-member-search:focus-within {
  background: rgba(255,255,255,.2); border-color: var(--yellow);
}
.nav-member-search i { color: rgba(255,255,255,.5); font-size: 12px; flex-shrink: 0; }
.nav-member-search input {
  background: none; border: none; outline: none;
  color: var(--white); font-size: 13px; width: 170px; padding: 7px 0; min-width: 0;
}
.mobile-menu .nav-member-search {
  display: flex; width: 100%; box-sizing: border-box;
}
.mobile-menu .nav-member-search input { width: 100%; }
.nav-member-search input::placeholder { color: rgba(255,255,255,.45); }
.nav-search-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); overflow: hidden; z-index: 999; min-width: 240px;
}
.nav-search-dropdown.open { display: block; }
.nav-search-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; transition: background .15s; text-decoration: none;
  color: var(--dark); border-bottom: 1px solid var(--border);
}
.nav-search-item:last-child { border-bottom: none; }
.nav-search-item:hover { background: var(--yellow-light); }
.nsi-icon { font-size: 18px; flex-shrink: 0; }
.nsi-info { display: flex; flex-direction: column; }
.nsi-info strong { font-size: 13px; font-weight: 700; }
.nsi-info small { font-size: 11px; color: var(--gray); }
.nav-search-empty { padding: 12px 14px; color: var(--gray); font-size: 13px; text-align: center; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.08); border-radius: 8px; padding: 3px;
}
.lang-switcher button {
  background: none; border: none; cursor: pointer;
  font-size: 18px; padding: 3px 5px; border-radius: 6px;
  opacity: .5; transition: var(--transition); line-height: 1;
}
.lang-switcher button:hover { opacity: .85; background: rgba(255,255,255,.12); }
.lang-switcher button.lang-active { opacity: 1; background: rgba(255,255,255,.18); }

/* ===== FOOTER ===== */
#footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 60px 0 40px;
}
.footer-brand .nav-logo { font-size: 30px; margin-bottom: 14px; }
.footer-brand .footer-logo-img { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--dark); }

/* ===== HERO ===== */
.hero {
  background: var(--dark) url('IMKIS_background.svg') center center / cover no-repeat;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,222,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 700px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,222,0,.15); color: var(--yellow);
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p { color: rgba(255,255,255,.7); font-size: 18px; margin-bottom: 36px; max-width: 540px; }

.search-bar {
  display: flex; background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-lg); max-width: 620px;
}
.search-bar input {
  flex: 1; padding: 16px 20px; border: none; outline: none;
  font-size: 15px; color: var(--dark);
}
.search-bar select {
  padding: 16px 16px; border: none; border-left: 1px solid var(--border);
  background: var(--off-white); font-size: 14px; color: var(--gray);
  outline: none; cursor: pointer; min-width: 150px;
}
.search-bar .btn { border-radius: 0 10px 10px 0; padding: 16px 28px; }

.hero-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags span { font-size: 13px; color: rgba(255,255,255,.5); }
.hero-tags a {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  padding: 4px 12px; border-radius: 20px; font-size: 13px;
  transition: var(--transition);
}
.hero-tags a:hover { background: var(--yellow); color: var(--dark); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--yellow);
  padding: 28px 0;
}
.stats-grid {
  display: flex; justify-content: space-around; align-items: center;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .number { font-size: 32px; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-item .label  { font-size: 13px; font-weight: 600; color: rgba(12,6,6,.65); margin-top: 4px; }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block; background: var(--yellow-light); color: var(--dark);
  padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: .4px;
}
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; }
.section-header p  { color: var(--gray); font-size: 17px; margin-top: 10px; max-width: 560px; }
.section-header.text-center p  { margin-left: auto; margin-right: auto; }
.section-header.text-center h2 { margin-left: auto; margin-right: auto; }

/* ===== JOB CARDS ===== */
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.job-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition); cursor: pointer;
}
.job-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.job-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.job-logo {
  width: 50px; height: 50px; border-radius: 10px;
  background: var(--yellow-light); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.job-card-title { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.job-card-company { font-size: 14px; color: var(--gray); }
.job-card-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.job-card-meta .meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--gray);
}
.job-card-meta .meta-item i { color: var(--yellow-dark); font-size: 12px; }
.job-card-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; }
.job-salary { font-size: 16px; font-weight: 700; color: var(--dark); }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.step-card { text-align: center; padding: 36px 28px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--dark); color: var(--yellow);
  font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--gray); font-size: 15px; }

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.category-card {
  background: var(--off-white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 16px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.category-card:hover { border-color: var(--yellow); background: var(--yellow-light); }
.category-card .cat-icon { font-size: 28px; margin-bottom: 10px; }
.category-card .cat-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.category-card .cat-count { font-size: 12px; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--dark); border-radius: var(--radius-lg);
  padding: 60px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  margin: 0 24px;
}
.cta-banner h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,.65); font-size: 16px; max-width: 500px; }
.cta-actions   { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--dark); margin-bottom: 7px;
}
.form-group label .req { color: #e05555; margin-left: 3px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 15px; color: var(--dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,222,0,.2); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 12px; color: var(--gray-light); margin-top: 5px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark); padding: 52px 0; margin-bottom: 0;
}
.page-hero h1 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 16px; }

/* ===== FILTERS BAR ===== */
.filters-bar {
  background: var(--white); border-bottom: 2px solid var(--border);
  padding: 20px 0; position: sticky; top: 68px; z-index: 100;
}
.filters-inner {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.filter-select {
  padding: 9px 14px; border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 14px; background: var(--white); cursor: pointer; outline: none;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--yellow); }
.filter-search {
  flex: 1; min-width: 200px;
  padding: 9px 14px 9px 36px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 14px; outline: none; transition: var(--transition);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 10px center no-repeat;
}
.filter-search:focus { border-color: var(--yellow); }

/* ===== JOBS LIST PAGE ===== */
.jobs-layout { display: grid; grid-template-columns: 1fr; gap: 16px; }
.job-list-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 26px;
  display: flex; align-items: center; gap: 20px;
  transition: var(--transition);
}
.job-list-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.job-list-logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--yellow-light); display: flex; align-items: center;
  justify-content: center; font-size: 26px; flex-shrink: 0;
}
.job-list-body { flex: 1; }
.job-list-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.job-list-company { font-size: 14px; color: var(--gray); margin-bottom: 10px; }
.job-list-meta { display: flex; flex-wrap: wrap; gap: 14px; }
.job-list-meta span { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.job-list-meta span i { color: var(--yellow-dark); }
.job-list-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.job-list-salary { font-size: 17px; font-weight: 700; }
.job-list-date { font-size: 12px; color: var(--gray-light); }

/* ===== AUTH PAGES ===== */
.auth-wrapper {
  min-height: calc(100vh - 68px);
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
}
.auth-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 48px;
  width: 100%; max-width: 500px;
}
.auth-card .logo { display: inline-block; font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.auth-card .logo span { color: var(--yellow); }
.auth-logo-img { height: 38px; width: auto; display: block; }
.auth-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.auth-card .subtitle { color: var(--gray); font-size: 15px; margin-bottom: 32px; }
.auth-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.auth-tab {
  flex: 1; padding: 12px; text-align: center; font-size: 15px; font-weight: 600;
  color: var(--gray); cursor: pointer; transition: var(--transition); border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.auth-tab.active { color: var(--dark); border-bottom-color: var(--yellow); }
.auth-footer-link { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray); }
.auth-footer-link a { color: var(--dark); font-weight: 700; }
.auth-footer-link a:hover { text-decoration: underline; }
.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { color: var(--gray-light); font-size: 13px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(12,6,6,.65);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .22s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 36px; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform .22s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.modal-header h3 { font-size: 22px; font-weight: 800; }
.modal-close { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--gray); padding: 4px; transition: var(--transition); }
.modal-close:hover { color: var(--dark); }
.modal-job-info { background: var(--off-white); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; }
.modal-job-info .job-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.modal-job-info .job-company { font-size: 14px; color: var(--gray); }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.contact-info p  { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; align-items: center; gap: 14px; }
.contact-detail-icon {
  width: 44px; height: 44px; background: var(--yellow);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-label { font-size: 12px; color: var(--gray); }
.contact-detail-value { font-size: 15px; font-weight: 600; }
.contact-form-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }

/* ===== POST JOB PAGE ===== */
.post-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.post-form-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.post-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.post-sidebar .sidebar-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 20px;
}
.post-sidebar .sidebar-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.post-sidebar .sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.post-sidebar .sidebar-card li {
  font-size: 14px; color: var(--gray);
  display: flex; align-items: flex-start; gap: 8px;
}
.post-sidebar .sidebar-card li::before { content: '✓'; color: var(--yellow-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tip-card { background: var(--dark); border-radius: var(--radius-lg); padding: 28px; }
.tip-card h4 { font-size: 16px; font-weight: 700; color: var(--yellow); margin-bottom: 10px; }
.tip-card p  { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ===== HOW-IT-WORKS TOGGLE ===== */
.how-toggle-wrap {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 48px;
}
.how-toggle-btn {
  padding: 10px 28px; border-radius: 50px;
  border: 2px solid var(--border); background: var(--white);
  font-size: 14px; font-weight: 700; cursor: pointer;
  color: var(--gray); transition: var(--transition);
}
.how-toggle-btn:hover { border-color: var(--yellow); color: var(--dark); }
.how-toggle-btn.active {
  background: var(--dark); border-color: var(--dark);
  color: var(--white);
}

/* ===== PRICING PLANS ===== */
.pricing-plan {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column; gap: 0;
}
.pricing-plan:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.pricing-plan.plan-featured { border-color: var(--yellow); background: var(--yellow-light); }
.pricing-plan.plan-selected { border-color: var(--dark); background: var(--off-white); transform: scale(.97); }
.plan-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px; margin-bottom: 14px; width: fit-content;
}
.plan-price { font-size: 30px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.plan-name { font-size: 13px; font-weight: 700; color: var(--gray); margin-bottom: 18px; letter-spacing: .3px; text-transform: uppercase; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 20px; }
.plan-features li { font-size: 13px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.plan-features li i { font-size: 11px; width: 14px; flex-shrink: 0; }
.plan-btn { margin-top: auto; }
@media(max-width:640px) { #pricingCards { grid-template-columns: 1fr !important; } }

/* ===== ALERTS / TOASTS ===== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--dark); color: var(--white);
  padding: 14px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); animation: slideUp .25s ease;
  max-width: 340px;
}
.toast.success { border-left: 4px solid #22c55e; }
.toast.error   { border-left: 4px solid #ef4444; }
.toast.info    { border-left: 4px solid var(--yellow); }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state .icon { font-size: 56px; margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.empty-state p  { color: var(--gray); margin-bottom: 24px; }

/* ===== JOB DETAIL (in modal) ===== */
.detail-section { margin-bottom: 20px; }
.detail-section h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.detail-section p, .detail-section ul { font-size: 14px; color: var(--gray); line-height: 1.7; }
.detail-section ul { padding-left: 16px; }
.detail-section ul li { margin-bottom: 4px; list-style: disc; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--dark);
  z-index: 999; padding: 80px 24px 40px; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 20px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ===== NAV USER LINK ===== */
a.nav-user {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; transition: var(--transition);
  text-decoration: none;
}
a.nav-user:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ===== PROFILE PAGE ===== */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
  padding: 48px 0 80px;
}
.profile-sidebar {}
.profile-main { display: flex; flex-direction: column; gap: 20px; }

/* Sidebar card */
.profile-id-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.profile-id-top {
  background: var(--dark);
  padding: 32px 24px 20px;
  text-align: center;
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,255,255,.15);
}
.profile-id-name {
  font-size: 18px; font-weight: 800; color: var(--white);
  margin-bottom: 4px;
}
.profile-id-title {
  font-size: 13px; color: rgba(255,255,255,.6);
}
.profile-id-body { padding: 20px 24px; }
.profile-id-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray);
  margin-bottom: 12px;
}
.profile-id-row i { width: 16px; margin-top: 2px; color: var(--yellow); flex-shrink: 0; }
.profile-id-row span { line-height: 1.4; }
.profile-completeness { padding: 16px 24px; border-top: 1px solid var(--border); }
.profile-completeness-label {
  font-size: 12px; font-weight: 600; color: var(--gray);
  margin-bottom: 8px; display: flex; justify-content: space-between;
}
.progress-bar {
  height: 6px; background: var(--border); border-radius: 10px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--yellow); border-radius: 10px;
  transition: width .4s ease;
}

/* Section cards */
.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 32px;
}
.profile-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.profile-card-header h3 {
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.profile-card-header h3 i { color: var(--yellow); }

/* Chips (skills / languages) */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  font-size: 13px; font-weight: 500; color: var(--dark);
}
.chip.chip-yellow { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

/* Edit mode */
.profile-edit-actions {
  display: flex; gap: 10px; margin-top: 24px;
}
.view-mode-content { }
.edit-mode-content { display: none; }
.profile-page.editing .view-mode-content { display: none; }
.profile-page.editing .edit-mode-content { display: block; }

/* Profile grid inside edit card */
.profile-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.profile-empty {
  color: var(--gray-light); font-size: 14px; font-style: italic;
}

/* ===== LOCATION HIGHLIGHT ===== */
.location-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--yellow); color: var(--dark);
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px; border-radius: 6px;
}
.location-tag i { font-size: 10px; }

/* ===== JOB INITIALS BADGE ===== */
.job-initials-badge {
  width: 100%; height: 100%;
  border-radius: inherit;
  background: var(--dark);
  color: var(--yellow);
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .5px;
}
.job-list-logo .job-initials-badge { font-size: 14px; }

/* ===== IMAGE GALLERY ===== */
.job-img-gallery {
  display: flex; gap: 10px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.job-img-gallery img {
  width: 260px; height: 160px; flex-shrink: 0;
  object-fit: cover; border-radius: var(--radius);
  scroll-snap-align: start; cursor: pointer;
  transition: var(--transition);
}
.job-img-gallery img:hover { opacity: .85; transform: scale(1.02); }

/* ===== AVATAR PHOTO UPLOAD ===== */
.avatar-upload-wrap {
  position: relative; display: inline-block;
  cursor: pointer;
}
.avatar-upload-wrap:hover .avatar-upload-hint { opacity: 1; }
.avatar-upload-hint {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(12,6,6,.55);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  color: var(--white); font-size: 12px; font-weight: 600;
  opacity: 0; transition: var(--transition);
  pointer-events: none;
}
.avatar-upload-hint i { font-size: 18px; }
.avatar-upload-input { display: none; }

/* ===== REVIEW STARS ===== */
.star-picker { display: flex; gap: 4px; }
.star-picker span {
  font-size: 26px; cursor: pointer; color: var(--border);
  transition: color .15s;
}
.star-picker span.active, .star-picker span:hover { color: var(--yellow); }

/* ===== REVIEWS CARD ===== */
.review-item {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.review-item:first-child { border-top: none; }
.review-author { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.review-comment { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== COMPLETION COUNTER BADGE ===== */
.counter-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--yellow); border-radius: var(--radius);
  padding: 10px 16px; margin-top: 14px;
  font-weight: 800; font-size: 15px; color: var(--dark);
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr; gap: 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; margin: 0 12px; padding: 40px 28px; }
  .cta-banner p { max-width: 100%; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-member-search { display: none; }
  .lang-switcher { display: none; }
  .nav-burger { display: block; }
  .hero { padding: 60px 0 50px; }
  .search-bar { flex-direction: column; border-radius: 12px; gap: 0; }
  .search-bar input, .search-bar select { border: none; border-bottom: 1px solid var(--border); }
  .search-bar .btn { border-radius: 0 0 10px 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .jobs-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .job-list-card { flex-direction: column; align-items: flex-start; }
  .job-list-actions { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .auth-card { padding: 28px 20px; }
  .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
