/* ============================================
   SENTINEL SECURITY GUARDING SERVICES LTD
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #0f2140;
  --navy-light: #1a3260;
  --blue: #1a4bff;
  --blue-mid: #2356ff;
  --blue-light: #4a7aff;
  --black: #050a12;
  --dark-grey: #1c1c2e;
  --mid-grey: #2d3148;
  --silver: #9aa3b8;
  --light-grey: #e8eaf0;
  --white: #ffffff;
  --red-alert: #c0392b;
  --orange-alert: #e67e22;
  --yellow-alert: #f1c40f;
  --green-alert: #27ae60;
  --threat-color: #c0392b;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-blue: 0 4px 24px rgba(26,75,255,0.3);
  --radius: 4px;
  --radius-lg: 8px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--light-grey); }

/* ============ UTILITY ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-blue { color: var(--blue-light); }
.text-silver { color: var(--silver); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ============ NAVIGATION ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,75,255,0.2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--silver);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--silver);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta { margin-left: 12px; }
.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-light);
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-right: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--silver);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 1px;
}
.mobile-nav a:hover { color: var(--blue-light); }
.mobile-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(5,10,18,0.85) 50%, rgba(26,75,255,0.1) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
  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-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26,75,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,75,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,75,255,0.15);
  border: 1px solid rgba(26,75,255,0.4);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 .line-blue { color: var(--blue-light); display: block; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
  z-index: 10;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(26,75,255,0.2);
  border-bottom: 1px solid rgba(26,75,255,0.2);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--silver);
}
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(26,75,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============ SECTION HEADER ============ */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 60px; height: 3px;
  background: var(--blue);
  margin-bottom: 16px;
}
.divider.center { margin: 0 auto 16px; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(26,75,255,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-blue);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(26,75,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--blue);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.service-card p { font-size: 0.9rem; color: var(--silver); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-link:hover { gap: 10px; }

/* ============ ABOUT SECTION ============ */
.about-section { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.about-badge-corner {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--blue);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 130px;
}
.about-badge-corner .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
}
.about-badge-corner .lbl {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.85;
}
.about-content .tag { margin-bottom: 8px; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--navy-mid);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: rgba(26,75,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.about-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-feature p { font-size: 0.85rem; }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(26,75,255,0.3); transform: translateY(-4px); }
.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(26,75,255,0.25);
  line-height: 1;
  margin-bottom: 8px;
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--blue-light);
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; }

/* ============ FAQ ============ */
.faq-section { background: var(--black); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
}
.faq-q:hover { color: var(--blue-light); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(26,75,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 300px; }
.faq-a p { font-size: 0.95rem; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.cta-section p { margin-bottom: 36px; color: rgba(255,255,255,0.8); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.5); }
.cta-section .btn-outline:hover { background: var(--white); color: var(--blue); }

/* ============ SECTORS ============ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.sector-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sector-card:hover {
  border-color: var(--blue);
  background: rgba(26,75,255,0.1);
  transform: translateY(-4px);
}
.sector-icon { font-size: 2.2rem; margin-bottom: 12px; }
.sector-card h3 { font-size: 1rem; font-weight: 700; }

/* ============ AREAS ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.area-tag {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.area-tag:hover {
  background: rgba(26,75,255,0.15);
  border-color: var(--blue-light);
  color: var(--blue-light);
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(26,75,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.8rem; color: var(--silver); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-info-item a:hover { color: var(--blue-light); }

/* ============ FORM ============ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  background: rgba(26,75,255,0.05);
}
.form-control::placeholder { color: var(--silver); opacity: 0.6; }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
select.form-control option {
  background: #0f2140;
  color: #ffffff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-check input[type=checkbox] { accent-color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: 0.85rem; color: var(--silver); }

/* File upload */
.file-upload {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.file-upload:hover { border-color: var(--blue); }
.file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-icon { font-size: 2rem; margin-bottom: 8px; color: var(--blue-light); }
.file-upload p { color: var(--silver); font-size: 0.9rem; }
.file-upload span { color: var(--blue-light); }

/* ============ MAP ============ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 380px;
  margin-top: 40px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) brightness(0.85); }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,75,255,0.08) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--silver);
}
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============ CAREERS RECRUITMENT STEPS ============ */
.recruit-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.recruit-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.recruit-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(26,75,255,0.2));
  z-index: 1;
}
.recruit-step:last-child::after { display: none; }
.recruit-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.recruit-step:hover .recruit-circle {
  background: var(--blue);
  transform: scale(1.08);
  box-shadow: var(--shadow-blue);
}
.recruit-step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.recruit-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.recruit-step p { font-size: 0.8rem; color: var(--silver); }

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--silver); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social:hover { background: var(--blue); border-color: var(--blue); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--blue);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--silver);
}
.footer-contact-item i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--blue-light); }

/* Threat Level */
.threat-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.threat-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.threat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}
.threat-level {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius);
  border: 2px solid;
}
.threat-level.SEVERE { color: #e74c3c; border-color: #e74c3c; background: rgba(231,76,60,0.1); }
.threat-level.CRITICAL { color: #c0392b; border-color: #c0392b; background: rgba(192,57,43,0.15); animation: blink 1s infinite; }
.threat-level.SUBSTANTIAL { color: #e67e22; border-color: #e67e22; background: rgba(230,126,34,0.1); }
.threat-level.MODERATE { color: #f1c40f; border-color: #f1c40f; background: rgba(241,196,15,0.1); }
.threat-level.LOW { color: #27ae60; border-color: #27ae60; background: rgba(39,174,96,0.1); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.threat-desc { font-size: 0.85rem; color: var(--silver); }
.threat-link {
  font-size: 0.8rem;
  color: var(--blue-light);
  text-decoration: underline;
  cursor: pointer;
  font-style: italic;
}
.threat-link:hover { color: var(--blue-mid); }
.threat-sep { color: rgba(255,255,255,0.2); }

/* Footer bottom */
.footer-mid {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.8;
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--blue-light); }
.footer-designer { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-designer a { color: var(--blue-light); }
.footer-designer a:hover { color: var(--blue-mid); }

/* ============ EMPLOYEE PORTAL ============ */
.portal-container {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 80px;
}
.login-panel {
  width: 100%;
  max-width: 520px;
  margin: 60px auto;
  padding: 0 24px;
}
.login-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo img { height: 56px; margin: 0 auto 12px; }
.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 32px;
}
.login-tab {
  padding: 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--silver);
  transition: var(--transition);
}
.login-tab.active {
  background: var(--blue);
  color: var(--white);
}

/* Dashboard */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}
.sidebar {
  width: 260px;
  background: var(--black);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  z-index: 100;
}
.sidebar-brand {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.sidebar-user { padding: 16px 20px; margin-bottom: 8px; }
.sidebar-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.sidebar-nav { padding: 0 12px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--silver);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-bottom: 2px;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(26,75,255,0.15);
  color: var(--blue-light);
}
.sidebar-nav .nav-section {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 16px 12px 6px;
}
.main-content {
  margin-left: 260px;
  flex: 1;
  padding: 32px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-icon.blue { background: rgba(26,75,255,0.2); color: var(--blue-light); }
.stat-icon.green { background: rgba(39,174,96,0.15); color: #2ecc71; }
.stat-icon.orange { background: rgba(230,126,34,0.15); color: #e67e22; }
.stat-icon.red { background: rgba(231,76,60,0.15); color: #e74c3c; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--silver); }
.table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--black);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--light-grey);
}
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-green { background: rgba(39,174,96,0.15); color: #2ecc71; }
.badge-red { background: rgba(231,76,60,0.15); color: #e74c3c; }
.badge-blue { background: rgba(26,75,255,0.15); color: var(--blue-light); }
.badge-orange { background: rgba(230,126,34,0.15); color: #e67e22; }
.card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.alert-warning { background: rgba(230,126,34,0.12); border: 1px solid rgba(230,126,34,0.25); color: #e67e22; }
.alert-danger { background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.25); color: #e74c3c; }
.alert-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.25); color: #2ecc71; }

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============ COOKIE BANNER ============ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  border-top: 2px solid var(--blue);
  padding: 20px 32px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.875rem; color: var(--silver); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--blue-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.4rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .recruit-step::after { display: none; }
  .recruit-steps { gap: 32px; }
  .sidebar { display: none; }
  .main-content { margin-left: 0; padding: 20px 16px; }
  .dashboard-layout { display: block; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .trust-bar-inner { flex-direction: column; gap: 14px; }
  .threat-inner { flex-direction: column; gap: 8px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
