/* ==========================================================================
   Pioneer Security Services (Pvt) Ltd
   1. Variables  2. Reset/base  3. Typography  4. Header/nav  5. Hero
   6. Sections   7. Buttons     8. Footer      9. Responsive
   ========================================================================== */

/* 1. CSS VARIABLES ------------------------------------------------------- */
:root {
  --black: #000000;
  --bg-dark: #0b0b0b;
  --bg-panel: #141414;
  --green: #62bb46;
  --green-dark: #4e9c37;
  --red: #ed1c24;
  --white: #ffffff;
  --grey-text: #cfcfcf;
  --border-grey: #3a3a3a;

  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Calibre", "Carlito", "Calibri", Arial, Helvetica, sans-serif;
  --footer-bg: #000;

  --wrap: 1240px;
}

/* 2. RESET / BASE -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* 3. TYPOGRAPHY ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  text-align: left;
}
.hero-title,
.section-title,
.exp-title,
.sec-heading,
.why-title,
.footer-title,
.nav-list a,
.brand-name {
  font-family: var(--font-head);
}
.topbar,
.contact-list,
body {
  font-family: var(--font-body);
}

/* 4. HEADER / NAVIGATION ------------------------------------------------- */
.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  padding-bottom: 15px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--white);
  padding: 0px 0 6px;
}
.topbar .est {
  color: var(--white);
}
.topbar .sep {
  color: var(--green);
  margin: 0 10px;
}
.whatsapp-contact {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.whatsapp-contact a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.whatsapp-contact .whatsapp-badge {
  display: block;
  height: 32px;
  width: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.whatsapp-contact a:hover .whatsapp-badge {
  transform: scale(1.03);
  opacity: 0.92;
}
.contact-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-left: 1px solid var(--green);
}
.contact-list li:first-child {
  border-left: 0;
}
.contact-list li:last-child {
  padding-right: 0;
}
.contact-list .ic {
  font-size: 16px;
  color: var(--green);
  flex: none;
}
.contact-list a:hover {
  color: var(--green);
}

.header-main {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding-bottom: 0;
}
.logo img {
  width: 78px;
  height: auto;
  margin-bottom: -4px;
}
.brand-block {
  flex: 1;
  min-width: 0;
}
.brand-name {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--green);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 2px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span + span {
  margin-top: 5px;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar {
  overflow: visible ;
}
.nav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-list > li {
  position: relative;
}
.nav-list > li:first-child > a,
.nav-list > li:last-child > a {
  border-radius: 0;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}
.nav-list > li.active > a,
.nav-list > li > a:hover {
  background: transparent;
  color: var(--green);
}
.caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--green);
}
.nav-list > li > a:hover .caret,
.nav-list > li.active > a .caret {
  border-top-color: var(--black);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--black);
  border: 1px solid var(--green);
  display: none;
  z-index: 30;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #222;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.dropdown-menu li:last-child a {
  border-bottom: 0;
}
.dropdown-menu a:hover {
  background: transparent;
  color: var(--green);
}

/* External links (group companies / verification) */
.dropdown-menu a[target="_blank"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--green);
}
.dropdown-menu a[target="_blank"]:hover {
  color: var(--white);
}

/* Nested "Our Group" submenu */
.has-subdropdown {
  position: relative;
}
.has-subdropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.caret-right {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--green);
}
.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 260px;
  background: var(--black);
  border: 1px solid var(--green);
  display: none;
  z-index: 31;
}
.has-subdropdown:hover .subdropdown-menu,
.has-subdropdown.open .subdropdown-menu {
  display: block;
}
.subdropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #222;
  font-family: var(--font-head);
  text-transform: uppercase;
  color: var(--green);
}
.subdropdown-menu li:last-child a {
  border-bottom: 0;
}
.subdropdown-menu a:hover {
  background: transparent;
  color: var(--white);
}


/* 5. HERO ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 460px;

  /* Unified hero background: same palette/pattern as the footer CTA band */
  background:
    linear-gradient(
      135deg,
      #07140d 0%,
      #0b2a18 45%,
      #06110a 100%
    );
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
}
/* Hero decorative geometry (matches the CTA band pattern) */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -380px;
  right: -180px;
  border: 100px solid rgba(60, 180, 90, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -350px;
  left: -180px;
  border: 80px solid rgba(60, 180, 90, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero.hero-home {
  position: relative;
  min-height: 460px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/hero-background.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero.hero-home {
    background-position: center top;
  }
}
.hero.hero-home::before,
.hero.hero-home::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 58px 0 52px;
}
.hero .hero-title {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--white);
}
.hero-rule {
  width: 78px;
  height: 5px;
  background: var(--green);
  margin: 22px 0 18px;
}
.hero-sub {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0;
}
.hero-shield {
  display: none;
}

/* Compact hero variant (About Us page) */
.hero-compact {
  min-height: 230px;
}

.hero-compact .hero-content {
  padding: 34px 0 30px;
}

.hero-compact .hero-title {
  font-size: 46px;
}

.hero-compact .hero-sub {
  font-size: 20px;
}

/* Slider */
.slider {
  position: relative;
  background: var(--black);
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
}
.slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 40%;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  border: 0;
  width: 42px;
  height: 62px;
  font-size: 26px;
  line-height: 1;
  color: #333;
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--green);
  color: var(--black);
}
.slider-btn.prev {
  left: 0;
}
.slider-btn.next {
  right: 0;
}

/* 6. SECTIONS ------------------------------------------------------------ */
.section {
  padding: 54px 0;
  background: var(--bg-dark);
}
.about {
  background: var(--black);
  padding: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  align-items: center;
  gap: 20px;
}
.about-text {
  padding: 56px 0;
}
.section-title {
  margin: 0 0 18px;
}
.section-title .line-1 {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--green);
}
.section-title .line-2 {
  display: block;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
}
.title-rule {
  width: 210px;
  height: 2px;
  background: linear-gradient(to right, var(--white), var(--green));
  margin: 0 0 26px;
}
.about-text p {
  text-align: justify;
  font-size: 18px;
  line-height: 1.65;
  color: var(--grey-text);
  margin: 0 0 18px;
}
.about-text p .hl {
  color: var(--green);
}
.about-media {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: 560px;
}
.about-media img {
  width: 100%;
  max-width: none;
  height: auto;
  transform: scale(1.32);

}

 /* 6b. SECTION DIVIDER SEAMS ---------------------------------------------- */

.experience,
.services,
.why,
.clients,
.about,
.page-section,
.mgmt-structure,
.lesson-band {
  position: relative;
}

/* Red gradient divider */
.experience::before,
.services::before,
.why::before,
.clients::before,
.about::before,
.page-section::before,
.mgmt-structure::before,
.pre-cta-band::before,

.lesson-band::before {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(237, 28, 36, 0.15) 20%,
    rgba(237, 28, 36, 0.7) 50%,
    rgba(237, 28, 36, 0.15) 80%,
    transparent 100%
  );

  z-index: 2;
  pointer-events: none;
}

/* Center double-line accent */
.experience::after,
.services::after,
.why::after,
.clients::after,
.about::after,
.page-section::after,
.mgmt-structure::after,
.lesson-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 46px;
  height: 5px;

  background: var(--red);

  transform: translate(-50%, -50%);

  box-shadow:
    0 0 0 2px var(--bg-dark),
    0 3px 0 rgba(237, 28, 36, 0.25);

  z-index: 3;
  pointer-events: none;
}
/* 7. BUTTONS ------------------------------------------------------------- */
.button {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 8px 20px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--green);
  cursor: pointer;
}
.button:hover {
  background: transparent;
  color: var(--green);
}

/* 8. FOOTER -------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--grey-text);
}
.footer-inner .footer-nav {
  display: flex;
  gap: 18px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav a:hover {
  color: var(--green);
}

/* 9. RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero .hero-title {
    font-size: 44px;
  }
  .nav-list > li > a {
    padding: 12px 11px;
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  .brand-name {
    font-size: 21px;
  }
  .about-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 16px;
  }
  .about-media img {
    width: 100%;
    transform: scale(1.22);
  }
}


/* Shared below-hero page layout. Change these variables once to resize media everywhere.
   A single page can override them on its .page-grid element when required. */
.page-grid {
  --page-media-width: 420px;
  --page-media-height: auto;
  --page-media-fit: contain;
  --page-media-position: center;
}

/* Operational structure: tiered hierarchy */
.mgmt-structure {
  background: var(--bg-panel);
  padding: 54px 0 60px;
  text-align: center;
}
.mgmt-structure-sub { color: var(--grey-text); font-size: 17px; margin: 0 auto 38px; max-width: 640px; }
.mgmt-tiers { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mgmt-tier {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 20px 0 0;
  margin-top: 22px;
}
/* horizontal bus line above each tier row */
.mgmt-tier::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 22px;
  background: var(--green);
}
/* connector stubs from bus line to each card in multi-card tiers */
.mgmt-tier > .mgmt-rank { position: relative; }
.mgmt-tier > .mgmt-rank::before {
  content: "";
  position: absolute;
  top: -20px; left: 50%;
  width: 2px; height: 20px;
  background: var(--green);
  transform: translateX(-50%);
}
.mgmt-rank {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 210px;
  padding: 16px 22px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--border-grey);
  border-bottom: 3px solid var(--green);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mgmt-rank::after {
  display: none;
}
.mgmt-rank:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.mgmt-rank--top {
  border-bottom-color: var(--red);
  font-size: 18px;
  padding: 20px 34px 18px;
  background: linear-gradient(180deg, #1b1b1b, var(--bg-panel));
}
.mgmt-tier:first-child { padding-top: 0; margin-top: 0; }
.mgmt-tier:first-child::before { display: none; }
.mgmt-tier:first-child > .mgmt-rank::before { display: none; }

/* Left-aligned single-rank tiers */
.mgmt-tier--left {
  align-self: flex-start;
  justify-content: flex-start;
}
.mgmt-tier--left::before { display: none; }
.mgmt-tier--left > .mgmt-rank::before {
  height: 42px;
  top: -42px;
}

/* Branch tier: three cards hanging off the last left-aligned rank */
.mgmt-tier--branch {
  align-self: flex-start;
  justify-content: flex-start;
  padding-top: 44px;
  margin-top: 0;
}
/* vertical drop from the rank above into the horizontal bus */
.mgmt-tier--branch::before {
  left: 105px;
  top: 0;
  height: 22px;
  transform: none;
}
/* horizontal bus connecting the three cards */
.mgmt-tier--branch::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 105px;
  right: 105px;
  height: 2px;
  background: var(--green);
}
.mgmt-tier--branch > .mgmt-rank {
  width: 210px;
  min-width: 210px;
  text-align: center;
  font-size: 14px;
}
.mgmt-tier--branch > .mgmt-rank::before {
  top: -22px;
  height: 22px;
}

/* Operational structure diagram: fixed desktop geometry keeps the connector
   lines clean and aligned with the reporting cards. */
.mgmt-org-chart {
  position: relative;
  width: min(100%, 1000px);
  height: 1155px;
  margin: 0 auto 34px;
}
.mgmt-org-chart__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mgmt-org-chart__lines path {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mgmt-org-chart__bus {
  position: absolute;
  z-index: 0;
  height: 5px;
  border-radius: 3px;
  background: var(--green);
}
/* Horizontal reporting lines are separate elements so they remain solid at
   every desktop pixel density, instead of depending on SVG stroke rendering. */
.mgmt-org-chart__bus--board { top: 98px; left: 425px; width: 235px; }
.mgmt-org-chart__bus--management { top: 210px; left: 205px; width: 560px; }
.mgmt-org-chart__card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 60px;
  padding: 14px 20px 12px;
  border: 1px solid #414141;
  border-bottom: 3px solid var(--green);
  border-radius: 4px;
  background: #171717;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.mgmt-org-chart__board { top: 0; left: 400px; width: 240px; min-height: 72px; border-bottom-color: var(--red); font-size: 18px; }
.mgmt-org-chart__gm { top: 115px; left: 320px; width: 210px; }
.mgmt-org-chart__accounts { top: 115px; left: 555px; width: 210px; }
.mgmt-org-chart__operations { top: 225px; left: 100px; width: 210px; }
.mgmt-org-chart__administration { top: 225px; left: 350px; width: 230px; }
.mgmt-org-chart__customer-care { top: 225px; left: 610px; width: 310px; }
.mgmt-org-chart__area, .mgmt-org-chart__sector, .mgmt-org-chart__visiting, .mgmt-org-chart__assistant, .mgmt-org-chart__chief, .mgmt-org-chart__oic, .mgmt-org-chart__senior { left: 0; width: 220px; }
.mgmt-org-chart__area { top: 360px; }
.mgmt-org-chart__sector { top: 465px; }
.mgmt-org-chart__visiting { top: 570px; }
.mgmt-org-chart__assistant { top: 675px; }
.mgmt-org-chart__chief { top: 780px; }
.mgmt-org-chart__oic { top: 885px; }
.mgmt-org-chart__senior { top: 990px; }
.mgmt-org-chart__cpo, .mgmt-org-chart__officers, .mgmt-org-chart__lady-officers { top: 1095px; width: 200px; }
.mgmt-org-chart__cpo { left: 0; }
.mgmt-org-chart__officers { left: 250px; }
.mgmt-org-chart__lady-officers { left: 500px; }
.mgmt-org-chart__mobile { display: none; }

@media (max-width: 1050px) {
  .mgmt-org-chart { height: auto; max-width: 340px; }
  .mgmt-org-chart__lines { display: none; }
  .mgmt-org-chart__bus { display: none; }
  .mgmt-org-chart__card { display: none; }
  .mgmt-org-chart__mobile { display: flex; flex-direction: column; gap: 20px; }
  .mgmt-mobile-rank {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 22px;
  }
  .mgmt-mobile-rank::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    right: 18%;
    height: 4px;
    background: var(--green);
    border-radius: 3px;
  }
  .mgmt-mobile-rank:not(.mgmt-mobile-rank--single) .mgmt-mobile-card::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    width: 3px;
    height: 22px;
    background: var(--green);
    transform: translateX(-50%);
  }
  .mgmt-mobile-rank--top { display: block; padding-top: 0; }
  .mgmt-mobile-rank--top::before { display: none; }
  .mgmt-mobile-rank--top .mgmt-mobile-card::before { display: none; }
  .mgmt-mobile-rank--top::after,
  .mgmt-mobile-rank--two::after,
  .mgmt-mobile-rank--three:not(.mgmt-mobile-rank--bottom)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 3px;
    height: 20px;
    background: var(--green);
    transform: translateX(-50%);
  }
  .mgmt-mobile-rank--three .mgmt-mobile-card:last-child { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
  .mgmt-mobile-rank--single { display: block; padding-top: 20px; }
  .mgmt-mobile-rank--single::before { left: 50%; right: auto; width: 3px; height: 20px; transform: translateX(-50%); }
  .mgmt-mobile-rank--single::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 3px;
    height: 20px;
    background: var(--green);
    transform: translateX(-50%);
  }
  .mgmt-mobile-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 58px;
    padding: 10px 8px 8px;
    border: 1px solid #414141;
    border-bottom: 3px solid var(--green);
    border-radius: 4px;
    background: #171717;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .025em;
    text-align: center;
    text-transform: uppercase;
  }
  .mgmt-mobile-card--board { min-height: 68px; border-bottom-color: var(--red); font-size: 16px; }
}

@media (max-width: 640px) {
  .mgmt-rank { min-width: 0; width: 100%; max-width: 340px; font-size: 14px; }
  .mgmt-tier { flex-direction: column; align-items: center; }
  .mgmt-tier.mgmt-tier--left { align-items: flex-start; }
  .mgmt-tier.mgmt-tier--branch { align-items: flex-start; padding-top: 20px; margin-top: 22px; }
  .mgmt-tier.mgmt-tier--branch::after { display: none; }
  .mgmt-tier.mgmt-tier--branch::before { left: 20px; height: 20px; }
  .mgmt-tier.mgmt-tier--branch > .mgmt-rank { width: 100%; max-width: 340px; min-width: 0; }
  .mgmt-tier.mgmt-tier--branch > .mgmt-rank::before { left: 20px; top: -20px; height: 20px; transform: none; }
  .mgmt-tier.mgmt-tier--branch > .mgmt-rank:not(:first-child)::before { height: 34px; top: -34px; }
}

@media (max-width: 900px) {
.topbar {
  flex-direction: column;
  align-items: center;
  gap: 0px;
  font-size: 13px;
  text-align: center;
}
  .contact-list li {
    padding: 0 3px;
  }
  .contact-list li:first-child {
    padding-left: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-text {
    padding: 40px 0 10px;
  }
  .about-media {
    min-height: auto;
    padding: 20px 0 40px;
  }
  .about-media img {
    width: 100%;
    transform: scale(1);
  }
  .hero::after {
    inset: 0;
    background-position: center, 68% center;
    background-size: cover, auto 100%;
    opacity: 0.48;
  }
  .hero-content {
    padding: 58px 15px 52px;
  }
}

@media (max-width: 1024px) {
  .header-main {
    align-items: flex-start !important;
    flex-wrap: wrap;
    padding-bottom: 12px;
  }
  .brand-block {
    display: contents;
  }
  .logo {
    align-self: flex-start !important;
    order: 1;
    margin-top: -4px;
    padding-top: 0;
  }
  .brand-name {
    order: 2;
    flex: 1;
    align-self: flex-start !important;
    margin-top: 4px;
  }
  .nav-toggle {
    order: 3;
    align-self: flex-start !important;
    margin-top: 2px;
  }
  .nav-toggle {
    display: block;
  }
  .brand-name {
    margin-bottom: 0;
    font-size: 18px;
  }
  .logo img {
    width: 76px !important;
    margin-bottom: 0;
  }
  .navbar {
    display: none;
    order: 4;
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 14px;
    border-radius: 0 0 9px 9px;
  }
  .navbar.is-open {
    display: block;
  }
  .nav-list {
    flex-direction: column;
  }
.nav-list > li {
  border: 0;
}
  .nav-list > li > a {
    justify-content: space-between;
    padding: 13px 18px;
    border-radius: 0;
  }
  .nav-list > li:first-child > a {
    border-radius: 0;
  }
  .nav-list > li:last-child > a {
    border-radius: 0 0 8px 8px;
  }
  .dropdown-menu {
    position: static;
    border: 0;
    border-top: 1px solid var(--green);
    min-width: 0;
  }
  .has-dropdown:hover .dropdown-menu {
    display: none;
  }
  .has-dropdown.open .dropdown-menu {
    display: block;
  }
  .subdropdown-menu {
    position: static;
    border: 0;
    border-top: 1px solid var(--green);
    min-width: 0;
    margin-left: 14px;
  }
  .has-subdropdown:hover .subdropdown-menu {
    display: none;
  }
  .has-subdropdown.open .subdropdown-menu {
    display: block;
  }
  .caret-right {
    display: none;
  }
  .hero-content {
    padding: 38px 15px 34px;
  }
  .hero .hero-title {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 17px;
  }
  .slide img {
    height: 240px;
  }
  .section-title .line-1 {
    font-size: 38px;
  }
  .section-title .line-2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 26px;
  }
  .slide img {
    height: 190px;
  }
  .contact-list {
    gap: 2px 0;
  }
  .contact-list li {
    border-left: 0;
    padding-left: 0;
  }
}

/* 10. EXPERIENCE / SERVICES / WHY / CLIENTS ------------------------------- */
.hl-green { color: var(--green); }
.center { text-align: center; }

.experience {
  background: var(--bg-panel);
  padding: 46px 0 56px;
  text-align: center;
}
.stars { color: var(--red); letter-spacing: 14px; font-size: 20px; margin-bottom: 6px; }
.stars .mid { color: var(--green); }
.exp-title {
  font-size: 42px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.exp-num { color: var(--green); font-size: 58px; }
.exp-sub { color: var(--grey-text); font-size: 17px; margin: 0 auto 30px; max-width: 720px; }
.exp-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.exp-grid-4 { grid-template-columns: repeat(4, 1fr); }
.exp-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 78%; margin-left: auto; margin-right: auto; }
.exp-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  min-height: 130px;
}
.exp-icon {
  width: 76px; height: 76px; flex: 0 0 76px;
  font-size: 34px;
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-card-text { border-left: 2px solid var(--green); padding-left: 14px; }
.exp-card-text p { margin: 0; font-family: var(--font-head); font-size: 14px; letter-spacing: 0.04em; color: var(--grey-text); text-transform: uppercase; }
.exp-big { font-size: 34px !important; color: var(--green) !important; line-height: 1.05; font-weight: 700; }
.exp-big-sm { font-size: 15px !important; color: var(--white) !important; font-weight: 600; margin-bottom: 4px !important; }
.exp-card-text::after { content: ""; display: block; width: 34px; height: 3px; background: var(--green); margin-top: 12px; }

.services {  padding: 46px 0 54px; }
.services:has(+ .services) { background: var(--bg-panel); }
.services + .page-section { background: var(--bg-panel); }
.sec-heading {
  text-align: center;
  font-size: 34px;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
font-weight: 700;

}
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.services-grid > * { flex: 0 1 calc((100% - 4 * 12px) / 5); }
.training-pair-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.service-tile {
  background: var(--bg-panel);
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.service-tile:hover { border-color: var(--green); transform: translateY(-3px); }
.service-tile .ic { width: 72px; height: 72px; font-size: 32px; color: var(--white); border: 2px solid var(--green); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.service-tile:hover .ic { background: var(--green); }
.service-tile span { font-family: var(--font-head); font-size: 13px; letter-spacing: 0.04em; color: var(--white); }
.btn-outline {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 30px;
  border: 2px solid var(--green);
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  font-size: 15px;
  color: var(--white);
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--green); }
.btn-outline .arrow { color: var(--green); margin-left: 6px; }
.btn-outline:hover .arrow { color: var(--white); }

.why { background: var(--bg-panel); padding: 46px 0 54px; }
.why-grid { display: grid; grid-template-columns: 0.9fr 2fr; gap: 22px; align-items: stretch; }
.why-media { margin: 0; height: 100%; }
.why-media img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; border-radius: 4px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: stretch; }
.why-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-grey);
  border-top: 3px solid var(--green);
  border-radius: 4px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.why-card:hover { transform: translateY(-3px); border-color: var(--green); }
.why-ic {
  width: 62px; height: 62px;
  font-size: 26px;
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s ease;
}
.why-card:hover .why-ic { background: var(--green); color: var(--black); }
.why-card .why-title { font-family: var(--font-head); font-size: 16px; margin: 0 0 8px; color: var(--green); letter-spacing: 0.04em; font-weight: 700; text-transform: uppercase; }
.why-card p { margin: 0; font-size: 15px; color: var(--grey-text); line-height: 1.6; text-align: center; }

.clients { background: var(--black); padding: 46px 0 40px; }
.clients-sub { text-align: center; color: var(--grey-text); font-size: 16px; margin: -14px 0 26px; }
.clients-sub-p { 
  text-align: justify; 
  color: var(--grey-text); 
  font-size: 16px; 
  margin: -14px 0 26px; 
}
.clients-slider { position: relative; display: flex; align-items: center; gap: 12px; }
.clients-viewport { overflow: hidden; flex: 1; }
.clients-track { display: flex; gap: 12px; transition: transform 0.5s ease; }
.client-box {
  flex: 0 0 calc((100% - 36px) / 5);
  background: #121212;
  color: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.clients-slider .slider-btn {
  position: static;
  transform: none;
  background: var(--bg-panel);
  border: 1px solid var(--green);
  width: 42px;
  height: 62px;
  font-size: 20px;
  color: var(--green);
  cursor: pointer;
  flex: 0 0 42px;
}
.client-box img {
  max-width: 140px;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.clients-slider .slider-btn:hover { background: var(--green); color: var(--black); }
.dots { display: flex; gap: 9px; justify-content: center; margin-top: 20px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #555; cursor: pointer; }
.dot.on { background: var(--red); }

.contact-bar { background: var(--bg-panel); padding: 20px 0; }
.contact-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-bar p { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 13.5px; color: var(--grey-text); }
.contact-bar .ic { width: 40px; height: 40px; flex: 0 0 40px; font-size: 17px; color: var(--green); border: 2px solid var(--green); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.contact-bar a { color: var(--grey-text); transition: color 0.2s; }
.contact-bar a:hover { color: var(--green); }

@media (max-width: 1024px) {
  .exp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .exp-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .services-grid > * { flex-basis: calc((100% - 3 * 12px) / 4); }
  .why-grid { grid-template-columns: 1fr; }
  .why-media img { min-height: 280px; max-height: 340px; }
  .client-box { flex-basis: calc((100% - 24px) / 3); }
  .contact-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .exp-title { font-size: 28px; }
  .exp-num { font-size: 40px; }
  .sec-heading { font-size: 25px;font-weight: 700; }
  .exp-grid-4, .exp-grid-3 { grid-template-columns: 1fr; }
  .services-grid > * { flex-basis: calc((100% - 12px) / 2); }
  .training-pair-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .client-box { flex-basis: calc((100% - 12px) / 2); }
  .contact-bar-inner { grid-template-columns: 1fr; }
}


/* justified body copy + footer credit */
.exp-sub, .clients-sub { text-align: center; }

.footer-inner .credit { margin: 0; font-size: 13px; color: var(--grey-text); }
.footer-inner .credit a { color: var(--green); }
.footer-inner .credit a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .exp-icon { width: 62px; height: 62px; flex: 0 0 62px; font-size: 27px; }
}



/* Sri Lanka map icon (island-wide capability card) */
.exp-icon-map svg { width: 48px; height: 48px; display: block; }
@media (max-width: 640px) {
  .exp-icon-map svg { width: 40px; height: 40px; }
}

/* Pre-CTA prompt bar ------------------------------------------------------ */
.pre-cta-band {
  padding: 28px 0 38px;
 
  
}
.pre-cta-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 26px 34px;
  border: 1px solid rgba(98, 187, 70, 0.45);
  border-radius: 14px;
    background:
    radial-gradient(120% 180% at 12% 50%, rgba(98, 187, 70, 0.16) 0%, rgba(98, 187, 70, 0) 55%),
    #0b0f0b;
}
.pre-cta-icon {
  position: relative;
  flex: 0 0 auto;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.pre-cta-icon .ic {
  font-size: 72px;
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
}
.pre-cta-icon .ic-check {
  position: absolute;
  top: 50%;
  left: calc(50% - 13px);
  transform: translate(-50%, -55%);
  font-size: 26px;
  color: var(--green);
}
.pre-cta-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.pre-cta-text p {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.55;
  max-width: 100%;
}
@media (max-width: 640px) {
  .pre-cta-inner { flex-direction: column; text-align: center; padding: 24px 20px; gap: 18px; }
  .pre-cta-icon { border-right: 0; padding-right: 0; }
  .pre-cta-title { font-size: 22px; }
}

/* Patrol pre-cta band — four icon cards inside pre-cta-band styling */
.pre-cta-band.patrol-band { padding: 28px 0 38px; }
.pre-cta-band.patrol-band .pre-cta-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(98, 187, 70, 0.45);
  border-radius: 14px;
  background:
    radial-gradient(120% 180% at 12% 50%, rgba(98, 187, 70, 0.16) 0%, rgba(98, 187, 70, 0) 55%),
    #0b0f0b;
  overflow: hidden;
}
.pre-cta-patrol-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 22px 28px;
  border-left: 1px solid rgba(98, 187, 70, 0.25);
}
.pre-cta-patrol-item:first-child { border-left: 0; }
.pre-cta-patrol-item .pre-cta-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 0 16px;
  padding: 0;
  border: 2px solid var(--green);
  border-radius: 50%;
  border-right: 2px solid var(--green);
}
.pre-cta-patrol-item .pre-cta-icon .ic {
  font-size: 30px;
  color: var(--green);
  -webkit-text-stroke: 0;
}
.pre-cta-patrol-item .pre-cta-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.pre-cta-patrol-item .pre-cta-text p {
  font-size: 16px;
  line-height: 1.45;
  max-width: 220px;
}
@media (max-width: 900px) {
  .pre-cta-band.patrol-band .pre-cta-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pre-cta-patrol-item:nth-child(3) { border-left: 0; }
  .pre-cta-patrol-item:nth-child(-n+2) { border-bottom: 1px solid rgba(98, 187, 70, 0.25); }
}
@media (max-width: 560px) {
  .pre-cta-band.patrol-band .pre-cta-inner { grid-template-columns: 1fr; }
  .pre-cta-patrol-item {
    border-left: 0;
    border-bottom: 1px solid rgba(98, 187, 70, 0.25);
  }
  .pre-cta-patrol-item:last-child { border-bottom: 0; }
}

/* Two-item patrol band — each item spans half the container width */
.pre-cta-band.patrol-band.patrol-band--two .pre-cta-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pre-cta-band.patrol-band.patrol-band--two .pre-cta-patrol-item:first-child { border-left: 0; }
.pre-cta-band.patrol-band.patrol-band--two .pre-cta-patrol-item .pre-cta-text p { max-width: 100%; }
@media (max-width: 900px) {
  .pre-cta-band.patrol-band.patrol-band--two .pre-cta-inner { grid-template-columns: 1fr; }
  .pre-cta-band.patrol-band.patrol-band--two .pre-cta-patrol-item { border-left: 0; }
  .pre-cta-band.patrol-band.patrol-band--two .pre-cta-patrol-item:first-child { border-bottom: 1px solid rgba(98, 187, 70, 0.25); }
}

/* CTA band + redesigned footer -------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 54px 0 58px;
  text-align: center;

  background:
    linear-gradient(
      135deg,
      #07140d 0%,
      #0b2a18 45%,
      #06110a 100%
    );
}

/* Large diagonal green design */
.cta-band::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -380px;
  right: -180px;

  border: 100px solid rgba(60, 180, 90, 0.08);
  transform: rotate(45deg);

  pointer-events: none;
}

/* Secondary geometric shape */
.cta-band::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -350px;
  left: -180px;

  border: 80px solid rgba(60, 180, 90, 0.06);
  border-radius: 50%;

  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 2;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cta-title span { color: var(--green); }
.cta-copy { max-width: 720px; margin: 0 auto; }
.cta-text { margin: 0 0 14px; color: var(--grey-text); font-size: 16.5px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cta-btn.primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.cta-btn.ghost { background: transparent; border-color: var(--white); color: var(--white); }
.cta-btn.ghost i { color: var(--white); }
.cta-btn.ghost:hover { background: var(--white); color: #111; }
.cta-btn.ghost:hover i { color: #111; }

.site-footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--red);
  padding: 46px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1.2fr;
  gap: 34px;
}
.footer-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}
.footer-rule {
  display: block;
  width: 46px;
  height: 3px;
  background: var(--green);
  margin: 10px 0 18px;
}
.footer-about { margin: 0; color: var(--grey-text); font-size: 15.5px; line-height: 1.75; }
.footer-links li { margin-bottom: 11px; }
.footer-links a,
.footer-contact a {
  color: var(--grey-text);
  transition: color 0.2s;
}
.footer-links a { display: inline-flex; align-items: center; gap: 10px; font-size: 15.5px; letter-spacing: 0.03em; }
.footer-links a i { color: var(--green); font-size: 13px; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--green); }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--grey-text);
  font-size: 15.5px;
  line-height: 1.65;
}
.footer-contact li i { color: var(--green); width: 18px; flex: 0 0 18px; margin-top: 4px; }
.footer-fb { background: var(--black); width: 100%; max-width: 290px; overflow: hidden; }
.footer-fb iframe { max-width: 100%; }
.footer-fb iframe { width: 100%; border: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--green);
  color: var(--green);
  transition: background 0.2s, color 0.2s;
}
.footer-social svg { width: 20px; height: 20px; display: block; }
.footer-social a:hover { background: var(--green); color: var(--black); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 18px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  color: var(--grey-text);
}
.footer-bottom p { margin: 0; }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 21px; }
}


/* 11. RESPONSIVE FIXES --------------------------------------------------- */
@media (max-width: 1100px) {
  .services-grid > * { flex-basis: calc((100% - 3 * 12px) / 4); }
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-media img { height: auto; }
  .navbar { max-height: 70vh; overflow-y: auto; background: var(--black); border-top: 1px solid var(--green); }
  .nav-list > li > a { font-size: 17px; }
}
@media (max-width: 900px) {
  .topbar { row-gap: 6px; }
  .whatsapp-contact { margin: 0 auto; }
  .whatsapp-contact .whatsapp-badge { height: 26px; }
}
@media (max-width: 780px) {
  .exp-card { flex-direction: column; align-items: center; text-align: center; }
  .exp-card-text { border-left: 0; border-top: 2px solid var(--green); padding: 12px 0 0; }
  .exp-card-text::after { margin-left: auto; margin-right: auto; }
  .clients-slider { gap: 6px; }
  .clients-slider .slider-btn { width: 34px; flex: 0 0 34px; height: 52px; }
  .cta-actions { width: 100%; }
  .cta-btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-name { font-size: 20px; letter-spacing: 0.02em; }
  .logo img { width: 72px !important; }
  .contact-list { justify-content: center; }
  .contact-list li { padding: 0 8px; }
  .topbar { font-size: 13px; }
  .hero { min-height: 360px; }
  /* About Us compact hero: keep compact on mobile (do not inherit the 360px height) */
  .hero-compact { min-height: 170px; }
  .hero-compact .hero-content { padding: 24px 15px 22px; }
  .hero-compact .hero-title { font-size: 24px; line-height: 1.08; }
  .hero-compact .hero-sub { font-size: 14px; }
  .hero-compact .hero-rule { width: 54px; height: 4px; margin: 14px 0 12px; }
  .sec-heading { font-size: 24px; }
  .cta-title { font-size: 24px; }
  .cta-text { font-size: 15.5px; }
  .footer-bottom { flex-direction: column; text-align: left; }
}
@media (max-width: 420px) {
  .logo img { width: 68px !important; }
  .services-grid > * { flex-basis: 100%; }
  .client-box { flex-basis: 100%; }
  .brand-name { font-size: 12.5px; }
}

/* About Us page ----------------------------------------------------------- */
.page-section { background: var(--black); padding: 56px 0 48px; }
.page-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, var(--page-media-width)); gap: 48px; align-items: start; }
.page-grid-media-left { grid-template-columns: minmax(240px, var(--page-media-width)) minmax(0, 1fr); }
.page-grid-media-left .page-media { order: -1; }
.ab-block {
  margin-bottom: 15px;
  padding: 5px 0px;

}
.ab-block p { text-align: justify; }
.ab-block:last-child { margin-bottom: 0; }
.ab-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 14px;
}
.ab-title span { color: var(--green); }
.page-copy p { margin: 0 0 12px; color: var(--grey-text); font-size: 16.5px; line-height: 1.75; }
.page-copy p:last-child { margin-bottom: 0; }
.ab-list { display: grid; gap: 8px; margin-top: 10px; }
.ab-list li { position: relative; padding-left: 24px; color: var(--grey-text); font-size: 16.5px; line-height: 1.6; }
.ab-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
}
.page-media { width: 100%; margin: 0; position: sticky; top: 20px; overflow: hidden; border-radius: 10px; }
.page-media img {
  width: 100%;
  height: var(--page-media-height);
  object-fit: var(--page-media-fit);
  object-position: var(--page-media-position);
  border-radius: inherit;
}

.lesson-band {
  background:
    linear-gradient(rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.92)),
    url("images/hero-inside-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  padding: 46px 0 48px;
}
.lesson-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.lesson-title span { color: var(--green); }
.lesson-sub {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.lesson-sub span {
  color: var(--green);
}

.lesson-sub .highlight-red {
  color: var(--red);
}

.lesson-sub .highlight-green {
  color: var(--green);
}
.lesson-band p {
  color: var(--grey-text);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 12px;
}

.lesson-band p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .page-section { padding: 44px 0 38px; }
  .page-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-media { position: static; max-width: 320px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .ab-block { padding: 18px 18px 22px; }
  .ab-title { font-size: 24px; }
  .lesson-title { font-size: 26px; }
  .lesson-sub { font-size: 19px; }
}


/* 12. HOME - SECURITY SERVICE CATEGORY CARDS ------------------------------
   Distinct from the informational .service-tile boxes used on the
   About Us and Our Management pages. These are clickable navigation links. */
.svc-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.svc-cat-grid > * { flex: 0 1 calc((100% - 4 * 14px) / 5); }

/* Service tiles: big circular icon, centered label, button footer */
.svc-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 34px 18px 74px;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  background: #131313;
  border: 1px solid var(--border-grey);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
/* green sweep layer */
.svc-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--green);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* footer link-style CTA */
.svc-cat-card::before {
  content: "LEARN MORE \2192";
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding-bottom: 5px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
  color: var(--green);
  border-bottom: 1.5px solid rgba(98, 187, 70, 0.45);
  transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
}
.svc-cat-card .ic {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  font-size: 30px;
  line-height: 1;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-cat-card span {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
}
.svc-cat-card:hover,
.svc-cat-card:focus-visible {
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
  outline: none;
}
.svc-cat-card:hover::after,
.svc-cat-card:focus-visible::after { transform: translateY(0); }
.svc-cat-card:hover::before,
.svc-cat-card:focus-visible::before {
  color: var(--white);
  border-bottom-color: var(--white);
  letter-spacing: 0.2em;
}
.svc-cat-card:hover .ic,
.svc-cat-card:focus-visible .ic {
  background: var(--white);
  color: var(--green);
  transform: scale(1.06);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}
.svc-cat-card:active { transform: translateY(-1px); }

@media (max-width: 1100px) {
  .svc-cat-grid > * { flex-basis: calc((100% - 3 * 14px) / 4); }
}
@media (max-width: 900px) {
  .svc-cat-grid > * { flex-basis: calc((100% - 2 * 14px) / 3); }
}
@media (max-width: 640px) {
  .svc-cat-grid { gap: 12px; }
  .svc-cat-grid > * { flex-basis: calc((100% - 12px) / 2); }
  .svc-cat-card { padding: 26px 12px 64px; gap: 14px; }
  .svc-cat-card .ic { width: 60px; height: 60px; flex-basis: 60px; font-size: 26px; }
  .svc-cat-card span { font-size: 12.5px; }
  .svc-cat-card::before { bottom: 20px; font-size: 10.5px; }
}
@media (max-width: 420px) {
  .svc-cat-grid > * { flex-basis: 100%; }
}

/* Services page: three-block approach row above CTA */
.svc-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.svc-approach-grid .ab-block { margin-bottom: 0; height: 100%; }
.svc-approach-grid .ab-block .ab-title { font-size: 22px; line-height: 1.25; }
.svc-approach-grid .ab-block p { margin: 10px 0 0; color: var(--grey-text); font-size: 16px; line-height: 1.7; }
@media (max-width: 900px) {
  .svc-approach-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Industries We Serve: circular icons inside approach-grid blocks */
.svc-approach-grid .ab-block .ic {
  width: 64px;
  height: 64px;
  font-size: 28px;
  line-height: 1;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
}

/* Two-column variant of the approach grid (e.g. CCTV Integrated Security) */
.svc-approach-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .svc-approach-grid.cols-2 { grid-template-columns: 1fr; }
}

/* ============ Contact page ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.contact-grid .ab-block { margin-bottom: 0; height: 100%; }
.contact-grid .ab-block > p { color: var(--grey-text); margin: 10px 0 18px; }
.contact-form .field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.custom-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.contact-form .field { display: flex; flex-direction: column; margin-bottom: 16px; }
.custom-form label,
.contact-form label {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form .req,
.custom-form label span { color: var(--white) !important; }
.custom-form input,
.custom-form textarea,
.custom-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 11px 13px;
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  background: var(--bg-panel);
  color: var(--white);
  width: 100%;
}
.custom-form input::placeholder,
.custom-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey-text); opacity: .65; }
.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: 2px solid transparent; border-color: var(--green); box-shadow: 0 0 0 2px rgba(98, 187, 70, .18); }
.custom-form textarea,
.contact-form textarea { resize: vertical; }
.contact-form .recaptcha-field { margin-bottom: 18px; }
.custom-button,
.contact-form button[type="submit"] { border: 0; cursor: pointer; }
.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.custom-button:hover { background: var(--green-dark); }
.form-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 4px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
}
.form-note ul { margin: 0; padding-left: 18px; }
.form-note.success { background: #eaf6ec; border: 1px solid #b8e0bf; color: #1e6b2b; }
.form-note.error { background: #fdecea; border: 1px solid #f5c2bd; color: #97231a; }
.contact-info { list-style: none; margin: 14px 0 0; padding: 0; }
.contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px dashed #e2e6ea;
  color: var(--grey-text);
  font-size: 15.5px;
  line-height: 1.6;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li .ic {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green, #2e7d32);
  color: #fff;
  font-size: 15px;
}
.contact-info a { color: inherit; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.map-section .map-embed {
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.map-section .map-embed iframe { display: block; width: 100%; border: 0; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .map-section .map-embed iframe { height: 320px; }
}

/* ------------------------------------------------------------------
   Quote page (quote.php)
   ------------------------------------------------------------------ */
.page-quote .quote-form select,
.page-quote .quote-form input[type="text"],
.page-quote .quote-form input[type="tel"],
.page-quote .quote-form input[type="email"] {
  width: 100%;
}

.quote-subtitle {
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-hint {
  margin: 0 0 14px;
  color: var(--grey-text);
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.quote-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 6px;
}

.quote-table th,
.quote-table td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px 10px;
  text-align: left;
  font-size: 0.92rem;
}

.quote-table thead th {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.05);
}

.quote-table td.center,
.quote-table th.center {
  text-align: center;
}

.quote-table td input[type="text"] {
  width: 80px;
  text-align: center;
  padding: 6px;
}

.quote-checks {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.check-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.check-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.quote-note {
  margin-top: 18px;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

@media (min-width: 640px) {
  .quote-checks {
    grid-template-columns: 1fr 1fr;
  }
}


/* 10. UNIFORMS PAGE ------------------------------------------------------ */
.uniform-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.uniform-value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #d8d8d8;
  border-left: 3px solid var(--green);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.uniform-value .ic { color: var(--green); }

.standards-section { border-top: 2px solid var(--red); }
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.standard-item { text-align: left; }
.standard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg-dark);
  font-size: 26px;
  margin-bottom: 18px;
}
.standard-title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.standard-title span { color: var(--green); }
.standard-item p { color: var(--grey-text); margin: 0; line-height: 1.7; }
@media (max-width: 900px) {
  .standards-grid { grid-template-columns: 1fr; gap: 30px; }
}

.uniform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.uniform-card {
  margin: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-grey);
  border-bottom: 3px solid var(--green);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.uniform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.uniform-thumb {
  position: relative;
  display: block;
  padding: 14px 10px 0;
  background: var(--bg-dark);
}
.uniform-thumb img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}
.uniform-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.uniform-thumb:hover .uniform-zoom { opacity: 1; }
.uniform-card figcaption { padding: 14px 12px 18px; }
.uniform-name {
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 17px;
  margin: 0;
}
.uniform-role {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--grey-text);
}

@media (max-width: 1100px) {
  .uniform-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .uniform-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .uniform-thumb img { height: 230px; }
}

/* 11. LIGHTBOX ----------------------------------------------------------- */
.lightbox-link { cursor: zoom-in; display: block; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  max-width: min(900px, 88vw);
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.lightbox-caption {
  margin-top: 14px;
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 22px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  flex: 0 0 auto;
}
.lightbox-close:hover,
.lightbox-nav:hover { color: var(--green); border-color: var(--green); }
@media (max-width: 700px) {
  .lightbox { padding: 20px 8px; gap: 4px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 18px; }
}

/* ------------------------------------------------------------------
   Quote page refinements (dark framed form)
   ------------------------------------------------------------------ */
.page-quote .contact-grid {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.page-quote .contact-form-block,
.page-contact .contact-form-block {
  border: 2px solid var(--green);
  border-radius: 6px;
  padding: 28px 34px 34px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.page-quote .contact-form input,
.page-quote .contact-form textarea,
.page-quote .contact-form select,
.page-contact .contact-form input,
.page-contact .contact-form textarea,
.page-contact .contact-form select {
  background: var(--bg-panel);
  color: var(--white);
  border: 1px solid var(--border-grey);
}

.page-quote .contact-form input::placeholder,
.page-quote .contact-form textarea::placeholder,
.page-contact .contact-form input::placeholder,
.page-contact .contact-form textarea::placeholder {
  color: var(--grey-text);
  opacity: .65;
}

.page-quote .contact-form select,
.page-contact .contact-form select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 11px 13px;
  height: 46px;
  border-radius: 4px;
  width: 100%;
}

.page-quote .contact-form select option,
.page-contact .contact-form select option {
  background: var(--bg-panel);
  color: var(--white);
}

.page-quote .quote-table-wrap {
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 10px;
  background: #16181a;
}

.page-quote .quote-table {
  margin-bottom: 0;
}

.page-quote .quote-table th,
.page-quote .quote-table td {
  border: 1px solid var(--green);
  color: #ffffff;
}

.page-quote .quote-table thead th {
  background: #2a2d30;
}

.page-quote .quote-table tbody tr:first-child th {
  font-size: 1.2rem;
  font-weight: 600;
}

.page-quote .quote-table td input[type="text"] {
  background: #2a2d30;
  color: #ffffff;
  border: 1px solid #4a4e52;
}

.page-quote .quote-checks {
  border: 1px solid var(--border-grey);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  padding: 14px 16px;
  background: var(--bg-panel);
  gap: 0;
}

.page-quote .quote-checks li {
  padding: 9px 4px;
  border-bottom: 1px solid var(--border-grey);
}

.page-quote .quote-form .cta-btn {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
  font-weight: 600;
}

.page-quote .quote-form .cta-btn:focus-visible,
.custom-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.page-quote .g-recaptcha,
.page-contact .g-recaptcha { max-width: 100%; overflow: hidden; }

.page-quote .quote-checks li:last-child {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .page-quote .contact-grid { grid-template-columns: 1fr; }
  .page-quote .contact-form-block,
  .page-contact .contact-form-block { padding: 20px 18px 24px; }
}

/* Testimonials page */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  margin: 0;
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  border-top: 3px solid #7ab648;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
.testimonial-card a { display: block; }
.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}
.testimonial-card figcaption {
  padding: 12px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #222;
}
@media (max-width: 992px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Mobile patrol benefits strip */
.patrol-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0 34px;
  padding: 12px 0;
  border: 1px solid var(--green);
  border-radius: 14px;
  background: var(--black);
  overflow: hidden;
}
.patrol-benefit {
  min-width: 0;
  padding: 4px 22px 2px;
  text-align: center;
  border-left: 1px solid var(--green-dark);
}
.patrol-benefit:first-child { border-left: 0; }
.patrol-benefit .ic {
  display: block;
  margin: 0 auto 8px;
  color: var(--green);
  font-size: 46px;
  line-height: 1;
}
.patrol-benefit h3 {
  margin: 0 0 4px;
  color: var(--green);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.patrol-benefit p {
  max-width: 190px;
  margin: 0 auto;
  color: var(--white);
  font-size: 16px;
  line-height: 1.25;
}
@media (max-width: 800px) {
  .patrol-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .patrol-benefit:nth-child(3) { border-left: 0; }
  .patrol-benefit:nth-child(n + 3) {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--green-dark);
  }
}
@media (max-width: 480px) {
  .patrol-benefits { grid-template-columns: 1fr; padding: 4px 18px; }
  .patrol-benefit {
    padding: 20px 8px;
    border-left: 0;
    border-top: 1px solid var(--green-dark);
  }
  .patrol-benefit:first-child { border-top: 0; }
  .patrol-benefit:nth-child(n + 3) { margin-top: 0; }
}

/* PRELOADER -------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader-logo {
  width: auto;
  height: auto;
  display: block;
}
.preloader-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,0.12);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: preloader-spin 0.85s linear infinite;
}
@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 480px) {
  .preloader-logo { width: 110px; }
  .preloader-spinner { width: 34px; height: 34px; }
}



/* Google-style client reviews --------------------------------------------- */
.google-reviews {
  position: relative;
  padding: 58px 0 64px;
  background: var(--black);
  color: var(--white);
}
.google-reviews::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(237, 28, 36, 0.7), transparent);
}
.google-reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.google-reviews .sec-heading {
  margin: 0;
  color: var(--white);
  text-align: left;
}
.google-reviews-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 5px;
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.google-mark {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 40%, #fbbc05 0 65%, #ea4335 0 82%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--white);
  white-space: nowrap;
}
.google-rating strong {
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1;
}
.google-review-stars {
  color: #f9ab00;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.google-review-card {
  min-width: 0;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.google-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.google-review-top {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin-bottom: 16px;
}
.google-review-avatar {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
}
.google-review-person h3 {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.google-review-person p {
  margin: 2px 0 0;
  color: var(--grey-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}
.google-mark-card {
  align-self: start;
}
.google-review-copy {
  min-height: 128px;
  margin: 15px 0 8px;
  color: var(--grey-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
.google-review-copy.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 0;
}
.google-review-copy-wrap {
  margin-bottom: 18px;
}
.google-review-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.google-review-toggle:hover,
.google-review-toggle:focus-visible {
  color: var(--white);
  text-decoration: underline;
}
.google-review-source {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--grey-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.3;
}
.google-review-source i { color: var(--green); }

@media (max-width: 900px) {
  .google-reviews-grid { grid-template-columns: 1fr; }
  .google-review-copy { min-height: 0; }
}
@media (max-width: 600px) {
  .google-reviews { padding: 44px 0 48px; }
  .google-reviews-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .google-review-card { padding: 20px; }
  .google-reviews .sec-heading { font-size: 24px; }
}

      .wa-widget-container {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 99999;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
      }
      .wa-trigger-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25D366;
        color: #fff;
        border: none;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease;
        outline: none;
      }
      .wa-trigger-btn:hover {
        transform: scale(1.08);
        background: #22bf5b;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
      }
      .wa-trigger-btn .wa-icon-main {
        font-size: 34px;
        display: block;
        transition: transform 0.2s ease;
      }
      .wa-trigger-btn .wa-icon-close {
        font-size: 24px;
        display: none;
      }
      .wa-widget-container.active .wa-trigger-btn .wa-icon-main {
        display: none;
      }
      .wa-widget-container.active .wa-trigger-btn .wa-icon-close {
        display: block;
      }
      .wa-trigger-btn .wa-unread-badge {
        position: absolute;
        top: -3px;
        right: -3px;
        background: #e53935;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        animation: wa-bounce 2s infinite;
      }
      .wa-widget-container.active .wa-unread-badge {
        display: none;
      }
      .wa-pulse {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #25D366;
        animation: wa-ripple 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
        pointer-events: none;
      }
      .wa-chat-window {
        position: absolute;
        bottom: 74px;
        right: 0;
        width: 340px;
        max-width: calc(100vw - 32px);
        background: #efeae2;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        display: none;
        flex-direction: column;
        animation: wa-slide-up 0.25s ease-out forwards;
      }
      .wa-widget-container.active .wa-chat-window {
        display: flex;
      }
      .wa-header {
        background: #075E54;
        color: #fff;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .wa-avatar-wrap {
        position: relative;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
      }
      .wa-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        background: #fff;
      }
      .wa-avatar-fallback {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
      }
      .wa-online-dot {
        position: absolute;
        bottom: 1px;
        right: 1px;
        width: 11px;
        height: 11px;
        background: #25D366;
        border: 2px solid #075E54;
        border-radius: 50%;
      }
      .wa-header-info {
        flex: 1;
        min-width: 0;
      }
      .wa-title {
        margin: 0;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .wa-status {
        margin: 3px 0 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.2;
      }
      .wa-close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        padding: 0;
        opacity: 0.8;
        transition: opacity 0.15s ease;
      }
      .wa-close-btn:hover {
        opacity: 1;
      }
      .wa-body {
        padding: 16px;
        max-height: 240px;
        background-color: #efeae2;
        background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
        background-size: 12px 12px;
      }
      .wa-bubble {
        background: #fff;
        padding: 12px 14px;
        border-radius: 0 12px 12px 12px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.12);
        position: relative;
        max-width: 90%;
      }
      .wa-sender {
        margin: 0 0 4px;
        font-size: 11px;
        font-weight: 700;
        color: #075E54;
      }
      .wa-message {
        margin: 0 0 6px;
        font-size: 13.5px;
        color: #111b21;
        line-height: 1.45;
      }
      .wa-time {
        display: block;
        font-size: 10px;
        color: #667781;
        text-align: right;
      }
      .wa-footer {
        padding: 12px 16px;
        background: #f0f2f5;
        border-top: 1px solid #e1e4e8;
      }
      .wa-start-chat-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        padding: 11px 16px;
        background: #25D366;
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        border-radius: 24px;
        text-decoration: none !important;
        box-shadow: 0 2px 6px rgba(37, 211, 102, 0.4);
        transition: background 0.2s ease, transform 0.15s ease;
      }
      .wa-start-chat-btn:hover {
        background: #20bd5a;
        transform: translateY(-1px);
      }
      .wa-start-chat-btn i {
        font-size: 18px;
      }
      @keyframes wa-slide-up {
        from { opacity: 0; transform: translateY(14px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes wa-bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
      }
      @keyframes wa-ripple {
        0% { transform: scale(1); opacity: 0.8; }
        100% { transform: scale(1.55); opacity: 0; }
      }
      @media (max-width: 480px) {
        .wa-widget-container {
          bottom: 16px;
          right: 16px;
        }
        .wa-chat-window {
          bottom: 70px;
          right: 0;
          width: calc(100vw - 32px);
        }
      }
