/* =============================================
   PERSONEL BEAUTY - Ana CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --black:      #0a0a0b;
  --dark:       #111113;
  --dark-card:  #18181c;
  --dark-border:#2a2a30;
  --gold:       #e6b830;
  --gold-light: #f5cd45;
  --gold-dark:  #b8920a;
  --crimson:    #b83232;
  --crimson-lt: #d43d3d;
  --white:      #f4f2ee;
  --muted:      #888896;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --transition: all 0.25s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; }

/* --- Yardımcılar --- */
.container { width: min(1200px, 94%); margin: 0 auto; }
.container-sm { width: min(800px, 94%); margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none; }

/* --- Tipografi --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { color: rgba(244,242,238,0.8); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.4rem 0;
  background: rgba(10,10,11,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--gold-dark); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); display: flex; align-items: center; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: rgba(244,242,238,0.75); font-size: 0.9rem; font-weight: 500; padding: 0.5rem 0.9rem; border-radius: 8px; letter-spacing: 0.02em; transition: var(--transition); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; gap: 0.5rem; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Menü renkli hover */
.nav-links li:nth-child(1) a:hover { background: rgba(201,168,76,0.15); color: #c9a84c; }
.nav-links li:nth-child(2) a:hover { background: rgba(232,153,74,0.15); color: #e8994a; }
.nav-links li:nth-child(3) a:hover { background: rgba(180,100,180,0.15); color: #cc88cc; }
.nav-links li:nth-child(4) a:hover { background: rgba(74,180,150,0.15); color: #4ab496; }

/* --- Butonlar --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.4rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-crimson { background: linear-gradient(135deg, var(--crimson-lt), var(--crimson)); color: var(--white); }
.btn-crimson:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,50,50,0.35); color: var(--white); }
.btn-outline { background: transparent; border: 1px solid var(--dark-border); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.btn-outline-gold { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.btn-lg { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp { background: #1a9e4a; color: #fff; }
.btn-whatsapp:hover { background: #158a3f; color: #fff; transform: translateY(-1px); }

/* --- Hero --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(184,50,50,0.06) 0%, transparent 60%), var(--black);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(244,242,238,0.7); margin-bottom: 2rem; max-width: 560px; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--dark-border); }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.hero-stat span { font-size: 0.85rem; color: var(--muted); }

/* --- İlan Kartları --- */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.25rem; }
.job-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.4rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: var(--transition);
}
.job-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.job-card:hover::before { opacity: 1; }
.job-card.featured { border-color: rgba(201,168,76,0.25); }
.job-card.featured::before { opacity: 0.6; }
.featured-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(201,168,76,0.12); color: var(--gold);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.job-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.job-card-title { font-size: 1rem; font-weight: 600; color: var(--white); }
.job-card-company { font-size: 0.85rem; color: var(--gold); margin-top: 0.2rem; }
.job-card-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.job-card-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }
.job-badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(244,242,238,0.7); font-size: 0.78rem; padding: 0.2rem 0.55rem; border-radius: 5px;
}
.job-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--dark-border); }
.job-salary { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }
.job-date { font-size: 0.78rem; color: var(--muted); }

/* --- Kategoriler --- */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.cat-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center;
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.cat-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-2px); }
.cat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cat-name { font-size: 0.85rem; color: var(--white); font-weight: 500; }
.cat-count { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* --- Şehirler --- */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
.city-item {
  background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 8px;
  padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.city-item:hover { border-color: var(--gold); color: var(--gold); }
.city-item span { font-size: 0.88rem; color: var(--white); }
.city-item small { font-size: 0.75rem; color: var(--muted); }

/* --- Avantaj Kartları --- */
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.adv-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 1.75rem; }
.adv-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.adv-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.adv-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* --- Nasıl Çalışır --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card { text-align: center; padding: 1.5rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step-card h4 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--muted); }

/* --- Formlar --- */
.form-section { min-height: 100vh; padding: 7rem 0 4rem; display: flex; align-items: center; }
.auth-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 520px; margin: 0 auto;
}
.auth-card h2 { margin-bottom: 0.4rem; }
.auth-card .subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: rgba(244,242,238,0.8); margin-bottom: 0.4rem; }
.form-control {
  width: 100%;
  background: #1a1a1f;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: auto;
  -webkit-appearance: auto;
}
.form-control:focus { border-color: var(--gold); background: #1e1e24; box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; background-color: #1a1a1f; color: var(--white); }
select.form-control option { background-color: #1a1a1f; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }
.form-divider {
  text-align: center; color: var(--muted); font-size: 0.85rem; margin: 1.25rem 0; position: relative;
}
.form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--dark-border); }
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* --- Alert --- */
.alert { padding: 0.85rem 1rem; border-radius: 8px; font-size: 0.88rem; margin-bottom: 1rem; }
.alert-success { background: rgba(26,158,74,0.12); border: 1px solid rgba(26,158,74,0.3); color: #5de08c; }
.alert-error   { background: rgba(184,50,50,0.12);  border: 1px solid rgba(184,50,50,0.3);  color: #e07070; }
.alert-warning { background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); }
.alert-info    { background: rgba(70,120,200,0.12); border: 1px solid rgba(70,120,200,0.3); color: #7fb0ee; }

/* --- Panel --- */
.panel-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar {
  background: var(--dark); border-right: 1px solid var(--dark-border);
  padding: 1.5rem 0; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar-logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid var(--dark-border); margin-bottom: 1rem; }
.sidebar-logo a { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.sidebar-logo a span { color: var(--gold); }
.sidebar-nav { padding: 0 0.75rem; }
.nav-section-title { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); padding: 0.5rem 0.75rem; margin-top: 1rem; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.65rem 0.85rem;
  border-radius: 8px; color: rgba(244,242,238,0.7); font-size: 0.88rem; font-weight: 500;
  transition: var(--transition); margin-bottom: 0.1rem;
}
.sidebar-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.sidebar-nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.sidebar-nav a .nav-icon { font-size: 1rem; width: 18px; text-align: center; }
.panel-content { padding: 2rem; background: var(--black); overflow-x: hidden; }
.panel-header { margin-bottom: 1.75rem; }
.panel-header h1 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.panel-header p { color: var(--muted); font-size: 0.9rem; }

/* --- Stat Kartları --- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 1.25rem; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.stat-card .stat-value { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.stat-card .stat-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }

/* --- Tablo --- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; }
.table th { background: var(--dark-card); border-bottom: 1px solid var(--dark-border); padding: 0.75rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--muted); text-align: left; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
.table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(42,42,48,0.6); font-size: 0.88rem; color: rgba(244,242,238,0.85); }
.table tr:hover td { background: rgba(255,255,255,0.02); }
.table tr:last-child td { border-bottom: none; }

/* --- Badge --- */
.badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.2rem 0.6rem; border-radius: 5px; font-size: 0.75rem; font-weight: 600; }
.badge-green  { background: rgba(26,158,74,0.15);  color: #5de08c; }
.badge-red    { background: rgba(184,50,50,0.15);   color: #e07070; }
.badge-gold   { background: rgba(201,168,76,0.15);  color: var(--gold); }
.badge-gray   { background: rgba(136,136,150,0.15); color: var(--muted); }
.badge-blue   { background: rgba(70,120,200,0.15);  color: #7fb0ee; }

/* --- Filtreler --- */
.filters-bar {
  background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; align-items: end;
}

/* --- Footer --- */
.footer { background: var(--dark); border-top: 1px solid var(--dark-border); padding: 4rem 0 2rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(244,242,238,0.65); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; gap: 0.5rem; }

/* --- Social Links --- */
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; transition: all .2s; text-decoration: none;
}
.social-link:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); transform: translateY(-2px); color: var(--gold); }

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 52px; height: 52px; background: #1a9e4a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 4px 15px rgba(26,158,74,0.4); transition: all .2s;
}
.wa-float:hover { transform: scale(1.1); background: #158a3f; color: #fff; }

/* --- Sayfalama --- */
.pagination { display: flex; gap: 0.4rem; align-items: center; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.88rem; font-weight: 500; color: var(--white); background: var(--dark-card); border: 1px solid var(--dark-border); transition: var(--transition); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .panel-layout { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: -280px; z-index: 200; height: 100vh; transition: left 0.3s ease; width: 260px; }
  .sidebar.open { left: 0; }
  .panel-content { padding: 1.25rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }

  .nav-links.open {
    display: flex !important; flex-direction: column !important;
    position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100vw !important; height: 100vh !important;
    background: #0a0a0b !important; z-index: 9999 !important;
    padding: 5rem 1.5rem 2rem !important;
    justify-content: flex-start !important; align-items: stretch !important; overflow-y: auto !important;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.07) !important; width: 100% !important; list-style: none !important; }
  .nav-links.open li:first-child { border-top: 1px solid rgba(255,255,255,0.07) !important; }
  .nav-links.open a { display: block !important; padding: 1.1rem 1rem 1.1rem 1.3rem !important; font-size: 1.1rem !important; font-weight: 500 !important; border-radius: 0 !important; background: transparent !important; }
  .nav-links.open li:nth-child(1) a { color: #c9a84c !important; border-left: 3px solid #c9a84c !important; }
  .nav-links.open li:nth-child(2) a { color: #e8994a !important; border-left: 3px solid #e8994a !important; }
  .nav-links.open li:nth-child(3) a { color: #cc88cc !important; border-left: 3px solid #cc88cc !important; }
  .nav-links.open li:nth-child(4) a { color: #4ab496 !important; border-left: 3px solid #4ab496 !important; }
  .nav-links.open li:nth-child(5) a { color: #c9a84c !important; border-left: 3px solid #c9a84c !important; }
  .hamburger.open { position: fixed !important; top: 1rem !important; right: 1.25rem !important; z-index: 10000 !important; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px) !important; }
  .hamburger.open span:nth-child(2) { opacity: 0 !important; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px) !important; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .jobs-grid { grid-template-columns: 1fr; }
  .filters-bar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-actions { flex-direction: column; }
  .auth-card { padding: 1.5rem; }
}
@media (min-width: 769px) {
  .nav-links { display: flex !important; }
  .nav-cta { display: flex !important; }
}
