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

:root {
  /* ── FIGMA BRAND PALETTE ── */
  --brand-gold: #C9A227;
  /* Brand_gold */
  --brand: #C9A227;
  /* Brand accent */
  --nav-link: #475569;
  --nav-link-hover: #CA8A04;
  --dp-name: #0F172A;
  --hero-bg: #FEFCE8;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --stroke: #E2E8F0;
  --card-border: #E2E8F0;
  --white: #ffffff;
  --page-bg: #FEFCE8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Public Sans', sans-serif;
  background: var(--page-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 84px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--dp-name);
  letter-spacing: -1px;
  text-decoration: none;
}

.nav-logo svg,
.nav-logo img {
  width: 48px;
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-link);
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--brand-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.nav-links a.active {
  color: var(--brand-gold);
}

.nav-links a:hover {
  color: var(--nav-link-hover);
}

.btn-gold {
  background: var(--brand-gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: #A67C1F;
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--card-border);
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--brand-gold);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  padding: 24px 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
}

/* ── HERO ── */
#hero {
  background: #F5F5F5;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 60px 0;
  position: relative;
  overflow: hidden;
  gap: 40px;
  margin: 0;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  margin-left: 15px;
  z-index: 2;
  padding-bottom: 80px;
}

.badge {
  display: inline-block;
  background: #FEFCE8;
  border: 1px solid #FEF08A;
  color: #C9A227;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 8px;
  white-space: nowrap;
}

.hero-title .gold {
  color: var(--brand-gold);
  font-weight: 900;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: baseline;
}

.hero-cities {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--brand-gold);
  margin: 20px 0 16px;
  letter-spacing: 0;
}

.hero-desc {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-family: 'Public Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 20px;
}

.trust-text strong {
  font-weight: 700;
}

.trust-text span {
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-right: 05px;
  margin-bottom: -40px;
}

.hero-guards-img {
  width: 100%;
  max-width: 680px;
  object-fit: contain;
  display: block;
  /* Blend white areas with cream background naturally */
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.08));
  border-radius: 0;
}
/*<--── HIRING PILL ── -->*/
.hiring-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0F172A;
  color: #fff;
  border-radius: 100px;
  padding: 9px 16px 9px 12px;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  margin-bottom: 28px;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hiring-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,23,42,0.2);
}
.hiring-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: hirepulse 1.8s ease-in-out infinite;
}
@keyframes hirepulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.45; transform:scale(0.7); }
}
.hiring-label { font-weight: 900; letter-spacing: 0.5px; }
.hiring-sep {
  width: 1px; height: 13px;
  background: #334155; flex-shrink: 0;
}
.hiring-roles {
  font-size: 11px; font-weight: 500;
  color: #C9A227; letter-spacing: 0.2px;
}
.hiring-arrow { color: #C9A227; font-size: 14px; }
@media (max-width: 600px) {
  .hiring-roles, .hiring-sep { display: none; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #E9EDF0;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8922A;
}

.trust-label {
  font-size: 13px;
  font-weight: 900;
  color: #64748B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── SECTION COMMONS ── */
section {
  padding: 80px 60px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-eyebrow {
  text-align: center;
  font-family: 'Public Sans', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #0F172A;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.15;
  width: 100%;
}

/* ── SERVICES CARDS ── */
#services {
  background: #F5F5F5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

#testimonials {
  background: #E9EDF0;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px) scale(1.01);
  border-color: #D4B96A;
  background: black;
  color: white;
}

.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-features li {
  color: white;
}

.service-card:hover .service-icon {
  color: white;
}
.service-card:hover .btn-service {
  background: var(--brand-gold);
  color: var(--white);
}
.service-card:hover .service-price {
  color:var(--brand-gold);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.service-name {
  font-family: 'Public Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;          /* ← add this */
  min-height: 0;
}

.service-price {
  font-family: 'Public Sans', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 10px;
}

.check-icon {
  color: var(--brand-gold);
  flex-shrink: 0;
}

.btn-service {
  width: 100%;
  padding: 13px;
  font-family: 'Public Sans', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  border: 1.5px solid var(--card-border);
  border-radius: 8px;
  background: var(--card-border);
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
}


/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1.5px solid transparent;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--card-border);
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--brand-gold);
  font-size: 18px;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  flex: 1;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0; /* prevents overflow bugs */
}

.testi-person img {
  width: 46px;
  height: 46px;
  min-width: 46px;
  flex-shrink: 0; /* 🔥 MOST IMPORTANT */
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E5E7EB;
}


.testi-name {
  font-family: 'Public Sans', sans-serif;
  color: var(--text-dark);
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #D1FAE5;
  color: #065F46;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}

/* ── FAQ ── */
#faq {
  background: #F1F5F9;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.faq-item.open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.faq-question {
  font-family: 'Public Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 17px;
}

.faq-icon {
  font-size: 22px;
  color: var(--brand-gold);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: -12px;
}

.faq-answer.open {
  display: block;
}

/* ── FOOTER ── */
footer {
  background: #0F0D12;
  color: var(--white);
  padding: 64px 60px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2E2E2E;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #9CA3AF;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #3A3A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9CA3AF;
  transition: border-color 0.2s, color 0.2s;
  background: none;
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  color: #C9A227;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
}

.footer-copy {
  font-size: 13px;
  color: #6B7280;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ── PLACEHOLDER IMAGE BLOCKS ── */
.hero-img-placeholder {
  width: 100%;
  max-width: 640px;
  height: 520px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-radius: 24px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(184, 146, 42, 0.15) 0%, transparent 70%);
}

.guard-silhouettes {
  display: flex;
  align-items: flex-end;
  gap: 0;
  height: 420px;
}

.guard {
  width: 120px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.guard svg {
  width: 100%;
  height: auto;
}

/* Avatar placeholder */
.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  background: linear-gradient(135deg, #555, #888);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ccc;
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar-placeholder:first-child {
  margin-left: 0;
}

.testi-avatar-placeholder {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  flex-shrink: 0;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    white-space: normal;     /* allow wrapping on mobile */
    font-size: clamp(28px, 8vw, 42px);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links,
  nav>.btn-gold {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    flex-direction: column;
    padding: 48px 24px 0;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 40px;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
  }

  .hero-img-placeholder {
    border-radius: 16px;
    height: 320px;
  }

  section {
    padding: 60px 24px;
    margin: 0;
  }

  .trust-bar {
    padding: 20px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .trust-bar {
    gap: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 66px;
  background: #0F172A;
  color: #ffffff;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0F172A;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}