/* ===== STUART SECURITY SERVICES - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --blue-dark: #0a1f44;
  --blue-mid: #1a3a6e;
  --blue-bright: #1e5bbc;
  --blue-light: #4a8fe8;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --gray-light: #e8edf5;
  --gray: #8a9ab5;
  --text-dark: #0d1b35;
  --accent: #c8a951;
  --danger: #c0392b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== LANGUAGE BAR ===== */
#lang-bar {
  background: var(--blue-dark);
  padding: 6px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--blue-bright);
  color: white;
  border-color: var(--blue-bright);
}

/* ===== NAVBAR ===== */
#navbar {
  background: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(10,31,68,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 75px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 55px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue-dark);
  letter-spacing: 1px;
}
.nav-logo-text span:last-child {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--blue-bright); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-bright); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-employee-btn {
  background: var(--blue-dark);
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  margin-left: 10px;
  transition: background 0.2s !important;
}
.nav-employee-btn:hover { background: var(--blue-bright) !important; }
.nav-employee-btn::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--blue-dark);
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/FOTO_Header.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,31,68,0.88) 0%, rgba(10,31,68,0.6) 55%, rgba(10,31,68,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 720px;
  animation: heroFadeIn 1s ease-out both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: var(--blue-bright);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  color: white;
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hero-title span { color: var(--blue-light); }

.hero-slogan {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 10px;
  font-style: italic;
  letter-spacing: 1px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue-bright);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,31,68,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 0;
  z-index: 2;
}
.stat-item {
  padding: 22px 50px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  max-width: 250px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--blue-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== SECTION COMMON ===== */
section { padding: 90px 80px; }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.section-title.white { color: white; }
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 50px;
}
.section-subtitle.white { color: rgba(255,255,255,0.7); }

/* ===== SERVICES SECTION ===== */
#services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,31,68,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,31,68,0.15);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.service-card-body {
  padding: 24px;
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--blue-bright);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 22px; height: 22px; fill: white; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHY US SECTION ===== */
#why-us {
  background: var(--blue-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 80px;
}
.why-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}
.why-images img:first-child {
  grid-column: span 2;
  height: 260px;
}
.why-list { list-style: none; margin-bottom: 36px; }
.why-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.why-check {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--blue-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; fill: white; }
.why-list li h4 {
  color: white;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}
.why-list li p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }

/* ===== GALLERY STRIP ===== */
#gallery-strip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 260px;
}
#gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
  filter: brightness(0.85);
}
#gallery-strip img:hover {
  transform: scale(1.05);
  filter: brightness(1);
  z-index: 1;
  position: relative;
}

/* ===== NEWS SECTION ===== */
#news { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,31,68,0.07);
  transition: transform 0.3s;
}
.news-card:hover { transform: translateY(-4px); }
.news-card-img {
  height: 200px;
  background: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.news-card-body { padding: 24px; }
.news-date {
  font-size: 11px;
  color: var(--blue-bright);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.news-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.news-read-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue-bright);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* ===== CONTACT SECTION ===== */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: white; }
.contact-detail h4 {
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
  font-size: 15px;
}
.contact-detail p, .contact-detail a {
  color: var(--gray);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--blue-bright); }

.contact-form { }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue-bright);
  background: white;
}
.form-group textarea { height: 130px; resize: vertical; }
.map-frame {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
  border: none;
}

/* ===== ABOUT SECTION ===== */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}
.about-img-grid img:first-child {
  grid-column: span 2;
  height: 260px;
}
.about-text p {
  font-size: 15px;
  color: #4a5a7a;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== VACANCY ===== */
#vacancy { background: var(--off-white); }
.vacancy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.vacancy-flyers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vacancy-flyers img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(10,31,68,0.15);
}
.job-card {
  background: white;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(10,31,68,0.07);
  border-left: 4px solid var(--blue-bright);
  margin-bottom: 20px;
}
.job-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.job-tag {
  display: inline-block;
  background: var(--blue-light);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.job-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.job-req { list-style: none; margin-bottom: 18px; }
.job-req li {
  font-size: 13px;
  color: #4a5a7a;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.job-req li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue-dark);
  padding: 60px 80px 30px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== EMPLOYEE PORTAL / LOGIN ===== */
#login-page {
  min-height: 100vh;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.login-card {
  background: white;
  border-radius: 12px;
  padding: 50px 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo img { height: 70px; }
.login-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.login-card .subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 30px;
}
.login-card .form-group label { color: var(--blue-dark); }
.login-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue-dark);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 8px;
}
.login-submit:hover { background: var(--blue-bright); }
.login-error {
  background: #fde8e8;
  color: var(--danger);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

/* ===== EMPLOYEE DASHBOARD ===== */
#dashboard { display: none; }
.dash-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 260px;
  background: var(--blue-dark);
  padding: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.dash-logo {
  padding: 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dash-logo img { height: 44px; }
.dash-logo span {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.dash-nav { flex: 1; padding: 20px 0; }
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.dash-nav a:hover, .dash-nav a.active {
  background: rgba(255,255,255,0.08);
  color: white;
  border-left: 3px solid var(--blue-light);
}
.dash-nav a svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.dash-user-info {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dash-avatar {
  width: 38px; height: 38px;
  background: var(--blue-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 14px;
}
.dash-user-name { color: white; font-size: 14px; font-weight: 600; }
.dash-user-role { color: var(--gray); font-size: 11px; }
.dash-logout {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  padding: 4px;
}
.dash-logout:hover { color: white; }
.dash-logout svg { width: 16px; height: 16px; fill: currentColor; }

.dash-main {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--off-white);
}
.dash-header {
  background: white;
  padding: 20px 36px;
  box-shadow: 0 2px 10px rgba(10,31,68,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  color: var(--blue-dark);
  font-weight: 700;
}
.dash-content { padding: 36px; }

/* ===== SCHEDULE SYSTEM ===== */
.schedule-controls {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.week-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.week-nav button {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gray-light);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.week-nav button:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
.week-nav svg { width: 16px; height: 16px; fill: currentColor; }
#week-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-dark);
  min-width: 200px;
  text-align: center;
}
.btn-add-shift {
  margin-left: auto;
  background: var(--blue-bright);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.btn-add-shift:hover { background: var(--blue-mid); }
.btn-add-shift svg { width: 16px; height: 16px; fill: white; }

.schedule-table-wrap {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
  overflow-x: auto;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.schedule-table th {
  background: var(--blue-dark);
  color: white;
  padding: 14px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: nowrap;
}
.schedule-table th:first-child { width: 180px; }
.schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
  font-size: 13px;
}
.schedule-table tr:hover td { background: var(--off-white); }
.emp-name { font-weight: 700; color: var(--blue-dark); font-size: 14px; }
.emp-role { color: var(--gray); font-size: 11px; }

.shift-block {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  margin: 2px;
}
.shift-work { background: #dbeafe; color: #1e40af; }
.shift-off { background: #f1f5f9; color: #64748b; }
.shift-vacation { background: #dcfce7; color: #15803d; }
.shift-break { background: #fef3c7; color: #92400e; }

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}
.action-btn:hover { background: var(--gray-light); }
.action-btn svg { width: 15px; height: 15px; fill: var(--gray); }
.action-btn:hover svg { fill: var(--blue-bright); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,68,0.6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white;
  border-radius: 10px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: var(--blue-dark);
  font-weight: 700;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--gray);
  font-size: 24px;
  line-height: 1;
}
.modal-close:hover { color: var(--text-dark); }
.modal-body { padding: 28px; }
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.btn-cancel {
  padding: 10px 22px;
  border: 1.5px solid var(--gray-light);
  background: white;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
}
.btn-cancel:hover { border-color: var(--gray); color: var(--text-dark); }
.btn-save {
  padding: 10px 22px;
  background: var(--blue-bright);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-save:hover { background: var(--blue-mid); }

/* ===== STATS CARDS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.stat-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
}
.stat-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--blue-dark);
  line-height: 1;
}
.stat-card-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SECTION VISIBILITY ===== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--blue-dark);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid var(--danger); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  section { padding: 60px 24px; }
  #why-us, #contact, #about { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #gallery-strip { grid-template-columns: repeat(3, 1fr); height: auto; }
  #gallery-strip img { height: 150px; }
  .hero-content { padding: 0 24px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { min-width: 140px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .dash-sidebar { width: 220px; }
  .dash-main { margin-left: 220px; }
  .vacancy-grid { grid-template-columns: 1fr; }
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
