/* ===========================
   LUMESTEA CAREERS — GLOBAL CSS
   Brand: Dark + Orange→Purple gradient
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #060608;
  --bg-card: #0d0d12;
  --bg-card-hover: #131320;
  --bg-elevated: #111118;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --text: #F0EFF8;
  --text-muted: #7A7990;
  --text-dim: #4A4960;
  --orange: #FF6225;
  --orange-light: #FF8A50;
  --purple: #7B3FE4;
  --purple-light: #A855F7;
  --pink: #C44B8A;
  --grad: linear-gradient(135deg, #FF6225 0%, #C44B8A 50%, #7B3FE4 100%);
  --grad-text: linear-gradient(135deg, #FF8A50 0%, #D460A0 45%, #A855F7 100%);
  --accent-green: #34D399;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 68px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ===== NAV ===== */
/* --- Global Nav Force Row --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 70px;
  background: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

/* Bottom Line */
.nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FC6115, #FC6115, transparent);
  background-size: 200% 100%;
  animation: nav-line 6s linear infinite;
}

/* --- Logo Styling --- */
.nav-logo {
  position: relative;
  display: flex !important;
  flex-shrink: 0 !important;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.nav-logo::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(transparent, transparent, transparent, #FC6115);
  animation: rotate-border 6s linear infinite;
  z-index: -2;
}

.nav-logo::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: #060608;
  border-radius: 11px;
  z-index: -1;
}

.nav-logo img {
  height: 40px !important;
  width: auto;
}

/* --- Container for Social & Admin --- */
.nav-links {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Social Icons Staggered --- */
.nav-social {
  position: relative;
  display: flex !important;
  flex-shrink: 0 !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(252, 97, 21, 0.15);
}

.nav-social::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(transparent, transparent, transparent, #FC6115);
  animation: rotate-border 4s linear infinite;
  z-index: -2;
}

.nav-social:nth-child(1)::before { animation-delay: 0s; }
.nav-social:nth-child(2)::before { animation-delay: 1.3s; }
.nav-social:nth-child(3)::before { animation-delay: 2.6s; }

.nav-social::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: #060608;
  border-radius: 50%;
  z-index: -1;
}

/* --- Admin Button with Running Border --- */
.btn-outline-sm {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  color: #fff !important; /* Force White Color */
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

.btn-outline-sm::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(transparent, transparent, transparent, #FC6115);
  animation: rotate-border 4s linear infinite;
  z-index: -2;
}

.btn-outline-sm::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: #060608; /* Dark box inside */
  border-radius: 7px;
  z-index: -1;
}

/* --- Animations --- */
@keyframes nav-line {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes rotate-border {
  100% { transform: rotate(360deg); }
}

/* Hover Effect for Admin */
.btn-outline-sm:hover::after {
  background: rgba(252, 97, 21, 0.1); /* Slight orange tint on hover */
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 4rem 2rem 6rem;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,98,37,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,63,228,0.15) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px, -40px); }
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 780px;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #FC6115;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(252, 97, 21, 0.2);
  
  /* Margin Adjustments */
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  
  /* Outer Glow/Shadow */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(252, 97, 21, 0.1);
}

.hero-badge::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 2px;
  border-radius: 100px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    #FC6115 50%, 
    transparent 100%
  );
  background-size: 200% 100%;
  animation: ping-pong-border 4s ease-in-out infinite;
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

@keyframes ping-pong-border {
  0% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
  51% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(252, 97, 21, 0.4);
  transition: 0.3s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  animation: fadeUp 0.6s ease 0.1s both;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 1.5rem auto;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s ease 0.3s both;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Social Wrapper Spacing */
.social-wrapper {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

/* Normal State: Black BG, Orange Icon & Border */
.social-circle {
  width: 38px;
  height: 38px;
  background-color: #000000; /* Black Background */
  border: 1.5px solid #FC6115; /* Orange Border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FC6115 !important; /* Orange Icon Color */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover State: Orange BG, Black Icon */
.social-circle:hover {
  background-color: #FC6115; /* Orange Background on Hover */
  color: #000000 !important; /* Black Icon Color on Hover */
  transform: translateY(-5px) rotate(360deg); /* Modern Spin + Lift effect */
  box-shadow: 0 0 15px rgba(252, 97, 21, 0.5); /* Subtle Orange Glow */
}
/* ===== FILTER ===== */
.filter-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}

.filter-bar {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative; flex: 1; min-width: 220px;
}

.search-icon {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.search-input:focus { outline: none; border-color: var(--orange); }

.filter-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.65rem 2rem 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%237A7990' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color 0.2s;
}
.filter-select:focus { outline: none; border-color: var(--orange); }

.results-count {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== JOBS SECTION ===== */
.jobs-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem 4rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative; overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.job-card.visible { opacity: 1; transform: translateY(0); }
.job-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.job-card:hover::before { opacity: 1; }

.job-card-header {
  display: flex; align-items: center; justify-content: space-between;
}

.job-dept-badge {
  background: rgba(123,63,228,0.15);
  border: 1px solid rgba(123,63,228,0.25);
  color: var(--purple-light);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-posted { font-size: 0.75rem; color: var(--text-dim); }

.job-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.job-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}

.job-meta-item {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.job-meta-item.salary { color: var(--accent-green); }

.job-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

.job-deadline {
  font-size: 0.75rem;
  color: var(--orange-light);
  background: rgba(255,98,37,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.job-card-footer { margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--border); }

.btn-view-job {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--orange-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: gap 0.2s, color 0.2s;
}
.btn-view-job:hover { gap: 0.7rem; }

.no-jobs {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.no-jobs-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-jobs h3 { font-family: var(--font-display); color: var(--text); margin-bottom: 0.5rem; }
.no-jobs a { color: var(--orange-light); text-decoration: none; }

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}

.why-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.perk-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
/* 1. Icon styling: Left side rotate + Scale + Glow */
.perk-icon {
  display: inline-block;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center; /* Apni jagah par ghumne ke liye */
}

.perk-card:hover .perk-icon {
  /* scale bada hoga aur rotate -15deg matlab left side jhukega */
  transform: scale(1.2) rotate(-15deg); 
  filter: drop-shadow(0 0 10px rgba(252, 97, 21, 0.7)); /* Orange Glow */
}

/* 2. Heading styling: Apni jagah (Position) nahi badlega, bas zoom hoga */
.perk-card h3 {
  display: block;
  width: fit-content; /* Taaki box bada na ho jaye */
  transition: transform 0.3s ease;
  transform-origin: left center; /* Left side se bada hoga taaki alignment fixed rahe */
}

.perk-card:hover h3 {
  transform: scale(1.1); /* Halka sa zoom */
}
/* Base style for the rotating layer */
.perk-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #FC6115);
  z-index: -2;
}

/* --- Animation logic --- */

/* 1st, 3rd, 5th cards: Right (Clockwise) ghumega */
.perk-card:nth-child(odd)::before {
  animation: rotateRight 8s linear infinite; /* Slowed to 8s */
}

/* 2nd, 4th, 6th cards: Left (Anti-Clockwise) ghumega */
.perk-card:nth-child(even)::before {
  animation: rotateLeft 8s linear infinite; /* Slowed to 8s */
}

/* Card ka inner background */
.perk-card::after {
  content: '';
  position: absolute;
  inset: 1px; /* Border thickness 1px kar di hai for more subtle look */
  background: var(--bg-card);
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
}

/* Animation Keyframes */
@keyframes rotateRight {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateLeft {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Hover Effect */
.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(252, 97, 21, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.perk-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.perk-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.perk-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.perk-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== REFINED DARK FOOTER ===== */
.footer {
  background: #000000;
  position: relative;
  padding-top: 150px; /* Space for wave margin */
  color: #ffffff;
  overflow: hidden;
  font-family: sans-serif;
}

/* Wave Styling with Top Margin */
.footer-wave {
  position: absolute;
  top: 40px; /* Gap above the wave */
  left: 0;
  width: 100%;
  z-index: 5;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Patli Running Border (Thin stroke) */
#wave-flow {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: snakeMove 6s linear infinite;
  filter: drop-shadow(0 0 3px #FC6115); /* Subtle glow */
}

@keyframes snakeMove {
  to { stroke-dashoffset: 0; }
}

/* Grid Configuration */
.footer-inner { max-width: 1250px; margin: 0 auto; padding: 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 5rem;
}

/* Contact Items Spacing */
.contact-item { margin-bottom: 1.5rem; }

.orange-label {
  color: #FC6115;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  
}

.white-label {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Links and Content Text */
.link-list { list-style: none; padding: 0; }
.link-list li { margin-bottom: 12px; }

.footer-link, .link-list a, .contact-item p {
  color: #bbbbbb; /* Soft white/grey */
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.7;
  transition: 0.3s ease;
}

.link-list a:hover { color: #FC6115; transform: translateX(5px); }

.job-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.job-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        #FC6115
    );
    /* 3 boxes x 3s = 9s ka total loop */
    animation: snake-loop 9s linear infinite;
    z-index: -2;
    opacity: 0;
}

/* Sequence Turn logic */
.job-card:nth-child(1)::before { animation-delay: 0s; }
.job-card:nth-child(2)::before { animation-delay: 3s; }
.job-card:nth-child(3)::before { animation-delay: 6s; }

@keyframes snake-loop {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    /* 100% / 3 cards = 33.33% par 1 card ki turn end */
    33.33% {
        transform: rotate(360deg);
        opacity: 1;
    }
    33.34%, 100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

.job-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #0d0d0d;
    border-radius: 11px;
    z-index: -1;
}

.job-card:hover {
    box-shadow: 0 0 20px rgba(252, 97, 21, 0.4);
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* --- BOTTOM BAR: BLACK BG + ORANGE TEXT --- */
.footer-copyright-bar {
  background: #000000;
  border-top: 1px solid #222;
  padding: 25px 0;
}

.copyright-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-flex p, .legal-links a {
  color: #FC6115; /* Orange color #FC6115 */
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
}

.legal-links a { margin-left: 20px; }
.legal-links a:hover { text-decoration: underline; }

.mt-40 { margin-top: 40px; }
.company-name { font-weight: 700; color: #fff !important; margin-bottom: 8px !important; }

/* Responsive */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .copyright-flex { flex-direction: column; gap: 15px; } }

/* ===== BUTTONS ===== */
.btn-primary-sm {
  background: var(--grad);
  color: white;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary-sm:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost-sm {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-sm:hover { color: var(--text); border-color: var(--border-strong); }

.btn-outline-sm {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-sm:hover { color: var(--text); border-color: var(--border-strong); }

/* ===== JOB DETAIL PAGE ===== */
.job-detail-page { max-width: 1100px; margin: 0 auto; padding: 0 2rem 5rem; }

.job-detail-hero {
  position: relative;
  padding: 3rem 0 2rem;
  overflow: hidden;
}

.job-detail-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }

.job-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0;
}

.btn-apply-now {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-apply-now:hover { opacity: 0.9; transform: translateY(-2px); }

.job-detail-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  margin-top: 2rem;
}

.job-section { margin-bottom: 2rem; }
.job-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.styled-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.styled-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.styled-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--orange);
}
.styled-list.perks li::before { content: '✓'; color: var(--accent-green); }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.summary-list { display: flex; flex-direction: column; gap: 0.75rem; }
.summary-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-size: 0.85rem; }
.summary-item span { color: var(--text-muted); }
.summary-item strong { color: var(--text); text-align: right; }

.btn-apply-full {
  display: block;
  text-align: center;
  background: var(--grad);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: opacity 0.2s;
}
.btn-apply-full:hover { opacity: 0.9; }

.connect-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

.social-buttons { display: flex; flex-direction: column; gap: 0.6rem; }

.social-btn {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.social-btn:hover { opacity: 0.85; transform: translateX(3px); }
.social-btn.linkedin { background: rgba(10,102,194,0.12); border-color: rgba(10,102,194,0.25); color: #4FA3E0; }
.social-btn.twitter { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--text); }
.social-btn.instagram { background: rgba(196,75,138,0.1); border-color: rgba(196,75,138,0.25); color: #D460A0; }

/* ===== APPLY PAGE ===== */
.apply-page { background: var(--bg); }

.apply-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.apply-left {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 2.5rem;
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto;
}

.apply-for-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.apply-job-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.apply-job-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem; }

.steps-indicator { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.75rem 0;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.step-item.active { opacity: 1; }
.step-item.done { opacity: 0.7; }

.step-dot {
  width: 32px; height: 32px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}

.step-item.active .step-dot {
  background: var(--grad);
  border-color: transparent;
  color: white;
}
.step-item.done .step-dot {
  background: rgba(52,211,153,0.15);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.step-info strong { display: block; font-size: 0.9rem; font-family: var(--font-display); }
.step-info span { font-size: 0.75rem; color: var(--text-muted); }

.step-connector { width: 2px; height: 16px; background: var(--border); margin-left: 15px; }

.apply-social-links { margin-top: auto; }
.apply-social-links p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.6rem; }

.social-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-pill:hover { color: var(--text); border-color: var(--border-strong); }

.apply-right {
  padding: 2.5rem 3rem;
  max-width: 680px;
}

.apply-form-wrap { max-width: 560px; }

.progress-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--grad);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.step-label-top { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Form Steps */
.form-step { display: none; animation: fadeUp 0.3s ease; }
.form-step.active { display: block; }

/* Form Elements */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,98,37,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-hint { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.35rem; display: block; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* File Upload */
.file-upload-wrap { position: relative; }
.file-upload-wrap input[type="file"] { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2; }

.file-upload-label {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.file-upload-label:hover { border-color: var(--orange); color: var(--text); }

/* Form Navigation */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-next {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-next:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-prev {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-prev:hover { color: var(--text); border-color: var(--border-strong); }

.btn-submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Review Box */
.review-box {
  background: rgba(255,98,37,0.05);
  border: 1px solid rgba(255,98,37,0.15);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.review-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.review-item { font-size: 0.8rem; }
.review-item span { color: var(--text-muted); display: block; }
.review-item strong { color: var(--text); }

/* Agreement */
.form-agree {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.form-agree a { color: var(--orange-light); text-decoration: none; }
.form-agree input { flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); }

/* ===== THANK YOU PAGE ===== */
.thankyou-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem;
  position: relative; overflow: hidden;
}

.thankyou-card {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem;
  max-width: 560px;
  text-align: center;
}

.thankyou-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.thankyou-card h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.thankyou-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.thankyou-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

.thankyou-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2rem; flex-wrap: wrap;
}

.ts-step { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.ts-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.ts-dot.done { background: rgba(52,211,153,0.2); border: 2px solid var(--accent-green); color: var(--accent-green); }
.ts-dot.pending { background: var(--bg); border: 2px solid var(--border); color: var(--text-dim); }
.ts-step span { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; }
.ts-line { width: 40px; height: 2px; background: var(--border); margin: 0 0.25rem; margin-bottom: 1.2rem; }

.thankyou-social p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.thankyou-social .social-buttons { flex-direction: row; justify-content: center; }

/* ===== ADMIN ===== */
.admin-auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.admin-login-card {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  width: 100%; max-width: 400px;
}

.admin-login-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.admin-badge {
  background: rgba(255,98,37,0.12);
  border: 1px solid rgba(255,98,37,0.25);
  color: var(--orange-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.75rem;
}

.admin-login-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.admin-login-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.admin-back-link { display: block; text-align: center; margin-top: 1.25rem; color: var(--text-muted); font-size: 0.82rem; text-decoration: none; }
.admin-back-link:hover { color: var(--text); }

/* Admin Layout */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }

.admin-sidebar {
  width: 230px; flex-shrink: 0;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}

.sidebar-logo {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-label {
  font-size: 0.75rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.sidebar-nav { flex: 1; padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; }

.sidebar-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.sidebar-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.sidebar-link.active { color: var(--text); background: rgba(255,98,37,0.1); border: 1px solid rgba(255,98,37,0.15); }
.sidebar-link.logout { color: #ef4444; }
.sidebar-link.logout:hover { background: rgba(239,68,68,0.08); }

.sidebar-footer { padding: 0.75rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.25rem; }

.admin-main {
  flex: 1;
  padding: 2rem 2.5rem;
  overflow-y: auto;
  max-width: calc(100vw - 230px);
}

.admin-topbar {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2rem;
}
.admin-topbar h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.admin-topbar p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.15rem; }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}

.stat-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-card-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat-card-label { font-size: 0.78rem; color: var(--text-muted); }

.admin-two-col { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; }

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.admin-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.admin-card-header h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.view-all { font-size: 0.8rem; color: var(--orange-light); text-decoration: none; }

.admin-table-wrap { overflow-x: auto; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.app-name { font-weight: 500; }
.app-email { font-size: 0.78rem; color: var(--text-muted); }

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.status-new { background: rgba(255,98,37,0.1); color: var(--orange-light); }
.status-reviewed { background: rgba(59,130,246,0.1); color: #60A5FA; }
.status-shortlisted { background: rgba(52,211,153,0.1); color: var(--accent-green); }
.status-rejected { background: rgba(239,68,68,0.1); color: #F87171; }
.status-hired { background: rgba(123,63,228,0.15); color: var(--purple-light); }
.status-closed { background: rgba(100,100,100,0.1); color: var(--text-muted); }

.table-action {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block; margin-right: 0.25rem;
}
.table-action, .table-action.edit { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }
.table-action:hover { color: var(--text); border-color: var(--border-strong); }
.table-action.delete { color: #F87171; border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.05); }
.table-action.delete:hover { background: rgba(239,68,68,0.1); }
.table-actions { white-space: nowrap; }

.app-count {
  background: rgba(123,63,228,0.1);
  color: var(--purple-light);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.78rem;
  text-decoration: none;
}

.job-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.job-row:last-of-type { border-bottom: none; }
.job-row-info strong { display: block; font-size: 0.9rem; }
.job-row-info span { font-size: 0.78rem; color: var(--text-muted); }
.job-row-meta { display: flex; align-items: center; gap: 0.5rem; }

/* Admin Form Styles */
.form-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.toggle-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
}
.toggle-wrap input { display: none; }
.toggle-slider {
  width: 44px; height: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  transition: background 0.3s;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
.toggle-wrap input:checked + .toggle-slider { background: var(--orange); border-color: var(--orange); }
.toggle-wrap input:checked + .toggle-slider::after { transform: translateX(20px); background: white; }

.form-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; }

.alert-success {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.25);
  color: var(--accent-green);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.alert-success a { color: var(--accent-green); }

.alert-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #F87171;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Applications page extras */
.skills-wrap { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.skill-tag {
  background: rgba(123,63,228,0.1);
  border: 1px solid rgba(123,63,228,0.2);
  color: var(--purple-light);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.72rem;
}

.status-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
}

/* App Detail */
.app-detail-grid { display: grid; grid-template-columns: 1fr 260px; gap: 1.5rem; }
.app-detail-sidebar {}
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.detail-item { padding: 0.6rem; background: rgba(255,255,255,0.02); border-radius: var(--radius-sm); }
.detail-item span { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 0.15rem; }
.detail-item strong, .detail-item a { font-size: 0.85rem; color: var(--text); }
.detail-item a { text-decoration: none; color: var(--orange-light); }
.detail-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.cover-letter-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; white-space: pre-line; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .job-detail-content { grid-template-columns: 1fr; }
  .job-detail-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .apply-container { grid-template-columns: 1fr; }
  .apply-left { position: static; height: auto; }
  .apply-right { padding: 2rem; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-two-col { grid-template-columns: 1fr; }
  .app-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 1rem; }
  .jobs-grid { grid-template-columns: 1fr; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .admin-body { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; padding: 0.5rem; }
  .admin-main { max-width: 100%; padding: 1.5rem; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}
