/* ======================================================
   HB SECURITY SERVICES — CUSTOM STYLES (Bootstrap 5.3)
   ====================================================== */

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

:root {
  --hb-gold: #020516;
  --hb-gold-bright: #e6c478;
  --hb-gold-deep: #a17f4a;
  --hb-dark: #020516;
  --hb-text: #1a1a1a;
  --hb-text-mute: #555555;
  --hb-line: rgba(212, 165, 116, 0.25);
}

/* ============== GLOBAL ============== */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--hb-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; }

/* ============== TOP CONTACT BAR ============== */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--hb-line);
  padding: 10px 0;
  font-size: 13px;
  color: var(--hb-dark);
}

.top-bar a {
  color: var(--hb-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--hb-gold);
}

.top-bar span {
  margin-right: 22px;
}

/* ============== HEADER / NAVBAR ============== */
.navbar-hb {
  background: var(--hb-dark) !important;
  padding: 18px 0;
  border-bottom: 1px solid var(--hb-line);
}

.navbar-hb .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 2.5px;
  font-size: 20px;
  text-transform: uppercase;
  padding: 0;
}

/* SVG Logo Image */
.logo-img {
  height: 70px;
  width: auto;
  display: block;
  max-width: 100%;
}

.logo-img-footer {
  height: 80px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .logo-img { height: 50px; }
  .logo-img-footer { height: 60px; }
}

.logo-mark {
  width: 50px;
  height: 50px;
  background: var(--hb-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-dark);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.logo-text-block {
  line-height: 1.1;
}

.logo-text-block small {
  display: block;
  color: var(--hb-gold);
  font-size: 10px;
  letter-spacing: 3px;
  margin-top: 4px;
  font-weight: 500;
}

.navbar-hb .navbar-nav .nav-link {
  color: #d0d0d0 !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-hb .navbar-nav .nav-link:hover,
.navbar-hb .navbar-nav .nav-link.active {
  color:white !important;
}

.navbar-hb .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--hb-gold);
}

.navbar-hb .navbar-toggler {
  border-color: var(--hb-gold);
  color: var(--hb-gold);
}

.navbar-hb .navbar-toggler-icon {
  filter: invert(1);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.5) 100%),
    url('../images/hero.png') center/cover no-repeat;
  overflow: hidden;
  padding: 60px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 80px,
    rgba(212, 165, 116, 0.04) 80px,
    rgba(212, 165, 116, 0.04) 81px
  );
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-eyebrow::before {
  content: "";
  width: 50px;
  height: 1px;
  background: white;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 30px;
}

.hero h1 .accent { color: white }

.hero p {
  font-size: 18px;
  color: #ffffff;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-quote {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 16px;
  color: var(--hb-gold);
  max-width: 320px;
  text-align: right;
  border-right: 2px solid var(--hb-gold);
  padding-right: 18px;
  z-index: 2;
}

/* ============== BUTTONS (Override Bootstrap) ============== */
.btn-hb-primary {
  background: #020516;
  color: white;
  border: 1px solid #020516;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-hb-primary:hover {
  background: #020516;
  color: white;
  transform: translateY(-2px);
}

.btn-hb-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #020516;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-hb-outline:hover {
  background: #020516;
  color: white;
}

/* ============== SECTION COMMON ============== */
section { padding: 90px 0; }

.section-eyebrow {
  display: inline-block;
  color: var(--hb-gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--hb-gold);
  vertical-align: middle;
  margin: 0 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--hb-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title .gold { color: var(--hb-gold); }

/* ============== ABOUT ============== */
.about-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 40px;
  bottom: 40px;
  border: 2px solid var(--hb-gold);
  z-index: -1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img { transform: scale(1.04); }

.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--hb-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1;
}

.about-content h2 .gold { color: var(--hb-gold); }

.about-content p {
  margin-bottom: 22px;
  color: var(--hb-text);
  font-size: 16px;
}

/* ============== SERVICE CARDS ============== */
.service-card {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 38px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,165,116,0.1);
  font-size: 28px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: black;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-card p {
  color: black;
  font-size: 16px;
  margin-bottom: 0;
}

/* ============== WHY CHOOSE US ============== */
.why-section {
  background: #f8f8f8;
  position: relative;
}

.why-card {
  padding: 30px 24px;
  background: #ffffff;
  border: 1px solid #ddd;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.why-card:hover {
  border-color: var(--hb-gold);
  transform: translateY(-4px);
}

.why-check {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hb-gold);
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
}

.why-card p {
  color: var(--hb-text);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* ============== INDUSTRIES ============== */
.industry-item {
  padding: 36px 28px;
  border: 1px solid #ddd;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.industry-item:hover {
  background: #f5f5f5;
  border-color: var(--hb-gold);
}

.industry-item .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--hb-gold);
  font-size: 22px;
  min-width: 38px;
}

.industry-item .label {
  color: var(--hb-dark);
  font-size: 16px;
  font-weight: 500;
}

/* ============== COVERAGE ============== */
.coverage-card {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 28px 18px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.coverage-card:hover {
  background: #f9f9f9;
  border-color: var(--hb-gold);
  transform: translateY(-3px);
}

.coverage-card .pin {
  color: var(--hb-gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.coverage-card .city {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--hb-dark);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============== CTA BANNER ============== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.7) 100%),
    url('../images/Gemini_Generated_Image_c9bivwc9bivwc9bi.png') center/cover no-repeat;
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--hb-line);
  border-bottom: 1px solid var(--hb-line);
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.1;
}

.cta-banner p {
  color: #e8e3d8;
  font-size: 17px;
  max-width: 660px;
  margin: 0 auto 16px;
}

/* ============== PAGE BANNER ============== */
.page-banner {
  position: relative;
  padding: 110px 0 80px;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%),
    url('../images/section-bg.jpg') center/cover no-repeat;
  text-align: center;
  border-bottom: 1px solid var(--hb-line);
}

.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}

.page-banner h1 .gold { color: white }

.breadcrumb-hb {
  color: white;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.breadcrumb-hb a {
  color: white;
  text-decoration: none;
}

/* ============== CONTACT ============== */
.contact-info-card {
  background: #ffffff;
  padding: 44px 36px;
  border: 1px solid #ddd;
  height: 100%;
}

.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--hb-dark);
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.contact-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,165,116,0.08);
  border: 1px solid #ddd;
  color: var(--hb-gold);
  font-size: 18px;
}

.contact-block strong {
  display: block;
  color: var(--hb-gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-block span,
.contact-block a {
  color: var(--hb-dark);
  font-size: 15px;
  text-decoration: none;
  line-height: 1.5;
}

.contact-form-card {
  background: #ffffff;
  padding: 44px 40px;
  border: 1px solid #ddd;
}

.contact-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--hb-dark);
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.form-label-hb {
  color: var(--hb-gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control-hb {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.form-control-hb:focus {
  border-color: var(--hb-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.15);
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--hb-dark);
  border-top: 1px solid var(--hb-line);
  padding: 60px 0 0;
  color: #b0b0b0;
}

.site-footer h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--hb-gold);
}

.site-footer p,
.site-footer a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: white;

}

.footer-brand .navbar-brand {
  color: #ffffff !important;
}

.footer-bottom {
  border-top: 1px solid white;
  padding: 26px 0;
  text-align: center;
  color: white;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 40px;
}

.footer-bottom .gold { color:white }

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 40px 0 60px; min-height: 70vh; }
  .hero-quote { display: none; }
  .top-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .top-bar span { margin-right: 10px; }
}

@media (max-width: 992px) {
  .hero-quote { display: none; }
}
