/* ===== DAILY JOB SUCHNA — PUBLIC STYLES v2 ===== */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #EFF6FF;
  --secondary: #059669;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --bg: #F1F5F9;
  --bg-subtle: #E2E8F0;
  --card: #FFFFFF;
  --text: #0F172A;
  --text-secondary: #334155;
  --muted: #64748B;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --telegram: #229ED9;
  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow: 0 1px 3px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.04);
  --shadow-md: 0 8px 30px rgba(15,23,42,.1);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.12);
  --font-en: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-hi: 'Noto Sans Devanagari', sans-serif;
  --bottom-nav-h: 72px;
  --header-h: 60px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 8px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--primary-light); color: var(--primary-dark); }

/* ===== BREAKING BAR ===== */
.breaking-bar {
  background: linear-gradient(90deg, #DC2626, #B91C1C);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 38px;
  font-size: 13px;
}
.breaking-label {
  background: #0F172A;
  color: var(--accent);
  font-weight: 700;
  padding: 0 16px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
}
.breaking-label::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #0F172A;
}
.breaking-ticker { flex: 1; overflow: hidden; position: relative; }
.ticker-content {
  display: flex;
  gap: 28px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
}
.ticker-content a { color: #fff; font-weight: 500; font-size: 13px; }
.ticker-content a:hover { text-decoration: underline; }
.ticker-sep { color: rgba(255,255,255,.4); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), #1e40af);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-en {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-hi {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-hi);
  font-weight: 600;
}
.header-actions { display: flex; gap: 6px; flex-shrink: 0; }
.icon-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 9px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  width: 40px;
  height: 40px;
}
.icon-btn:hover { background: var(--primary-light); color: var(--primary); border-color: #BFDBFE; }
.icon-btn:active { transform: scale(.95); }

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: min(300px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--card);
  z-index: 300;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(15,23,42,.15);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--primary), #1e40af);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.nav-header .icon-btn {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.nav-links { list-style: none; padding: 12px 0; flex: 1; }
.nav-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  border-left: 3px solid transparent;
}
.nav-links li a:hover,
.nav-links li a:active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
}
.nav-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }
.nav-sep { border-top: 1px solid var(--border); margin: 8px 16px; }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(2px);
  z-index: 250;
  opacity: 0;
  transition: opacity .3s;
}
.nav-overlay.show { display: block; opacity: 1; }

/* ===== MAIN LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px 0 32px;
}
@media(min-width:900px) {
  .page-grid { grid-template-columns: 1fr 320px; }
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.2px;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary), #1e40af);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(145deg, #1e40af 0%, var(--primary) 40%, #3B82F6 100%);
  color: #fff;
  padding: 36px 16px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 24px;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.5px;
}
.hero-sub {
  font-family: var(--font-hi);
  font-size: 14px;
  opacity: .9;
  margin-bottom: 6px;
  font-weight: 500;
}
.hero p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.search-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 5px;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.search-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 15px;
  outline: none;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  min-width: 0;
}
.search-input::placeholder { color: var(--muted); }
.search-btn {
  background: var(--accent);
  color: #0F172A;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  font-family: inherit;
}
.search-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,.4); }
.hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 20px; font-weight: 800; display: block; }
.hero-stat-label { font-size: 11px; opacity: .75; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.3;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--border); box-shadow: none; }
.btn-outline:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.hero .btn-outline,
.telegram-card .btn-outline {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.hero .btn-outline:hover,
.telegram-card .btn-outline:hover { background: rgba(255,255,255,.22); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--border); box-shadow: none; }
.btn-outline-dark:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.btn-accent { background: var(--accent); color: #0F172A; }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-dark { background: #1e293b; color: #fff; }
.btn-telegram { background: var(--telegram); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-xs); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media(min-width:480px) { .category-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media(min-width:768px) { .category-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 8px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #3B82F6);
  opacity: 0;
  transition: opacity .25s;
}
.category-card:hover,
.category-card:active {
  border-color: #BFDBFE;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 8px;
  transition: transform .25s;
}
.category-card:hover .category-icon { transform: scale(1.08); }
.category-name { font-size: 11px; font-weight: 700; line-height: 1.35; color: var(--text-secondary); }
.category-card:hover .category-name { color: var(--primary); }

/* ===== JOB CARDS ===== */
.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: all .2s;
  position: relative;
}
.job-card::before {
  content: '';
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 3px;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity .2s;
}
.job-card:hover { border-color: #BFDBFE; box-shadow: var(--shadow-md); }
.job-card:hover::before { opacity: 1; }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.job-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; margin: 0; letter-spacing: -.2px; }
.job-title a { color: inherit; }
.job-title a:hover { color: var(--primary); }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.badge-primary { background: #DBEAFE; color: #1D4ED8; }
.badge-success { background: #D1FAE5; color: #047857; }
.badge-warning { background: #FEF3C7; color: #B45309; }
.badge-danger  { background: #FEE2E2; color: #DC2626; }
.badge-gray    { background: #F1F5F9; color: #475569; }
.badge-purple  { background: #EDE9FE; color: #6D28D9; }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.job-meta-item { display: flex; align-items: center; gap: 4px; font-weight: 500; }
.job-desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }
.job-card-footer { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 8px; }
.expired-badge {
  display: inline-block;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .3px;
  flex-shrink: 0;
}

/* ===== JOB DETAIL ===== */
.job-detail-header { padding: 20px; border-bottom: 1px solid var(--border); }
.job-detail-header h1 { font-size: clamp(18px, 4vw, 24px); font-weight: 800; margin-bottom: 10px; line-height: 1.35; letter-spacing: -.3px; }
.job-info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
}
.job-info-box p { font-size: 13px; color: var(--text-secondary); }
.detail-section { padding: 20px; border-bottom: 1px solid var(--border); }
.detail-section:last-child { border-bottom: none; }
.detail-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table td { padding: 10px 12px; border: 1px solid var(--border); vertical-align: top; }
.info-table td:first-child { font-weight: 600; white-space: nowrap; background: #F8FAFC; width: 38%; color: var(--text-secondary); }
.important-links { display: flex; flex-direction: column; gap: 10px; }
.important-links .btn { justify-content: center; }
.disclaimer-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 13px;
  color: #92400E;
  margin: 20px 0;
  line-height: 1.6;
}

/* ===== CHIPS ===== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all .2s;
}
.chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

/* ===== SECTION ===== */
.section { padding: 24px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  padding: 6px 12px;
  background: var(--primary-light);
  border-radius: 50px;
  transition: all .2s;
}
.view-all:hover { background: var(--primary); color: #fff; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { padding: 18px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.sidebar-links { list-style: none; }
.sidebar-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  gap: 8px;
  transition: color .15s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--primary); }

/* ===== SEARCH ===== */
.search-section {
  padding: 18px;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin: 20px 0;
  border: 1px solid var(--border);
}
.search-bar { display: flex; gap: 8px; }
.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  transition: border .2s, box-shadow .2s;
  font-family: inherit;
  min-width: 0;
}
.search-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.search-bar button {
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  transition: background .2s;
}
.search-bar button:hover { background: var(--primary-dark); }

/* ===== TELEGRAM CARD ===== */
.telegram-card {
  background: linear-gradient(135deg, #229ED9 0%, #1a7fb5 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(34,158,217,.25);
}
.telegram-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.telegram-card p { font-size: 13px; opacity: .9; margin-bottom: 16px; line-height: 1.5; }

/* ===== TABLE ===== */
.responsive-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  background: #F8FAFC;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
}
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #F8FAFC; }

/* ===== PAGINATION ===== */
.pagination-nav { margin: 28px 0; display: flex; justify-content: center; }
.pagination { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; justify-content: center; }
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.page-link:hover, .page-link.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

/* ===== BREADCRUMB ===== */
.breadcrumbs { padding: 14px 0 4px; font-size: 13px; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; align-items: center; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; color: var(--muted); margin-right: 6px; font-weight: 600; }
.breadcrumb-item.active { color: var(--muted); font-weight: 500; }
.breadcrumb-item a { color: var(--primary); font-weight: 500; }

/* ===== SOCIAL BUTTONS ===== */
.btn-social {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin: 4px;
  transition: all .2s;
}
.btn-social:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; }
.btn-telegram { background: var(--telegram); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-instagram { background: linear-gradient(45deg,#833AB4,#C13584,#E1306C); color: #fff; }
.btn-facebook { background: #1877F2; color: #fff; }

/* ===== FLOATING TELEGRAM ===== */
.float-telegram {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 12px);
  right: 16px;
  background: var(--telegram);
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(34,158,217,.4);
  z-index: 90;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.float-telegram:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(34,158,217,.5); text-decoration: none; color: #fff; }
.float-telegram svg { flex-shrink: 0; }

/* ===== BOTTOM NAV — APP STYLE ===== */
.bottom-nav-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 12px calc(8px + var(--safe-bottom));
  pointer-events: none;
}
.bottom-nav {
  pointer-events: auto;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  height: var(--bottom-nav-h);
  box-shadow: 0 -4px 30px rgba(15,23,42,.12), 0 8px 32px rgba(15,23,42,.08);
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  padding: 8px 4px 10px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item svg {
  width: 22px;
  height: 22px;
  transition: transform .25s;
}
.bottom-nav-item span { letter-spacing: .2px; }
.bottom-nav-item:hover { color: var(--primary); text-decoration: none; }
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item.active svg { transform: scale(1.1); }
.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 4px;
}
.bottom-nav-item.active .nav-icon-wrap {
  background: var(--primary-light);
  color: var(--primary);
}
.nav-icon-wrap {
  width: 36px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all .25s;
}
/* Center FAB button */
.bottom-nav-fab {
  flex: 0 0 auto;
  margin: 0 2px;
  position: relative;
  top: -18px;
}
.bottom-nav-fab .fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1e40af);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  text-decoration: none;
  transition: all .25s;
  border: 3px solid #fff;
}
.bottom-nav-fab .fab-btn svg { width: 22px; height: 22px; }
.bottom-nav-fab .fab-btn span { font-size: 9px; font-weight: 700; letter-spacing: .3px; }
.bottom-nav-fab .fab-btn:hover,
.bottom-nav-fab .fab-btn.active {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37,99,235,.55);
  color: #fff;
  text-decoration: none;
}
.bottom-nav-fab .fab-btn.active {
  background: linear-gradient(135deg, #1e40af, var(--primary-dark));
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: #94A3B8;
  padding: 40px 16px 24px;
  margin-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media(min-width:600px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand h3 { color: #fff; font-size: 18px; margin-bottom: 4px; font-weight: 800; }
.footer-hi { font-family: var(--font-hi); color: var(--accent); font-size: 14px; margin-bottom: 10px; font-weight: 600; }
.footer-desc { font-size: 13px; color: #64748B; line-height: 1.6; }
.footer-links h4 { color: #fff; margin-bottom: 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #94A3B8; font-size: 13px; font-weight: 500; transition: color .2s; }
.footer-links ul li a:hover { color: #fff; }
.footer-social h4 { color: #fff; margin-bottom: 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.social-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid #334155;
  text-align: center;
  font-size: 13px;
  color: #64748B;
}
.footer-disclaimer-small { margin-top: 8px; font-size: 11px; color: #475569; font-family: var(--font-hi); }

/* ===== AD ===== */
.ad-container { text-align: center; padding: 12px 0; overflow: hidden; }

/* ===== LATEST JOB LINKS ===== */
.link-page { max-width: 640px; margin: 0 auto; padding: 16px; }
.link-header { text-align: center; padding: 24px 0 20px; }
.link-header h1 { font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -.3px; }
.quick-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.link-job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  transition: border-color .2s;
}
.link-job-card:hover { border-color: #BFDBFE; }
.link-job-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.link-job-meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; color: var(--text); margin-bottom: 8px; font-weight: 700; }

/* ===== SEO CONTENT BOX ===== */
.seo-content-box { padding: 20px; }
.seo-content-box h2 { font-size: 16px; margin-bottom: 10px; font-weight: 700; color: var(--text); }
.seo-content-box p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero-mini {
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 8px;
}
.page-hero-mini h1 { font-size: clamp(18px, 4vw, 24px); font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.page-hero-mini p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ===== UTILITY ===== */
.mt-0{margin-top:0} .mt-1{margin-top:8px} .mt-2{margin-top:16px} .mt-3{margin-top:24px} .mt-4{margin-top:32px}
.mb-0{margin-bottom:0} .mb-1{margin-bottom:8px} .mb-2{margin-bottom:16px} .mb-3{margin-bottom:24px}
.p-0{padding:0} .p-1{padding:8px} .p-2{padding:16px} .p-3{padding:24px}
.text-center{text-align:center} .text-muted{color:var(--muted)} .text-danger{color:var(--danger)}
.fw-bold{font-weight:700} .w-100{width:100%}
.d-flex{display:flex} .align-center{align-items:center} .gap-1{gap:8px} .gap-2{gap:16px}
.flex-wrap{flex-wrap:wrap}
.alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; color: #1D4ED8; margin-bottom: 16px; }
.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; color: #047857; margin-bottom: 16px; }

/* ===== DESKTOP OVERRIDES ===== */
@media(min-width:900px) {
  body { padding-bottom: 0; }
  .bottom-nav-wrapper { display: none; }
  .float-telegram { bottom: 24px; }
  .site-footer { margin-bottom: 0; }
  .hamburger { display: none !important; }
  .desktop-nav {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .desktop-nav a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all .15s;
  }
  .desktop-nav a:hover { background: var(--primary-light); color: var(--primary); }
  .hero { padding: 56px 16px 64px; }
  .hero::after { height: 32px; border-radius: 32px 32px 0 0; }
  .job-card { padding: 20px; }
  .job-title { font-size: 17px; }
}

@media(max-width:899px) {
  .desktop-nav { display: none; }
  .float-telegram span { display: none; }
  .float-telegram { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

@media(max-width:380px) {
  .bottom-nav-item span { font-size: 9px; }
  .bottom-nav-item svg { width: 20px; height: 20px; }
  .bottom-nav-fab .fab-btn { width: 50px; height: 50px; }
  .category-name { font-size: 10px; }
  .category-icon { width: 38px; height: 38px; font-size: 18px; }
}
