/* ============================================
   FIRST CHOICE SECURITY SERVICES (K) LTD
   Main Stylesheet
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #112040;
  --navy-light: #1a2f55;
  --red: #c8102e;
  --red-light: #e8192f;
  --gold: #f0b429;
  --white: #ffffff;
  --off-white: #f4f5f7;
  --gray-light: #e8eaed;
  --gray: #8a9ab5;
  --text-body: #2c3e50;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  flex-shrink: 0;
}

.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: 800;
  font-size: 15px;
  color: white;
  letter-spacing: 1px;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-light) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(200,16,46,0.04) 40px,
    rgba(200,16,46,0.04) 41px
  );
}

.hero-accent-bar {
  position: absolute;
  left: 0; top: 68px; bottom: 0;
  width: 6px;
  background: var(--red);
}

.hero-geo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.06;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 0 72px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(200,16,46,0.5);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero h1 .accent { color: var(--red); }

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 44px;
}

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

.hero-stats {
  position: absolute;
  right: 0; bottom: 0;
  background: var(--navy-mid);
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  display: flex;
}

.hero-stat {
  padding: 24px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 80px; left: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.scroll-hint::before {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(200,16,46,0.6));
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 13px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--red);
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: transform 0.15s;
}

.btn-white:hover { transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 13px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.12);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(200,16,46,0.06); }

.trust-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.trust-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.trust-text span {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── SECTION COMMON ── */
.section { padding: 96px 80px; }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.section-title .accent { color: var(--red); }

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6a7e;
  max-width: 540px;
}

/* ── SERVICES ── */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--gray-light);
}

.service-card {
  background: white;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}

.service-card:hover { background: var(--navy); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .service-title { color: white; }
.service-card:hover .service-desc { color: rgba(255,255,255,0.5); }
.service-card:hover .service-num { color: rgba(200,16,46,0.4); }
.service-card:hover .service-icon-wrap { background: var(--red); }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--gray-light);
  line-height: 1;
  position: absolute;
  top: 20px; right: 28px;
  transition: color 0.25s;
}

.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: background 0.25s;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.25s;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7a8d;
  transition: color 0.25s;
}

/* ── ABOUT ── */
.about-section {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.about-left {
  padding: 96px 64px 96px 80px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.about-right {
  padding: 80px 80px 80px 64px;
}

.about-section .section-title { color: white; }

.about-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.about-highlight {
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  background: rgba(200,16,46,0.06);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 40px;
}

.values-list { list-style: none; }

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.values-list li:last-child { border-bottom: none; }

.value-dot {
  width: 8px; height: 8px;
  flex-shrink: 0;
  background: var(--red);
  margin-top: 7px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.value-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  min-width: 140px;
}

.value-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

/* ── EXPERTISE ── */
.expertise-section {
  background: var(--off-white);
  padding: 80px;
}

.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
}

.expertise-card {
  background: white;
  padding: 40px 32px;
  position: relative;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.expertise-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.exp-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.exp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.exp-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7a8d;
}

/* ── PILLARS ── */
.pillars-section {
  background: white;
  padding: 96px 80px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.pillar {
  position: relative;
  padding: 44px 36px;
  border: 1px solid var(--gray-light);
  transition: border-color 0.3s;
}

.pillar:hover { border-color: var(--red); }

.pillar-number {
  position: absolute;
  top: -20px; left: 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--red);
  color: white;
  padding: 4px 14px;
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7a8d;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--red);
  padding: 72px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 2px solid var(--navy-mid);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 80px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 16px;
}

.footer-col ul li a:hover { color: white; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-line .icon {
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
}

.contact-line span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visible by default - JS adds .js-loaded to body to enable animations */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ══════════════════════════════════════
   NEW ADDITIONS
══════════════════════════════════════ */

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--red); color: white;
  padding: 8px 16px; font-size: 14px;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--navy);
  padding: 96px 80px;
}
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: white; margin-bottom: 56px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--red);
  padding: 36px 32px;
  margin: 0;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-top-color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.65);
  font-style: italic; margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong {
  display: block; font-size: 14px; color: white; font-weight: 600;
}
.testimonial-author span {
  font-size: 12px; color: var(--gray); margin-top: 2px; display: block;
}

/* ── CONTACT FORM SECTION ── */
.contact-section {
  background: var(--navy-mid);
  padding: 96px 80px;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: start;
}
.contact-details { margin: 32px 0; }
.map-embed { margin-top: 24px; border-radius: 4px; overflow: hidden; }

.contact-form-wrap {
  background: white;
  padding: 48px 40px;
  border-radius: 4px;
}
.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 7px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.required { color: var(--red); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 2px; font-family: 'Barlow', sans-serif;
  font-size: 14px; color: var(--text-body);
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none; -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab5' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 16px;
  background: var(--red); color: white; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--red-light); transform: translateY(-2px); }
.form-message {
  display: none; margin-top: 16px;
  padding: 12px 16px; border-radius: 2px;
  font-size: 14px; font-weight: 500;
}
.form-message.success { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #2e7d32; }
.form-message.error   { background: #ffebee; color: #c62828; border-left: 3px solid #c62828; }
.form-message.show    { display: block; }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 44px; height: 44px;
  background: var(--red); color: white;
  border: none; cursor: pointer;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE / MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column; gap: 0;
    border-top: 2px solid var(--red);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-cta { margin: 12px 16px; border-radius: 2px; text-align: center; }

  .hero-content { padding: 0 24px 0 32px; }
  .hero-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; }
  .section { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-left { padding: 64px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .about-right { padding: 48px 24px; }
  .expertise-section { padding: 64px 24px; }
  .expertise-header { flex-direction: column; gap: 16px; }
  .expertise-cards { grid-template-columns: 1fr; }
  .pillars-section { padding: 64px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 64px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .cta-section { flex-direction: column; padding: 56px 24px; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-white, .btn-outline-white { text-align: center; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 24px; text-align: center; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 48px; }
  .trust-item { flex: 1 1 100%; }
}


/* ══════════════════════════════════════
   UPGRADED FORM MESSAGES
══════════════════════════════════════ */
.form-message {
  display: none;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 4px;
  font-size: 14px;
  gap: 14px;
  align-items: flex-start;
}
.form-message.show { display: flex; }

.form-msg-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  flex-shrink: 0;
}
.form-msg-text {
  display: flex; flex-direction: column; gap: 4px;
}
.form-msg-text strong {
  font-size: 15px; font-weight: 700;
}
.form-msg-text span {
  font-size: 13px; line-height: 1.6;
}
.form-message.success {
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
  color: #1b5e20;
}
.form-message.success .form-msg-icon {
  background: #2e7d32; color: white;
}
.form-message.error {
  background: #ffebee;
  border-left: 4px solid #c62828;
  color: #b71c1c;
}
.form-message.error .form-msg-icon {
  background: #c62828; color: white;
}

/* ══════════════════════════════════════
   THANK YOU OVERLAY
══════════════════════════════════════ */
.thankyou-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 22, 40, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  animation: overlayFadeIn 0.4s ease;
}
.thankyou-overlay[hidden] { display: none; }

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.thankyou-box {
  background: white;
  max-width: 560px; width: 100%;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  animation: boxSlideUp 0.4s ease;
  border-top: 5px solid var(--red);
}

@keyframes boxSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.thankyou-shield {
  display: flex; justify-content: center;
  margin-bottom: 20px;
  animation: shieldPop 0.5s ease 0.2s both;
}
@keyframes shieldPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.thankyou-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.thankyou-sub {
  font-size: 18px; color: #5a6a7e;
  margin-bottom: 12px;
}

.thankyou-desc {
  font-size: 15px; line-height: 1.7;
  color: #5a6a7e;
  margin-bottom: 32px;
}

.thankyou-what-next {
  text-align: left;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 24px 0;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 18px;
}

.thankyou-step {
  display: flex; align-items: flex-start; gap: 14px;
}

.step-num {
  width: 28px; height: 28px;
  background: var(--red); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}

.thankyou-step div {
  display: flex; flex-direction: column; gap: 2px;
}
.thankyou-step strong {
  font-size: 14px; color: var(--navy); font-weight: 700;
}
.thankyou-step span {
  font-size: 13px; color: #6b7a8d; line-height: 1.5;
}

.thankyou-close {
  background: var(--navy); color: white;
  border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 40px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background 0.2s;
  width: 100%;
}
.thankyou-close:hover { background: var(--red); }

@media (max-width: 600px) {
  .thankyou-box { padding: 36px 24px; }
  .thankyou-title { font-size: 28px; }
}


/* ============================================================
   REAL PHOTO ADDITIONS — added with image integration
   ============================================================ */

/* ── Hero background real photo ───────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
  filter: grayscale(30%);
}
.hero-bg-pattern,
.hero-geo,
.hero-content,
.hero-accent-bar,
.scroll-hint,
.hero-stats {
  position: relative;
  z-index: 1;
}

/* ── Photo strip ───────────────────────────────────────────── */
.photo-strip {
  background: #0a1628;
  padding: 0;
  overflow: hidden;
}
.photo-strip-inner {
  display: flex;
  height: 260px;
}
.photo-strip-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75) saturate(0.9);
}
.photo-strip-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.1);
}
.photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.92));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 24px 10px 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.photo-strip-item:hover .photo-strip-caption {
  opacity: 1;
}
/* Red left-border divider between strip items */
.photo-strip-item + .photo-strip-item {
  border-left: 2px solid #c8102e;
}

/* ── Service card image ────────────────────────────────────── */
.service-card-img {
  width: calc(100% + 48px);
  margin: -24px -24px 20px -24px;
  height: 180px;
  overflow: hidden;
  border-radius: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(0.85);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

/* ── About photo collage ───────────────────────────────────── */
.about-photo-collage {
  display: flex;
  gap: 12px;
  margin: 28px 0 32px;
  height: 260px;
}
.about-photo-main {
  flex: 1.4;
  overflow: hidden;
  border-radius: 4px;
  border-left: 4px solid #c8102e;
}
.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.about-photo-main:hover img {
  transform: scale(1.04);
}
.about-photo-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-photo-side img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 4px;
  transition: transform 0.5s ease;
  min-height: 0;
}
.about-photo-side img:hover {
  transform: scale(1.03);
}

/* ── Gallery section ───────────────────────────────────────── */
.gallery-section {
  padding: 80px 5%;
  background: #f4f5f7;
}
.gallery-section .section-label {
  color: #c8102e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gallery-section .section-title {
  margin-bottom: 14px;
}
.gallery-section .section-desc {
  max-width: 620px;
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px;
}
/* Tall item spans 2 rows */
.gallery-item--tall {
  grid-row: span 2;
}
/* Wide item spans 2 columns */
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #0a1628;
  cursor: default;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.82) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.05);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.88));
  padding: 28px 14px 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Responsive adjustments for new elements ──────────────── */
@media (max-width: 900px) {
  .photo-strip-inner {
    height: 180px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery-item {
    height: 200px;
  }
  .about-photo-collage {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .photo-strip-inner {
    height: 140px;
  }
  .photo-strip-caption {
    font-size: 9px;
    letter-spacing: 0.8px;
    opacity: 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .gallery-item {
    height: 150px;
  }
  .about-photo-collage {
    height: 160px;
    gap: 8px;
  }
  .service-card-img {
    height: 150px;
  }
}


/* ============================================================
   V3 UPDATES — Hero slideshow, headline, service card images
   ============================================================ */

/* ── Remove old static hero photo bg ───────────────────────── */
.hero-photo-bg { display: none; }

/* ── Hero slideshow ─────────────────────────────────────────── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.4s ease;
  /* Ken Burns motion */
  animation: kenburns 8s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.hero-slide.active {
  opacity: 1;
  animation-play-state: running;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translateX(0)      translateY(0); }
  100% { transform: scale(1.12) translateX(-2%)   translateY(-2%); }
}
/* Each slide gets a slightly different motion */
.hero-slide:nth-child(2) { animation-direction: alternate-reverse; }
.hero-slide:nth-child(3) {
  animation-name: kenburns2;
}
@keyframes kenburns2 {
  0%   { transform: scale(1.05) translateX(2%)  translateY(0); }
  100% { transform: scale(1.15) translateX(-1%) translateY(-3%); }
}

/* Dark gradient overlay so text stays readable */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(10,22,40,0.82) 0%,
    rgba(10,22,40,0.55) 55%,
    rgba(10,22,40,0.35) 100%
  );
}

/* Push all hero content above the overlay */
.hero-bg-pattern,
.hero-geo,
.hero-content,
.hero-accent-bar,
.scroll-hint,
.hero-stats {
  position: relative;
  z-index: 2;
}

/* ── Hero headline one-line ──────────────────────────────────── */
.hero h1 {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero h1 { white-space: normal; }
}

/* ── Slide indicator dots ────────────────────────────────────── */
.hero-slide-dots {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-slide-dot.active {
  background: #c8102e;
  transform: scale(1.3);
  border-color: #c8102e;
}

/* ── Service card images — taller, landscape-cropped ────────── */
.service-card-img {
  width: calc(100% + 48px) !important;
  margin: -24px -24px 20px -24px !important;
  height: 220px !important;
  overflow: hidden;
  border-radius: 0;
  background: #0a1628;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9) saturate(1.0);
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.1);
}

/* CCTV SVG card — same dimensions */
.service-card-img--cctv svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 600px) {
  .service-card-img { height: 170px !important; }
}


/* ═══════════════════════════════════════
   MOBILE IMAGE PERFORMANCE
   Prevents layout shift while loading
═══════════════════════════════════════ */

/* Placeholder background while image loads */
img {
  background: #112040;
  transition: opacity 0.4s ease;
}

/* Fade in smoothly when loaded */
img.loaded {
  opacity: 1;
}

/* Hero slideshow — faster first paint on mobile */
@media (max-width: 768px) {
  .hero-slide {
    background-attachment: scroll !important;
  }
  .hero-slideshow .hero-slide {
    background-size: cover;
    background-position: center center;
  }
  /* Reduce photo strip height on mobile */
  .guards-strip .guard-photo {
    height: 220px;
    width: 180px;
  }
  /* Service images smaller on mobile */
  .service-card-img,
  .service-img-wrap {
    height: 150px;
  }
}
