/* ══════════════════════════════════════
   ROOT & RESET
══════════════════════════════════════ */
:root {
  --red: #1c65b9;
  --red-dark: #164791;
  --red-deep: #0a3445;
  --red-bright: #5373db;
  --red-glow: rgba(28, 114, 185, 0.35);
  --navy: #07111f;
  --navy2: #0d1b2e;
  --navy3: #122240;
  --gold: #c9a84c;
  --gold2: #e2c472;
  --white: #ffffff;
  --off: #f6f4f0;
  --gray: #6b7280;
  --light-gray: #d1d5db;
  --border: rgba(28, 44, 185, 0.25);
  --ff-display: "Cinzel", serif;
  --ff-body: "Raleway", sans-serif;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.tsi-logo {
  width: 50px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
video {
  display: block;
}
button {
  cursor: pointer;
  font-family: var(--ff-body);
}
a {
  text-decoration: none;
  color: inherit;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ══ PAGE ROUTER ══ */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  transition: var(--trans);
}
#nav.solid {
  background: rgba(7, 17, 31, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-logo {
  padding-right: 100px;
}

.logo-hex {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 22%, 100% 78%, 50% 100%, 0% 78%, 0% 22%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-hex::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(50% 0%, 100% 22%, 100% 78%, 50% 100%, 0% 78%, 0% 22%);
}
.logo-hex span {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.nl {
  font-family: var(--ff-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  padding: 8px 13px;
  background: none;
  border: none;
  transition: color 0.25s;
  position: relative;
}
.nl::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nl:hover {
  color: var(--white);
}
.nl:hover::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: blue;
}

.nbtn {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  transition: var(--trans);
}
.nbtn.ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.nbtn.ghost:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(185, 28, 28, 0.12);
}
.nbtn.fill {
  background: var(--red);
  color: var(--white);
  background-color: blue;
}
.nbtn.fill:hover {
  /* background: var(--red-bright); */
  transform: translateY(-1px);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.ham span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--trans);
}
.ham.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mob-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 8999;
  background: rgba(7, 17, 31, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem) 2rem;
  transform: translateY(-8px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  pointer-events: none;
}
.mob-menu.open {
  transform: translateY(0);
  opacity: 1;
  display: block;
  pointer-events: all;
}
.mob-menu .nl {
  display: block;
  padding: 13px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mob-menu .nbtn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding: 14px;
}

/* ══════════════════════════════════════
   SHARED HELPERS
══════════════════════════════════════ */
.sec {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.9rem;
}
.tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red-bright);
}
.h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}
.h2.dk {
  color: var(--navy);
}
.bar {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 1.1rem 0 1.8rem;
}
.sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}
.sub.dk {
  color: var(--gray);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.nav-logo img {
  width: 50px;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red-bright);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn-red:hover::after {
  transform: translateX(0);
}
.btn-red span {
  position: relative;
  z-index: 1;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--red);
  background: rgba(185, 28, 28, 0.1);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy2);
}

/* ══════════════════════════════════════
   MEDIA WRAPPER (video+image fallback)
   Videos: security guard related from Pexels (free)
   Images: Unsplash security/corporate related
══════════════════════════════════════ */
.media-wrap {
  position: relative;
  overflow: hidden;
}
.media-wrap video,
.media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.media-wrap img {
  z-index: 0;
}
.media-wrap video {
  z-index: 1;
}
/* If video fails to load, img shows underneath */

/* ══════════════════════════════════════
   HOME — HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 950px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  z-index: 0;
  /* red-tinted security image */
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    120deg,
    rgba(7, 17, 31, 0.92) 0%,
    rgba(127, 29, 29, 0.55) 55%,
    rgba(7, 17, 31, 0.473) 100%
  );
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 180px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}
/* Red scan-line effect */
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(185, 28, 28, 0.03) 0px,
    rgba(185, 28, 28, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
  padding-bottom: 110px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(185, 28, 28, 0.12);
  border: 1px solid rgba(185, 28, 28, 0.35);
  padding: 7px 16px;
  margin-bottom: 1.75rem;
  animation: upIn 0.7s 0.1s both;
  background-color: blue;
  color: #fff;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
  animation: upIn 0.7s 0.3s both;
}
.hero-h1 .blue-word {
  color: var(--blue-bright);
}
.hero-p {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: upIn 0.7s 0.5s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: upIn 0.7s 0.7s both;
  color: #122240;

  /* margin-left: 80px; */
}

/* Stats bar */
.hero-stats {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 3.5rem;
  animation: upIn 0.7s 0.9s both;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(185, 28, 28, 0.25);
  backdrop-filter: blur(10px);
}
.hstat {
  padding: 1.2rem clamp(1rem, 3vw, 2.2rem);
  border-right: 1px solid rgba(185, 28, 28, 0.2);
  text-align: center;
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
}
.hstat-l {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 4px;
}

@keyframes upIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   HOME — SERVICE CARDS (video/image)
══════════════════════════════════════ */
.svc-sec {
  background: var(--navy2);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3.5rem;
}
.svc-card {
  position: relative;
  height: clamp(280px, 35vw, 460px);
  overflow: hidden;
  cursor: pointer;
}
/* Each card has a media-wrap inside */
.svc-card .cm {
  position: absolute;
  inset: 0;
}
.svc-card .cm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s ease;
}
.svc-card .cm video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}
.svc-card:hover .cm img,
.svc-card:hover .cm video {
  transform: scale(1.07);
}
.svc-card-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(7, 17, 31, 0.97) 0%,
    rgba(127, 29, 29, 0.3) 50%,
    rgba(7, 17, 31, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}
.svc-card:hover .svc-card-ov {
  background: linear-gradient(
    to top,
    rgba(7, 17, 31, 1) 0%,
    rgba(127, 29, 29, 0.5) 55%,
    rgba(7, 17, 31, 0.25) 100%
  );
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s;
  z-index: 3;
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-shield {
  width: 46px;
  height: 46px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 22%, 100% 78%, 50% 100%, 0% 78%, 0% 22%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 1rem;
}
.svc-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.svc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0);
  line-height: 1.65;
  transition: color 0.35s;
}
.svc-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}
.svc-card .svc-arrow {
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════
   HOME — SPLIT VIDEO / WHY TSI
══════════════════════════════════════ */
.why-sec {
  position: relative;
  overflow: hidden;
}
.why-vid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.9);
  z-index: 1;
}
.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-pts {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}
.why-pt {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid rgba(185, 28, 28, 0.12);
  background: rgba(185, 28, 28, 0.03);
  transition: var(--trans);
}
.why-pt:hover {
  border-color: rgba(185, 28, 28, 0.4);
  background: rgba(185, 28, 28, 0.07);
  transform: translateX(6px);
}
.why-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-pt h4 {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}
.why-pt p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
}
/* Right: video panel */
.why-panel {
  position: relative;
}
.why-vid-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(185, 28, 28, 0.25);
}
.why-vid-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.why-vid-frame video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.why-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--red);
  padding: 1.75rem 2rem;
  text-align: center;
  z-index: 2;
}
.why-badge .wb-big {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.why-badge .wb-sm {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
/* Red corner accent */
.why-panel::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  z-index: 3;
}

/* ══════════════════════════════════════
   HOME — FULL MEDIA STRIPS
══════════════════════════════════════ */
.media-strip {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 45vw, 520px);
}
.media-strip img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  position: absolute;
  inset: 0;
  z-index: 0;
}
.media-strip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ms-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  padding: 2rem;
}
.ms-dark {
  background: linear-gradient(135deg, #07111f, rgba(29, 60, 127, 0.336));
}
.ms-red {
  background: rgba(29, 68, 127, 0.452);
}
.ms-overlay h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  max-width: 680px;
  line-height: 1.1;
}
.ms-overlay p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   HOME — TESTIMONIALS
══════════════════════════════════════ */
.testi-sec {
  background: var(--off);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.tc {
  background: var(--white);
  padding: 2.25rem;
  position: relative;
  border-bottom: 4px solid var(--red);
  transition: var(--trans);
}
.tc:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}
.tc-q {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 1.25rem;
  line-height: 1;
}
.tc-text {
  font-size: 14px;
  color: #2c3748;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.tc-name {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.tc-role {
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cta-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(29, 112, 127, 0.158)), rgba(28, 91, 185, 0.363);
}
.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;

  color: var(--white);
}
.cta-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 6px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════
   PAGE HEROES (inner pages)
══════════════════════════════════════ */
.ph {
  position: relative;
  overflow: hidden;
  padding: clamp(8rem, 14vw, 11rem) clamp(1rem, 5vw, 4rem)
    clamp(3.5rem, 6vw, 5rem);
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  z-index: 0;
}
.ph video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ph-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    120deg,
    rgba(7, 17, 31, 0.829) 0%,
    rgba(127, 29, 29, 0.411) 60%,
    rgba(7, 17, 31, 0.404) 100%
  );
}
/* red corner frame */
.ph::before,
.ph::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 50px;
  height: 50px;
}
.ph::before {
  top: 80px;
  left: clamp(1rem, 5vw, 4rem);
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.ph::after {
  bottom: clamp(3.5rem, 6vw, 5rem);
  right: clamp(1rem, 5vw, 4rem);
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.ph-content {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
}
.ph-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.25rem;
}
.ph-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--red-bright);
}
.ph-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.ph-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 1rem;
  max-width: 550px;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-intro {
  background: var(--white);
}
.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.ab-text .h2 {
  color: var(--navy);
}
.ab-text .bar {
  background: var(--red);
}
.ab-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-top: 1rem;
}
.ab-media {
  position: relative;
}
.ab-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.ab-media video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ab-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  z-index: 2;
  background: var(--red);
  padding: 1.6rem 1.8rem;
  text-align: center;
}
.ab-badge .big {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ab-badge .sm {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Team row */
.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 4px;
}
.team-card {
  position: relative;
  height: clamp(240px, 28vw, 360px);
  overflow: hidden;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s;
}
.team-card:hover img,
.team-card:hover video {
  transform: scale(1.07);
}
.team-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(7, 17, 31, 0.88) 0%,
    transparent 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.team-ov h4 {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white);
}
.team-ov p {
  font-size: 11px;
  color: var(--red-bright);
  margin-top: 3px;
}

/* Values */
.vals-sec {
  background: var(--navy2);
}
.vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.val-card {
  border-top: 3px solid var(--red);
  padding: 2rem;
  background: rgba(185, 28, 28, 0.03);
  transition: var(--trans);
}
.val-card:hover {
  background: rgba(185, 28, 28, 0.08);
  transform: translateY(-4px);
}
.val-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.val-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* Mission */
.mission-sec {
  background: var(--navy3);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mc {
  border: 1px solid rgba(185, 28, 28, 0.2);
  padding: 2rem;
  transition: var(--trans);
}
.mc:hover {
  border-color: rgba(185, 28, 28, 0.5);
  background: rgba(185, 28, 28, 0.04);
}
.mc h3 {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.9rem;
}
.mc p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.svc-features {
  background: var(--navy2);
}
.sf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sf.rev {
  direction: rtl;
}
.sf.rev > * {
  direction: ltr;
}
.sf-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.sf-media img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.5s;
}
.sf-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s;
}
.sf:hover .sf-media img,
.sf:hover .sf-media video {
  transform: scale(1.05);
}
.sf-body {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sf-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  border: 1px solid rgba(185, 28, 28, 0.35);
  padding: 4px 10px;
  margin-bottom: 1rem;
}
.sf-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.sf-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
}
.sf-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}
.sf-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 1.25rem;
  position: relative;
}
.sf-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ══════════════════════════════════════
   CLEANING PAGE
══════════════════════════════════════ */
.clean-sec {
  background: var(--navy2);
}
.clean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.cc {
  background: var(--navy3);
  overflow: hidden;
  transition: var(--trans);
}
.cc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.cc-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.cc-media img {
  width: 100%;
  height: 120%;
  /* object-fit: cover; */
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.5s;
}

.cc:hover .cc-media img,
.cc:hover .cc-media video {
  transform: scale(1.07);
}
.cc-body {
  padding: 1.75rem;
  border-bottom: 3px solid var(--red);
}
.cc-body h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.cc-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}
.cc-body ul {
  margin-top: 0.9rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cc-body li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  padding-left: 1rem;
  position: relative;
}
.cc-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-bright);
}

/* Benefits */
.ben-sec {
  position: relative;
  overflow: hidden;
}
.ben-sec img.benbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.14;
}
.ben-sec video.benbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.14;
}
.ben-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(7, 17, 31, 0);
}
.ben-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.bi {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(185, 28, 28, 0.15);
  transition: var(--trans);
}
.bi:hover {
  border-color: rgba(185, 28, 28, 0.5);
  background: rgba(185, 28, 28, 0.06);
  transform: translateY(-4px);
}
.bi-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.bi h4 {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.5rem;
}
.bi p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   BOOKING
══════════════════════════════════════ */
.book {
  background: var(--off);
}
.book-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
}
.book-form {
  background: var(--white);
  border-top: 5px solid var(--red);
  padding: clamp(2rem, 4vw, 3rem);
}
.bfh2 {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.bfsub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 2rem;
}
.step-track {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
}
.sb {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
}
.sb.done {
  background: var(--red);
}
.sb.now {
  background: rgba(185, 28, 28, 0.4);
}
.step-lbls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.step-lbls span {
  font-family: var(--ff-display);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.step-lbls span.on {
  color: var(--red);
}
.fstep {
  display: none;
}
.fstep.active {
  display: block;
}
.svc-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.so {
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
}
.so:hover,
.so.sel {
  border-color: var(--red);
  background: rgba(185, 28, 28, 0.04);
}
.so-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.so h4 {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.so p {
  font-size: 12px;
  color: var(--gray);
}
.fg {
  margin-bottom: 1.5rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
label {
  display: block;
  font-family: var(--ff-display);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--navy);
  background: #fafaf8;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.fbtns {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.fbtn {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.fbtn.p {
  background: var(--red);
  color: var(--white);
}
.fbtn.p:hover {
  background: var(--red-bright);
}
.fbtn.b {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--navy);
}
.fbtn.b:hover {
  border-color: var(--navy);
}
.sbox {
  text-align: center;
  padding: 3rem 1.5rem;
}
.sbox-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.sbox h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.sbox p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   AUTH PAGE
══════════════════════════════════════ */
.auth-pg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 2rem;
  overflow: hidden;
}
.auth-pg img.authbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.auth-pg video.authbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.auth-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(6, 19, 19, 0.911);
}
/* Red diagonal stripe */
.auth-ov::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(185, 28, 28, 0.35) 0%,
    transparent 60%
  );
}
.auth-box {
  position: relative;
  z-index: 3;
  background: var(--white);
  width: 100%;
  max-width: 460px;
  border-top: 5px solid var(--red);
}
.auth-inner {
  padding: clamp(2rem, 4vw, 3rem);
}
.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.at {
  flex: 1;
  padding: 13px;
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.at.on {
  color: var(--navy);
  border-bottom-color: var(--red);
}
.af {
  display: none;
}
.af.active {
  display: block;
}

/* ══════════════════════════════════════
   DASHBOARD
══════════════════════════════════════ */
.dash-pg {
  background: var(--off);
  padding-top: 70px;
}
.dash-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem clamp(1rem, 5vw, 4rem);
}
.dash-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dash-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.dash-hero-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(7, 17, 31, 0.9);
}
.dash-hero-c {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
}
.dash-welcome {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
}
.dash-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 4px;
}
.dash-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 5vw, 4rem);
}
.dash-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}
.dsidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dnav {
  padding: 12px 16px;
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--white);
  border: none;
  text-align: left;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: var(--trans);
}
.dnav:hover,
.dnav.on {
  color: var(--navy);
  border-left-color: var(--red);
}
.dmain {
  background: var(--white);
  padding: 2rem;
}
.dsec {
  display: none;
}
.dsec.active {
  display: block;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.stc {
  background: var(--off);
  padding: 1.5rem;
  border-left: 4px solid var(--red);
}
.stc .sn {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
}
.stc .sl {
  font-family: var(--ff-display);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 3px;
}
.bkrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 0.7rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.bkrow h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.bkrow p {
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}
.bdg {
  font-family: var(--ff-display);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  flex-shrink: 0;
}
.bdg.act {
  background: rgba(34, 139, 34, 0.1);
  color: #1a6b1a;
}
.bdg.dn {
  background: rgba(0, 0, 0, 0.06);
  color: var(--gray);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.con-body {
  background: var(--white);
}
.con-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
}
.con-left p.intro {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.cdet {
  margin-bottom: 1.75rem;
}
.cdet h4 {
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.cdet p {
  font-size: 15px;
  color: var(--navy);
}
.wa-block {
  background: rgba(37, 211, 102, 0.07);
  border-left: 3px solid #25d366;
  padding: 1.2rem;
  margin-top: 1.5rem;
}
.wa-block p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.wa-block span {
  font-size: 13px;
  color: var(--gray);
  display: block;
  margin-top: 4px;
}
.wa-block a {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a8c44;
  text-decoration: none;
}
.cform-box {
  background: var(--off);
  padding: 2.5rem;
  border-top: 5px solid var(--red);
}
.cform-box h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.cform-box .csub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 1.75rem;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem) 2rem;
  border-top: 1px solid rgba(185, 28, 28, 0.2);
}
.ftgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.ftbrand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}
.ftcol h4 {
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.2rem;
}
.ftcol a,
.ftcol span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
}
.ftcol a:hover {
  color: var(--white);
}
.ftbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ftbottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--trans);
  animation: wapulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
}
@keyframes wapulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.65),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-grid .svc-card:last-child {
    grid-column: span 2;
  }
  .why-grid {
    gap: 3rem;
  }
  .ftgrid {
    grid-template-columns: 1fr 1fr;
  }
  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 600px;
  }
  .hero-content {
    text-align: center;
    padding: 10px 10px;
  }
  .hero-content {
    /* padding-top: 250px; */
  }
  .ben-grid {
    display: flex;
    flex-direction: column;
  }
  .nav-links,
  .nav-actions {
    display: none;
    color: blue;
    background-color: blue;
  }
  .ham {
    display: flex;
  }

  .why-grid,
  .ab-grid,
  .con-grid,
  .dash-layout,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .sf,
  .sf.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .sf-media {
    min-height: 260px;
  }
  .vals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ben-grid {
    grid-template-columns: 1fr 1fr;
  }
  .clean-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    width: 100%;
  }
  .hstat {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(185, 28, 28, 0.2);
  }
  .ab-badge {
    right: 0;
    bottom: 0;
  }
  .why-panel::before {
    display: none;
  }
  .ph::before,
  .ph::after {
    display: none;
  }
  
}
@media (max-width: 640px) {
  .hero {
    min-height: 600px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid .svc-card:last-child {
    grid-column: span 1;
  }
  
  .cta-btns button {
    width: 100%;
    justify-content: center;
  }
  .hero-btns {
    padding: 0 20px;
  }

  .hero-btns button {
    width: 100%;
    /* margin-left: -75px; */
    justify-content: center;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
  .vals-grid {
    grid-template-columns: 1fr;
  }
  .ben-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ftgrid {
    grid-template-columns: 1fr;
  }
  .frow,
  .svc-opts,
  .cta-btns {
    grid-template-columns: 1fr;
  }
  .hstat {
    flex: 0 0 100%;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .team-row {
    grid-template-columns: 1fr 1fr;
  }
  .fbtns {
    flex-direction: column;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
  .team-row {
    grid-template-columns: 1fr;
  }
  .svc-opts {
    grid-template-columns: 1fr;
  }
}
