/* ========================
   NightHawk Elite — site.css
   Shared styles for all main pages (NOT app.html)
   ======================== */

/* --- Variables --- */
:root {
  --nh-red: #d90000;
  --nh-red-bright: #ff2020;
  --nh-dark: #0d0d0d;
  --nh-dark-2: #141414;
  --nh-dark-3: #1c1c1c;
  --nh-surface: rgba(255,255,255,0.04);
  --nh-text-light: #f0f0f0;
  --nh-text-muted: rgba(240,240,240,0.6);
  --nh-border-dark: rgba(255,255,255,0.08);
  --nh-shadow: 0 4px 28px rgba(0,0,0,0.45);
  --nh-radius: 12px;
}

/* ========================
   TOP BAR
   ======================== */
#top-bar {
  background: #0d0d0d !important;
  border-bottom: 1px solid rgba(255,0,0,0.12) !important;
  height: 30px !important;
}
#top-bar .container,
#top-bar .row {
  height: 30px !important;
}
#top-bar span {
  color: rgba(255,255,255,0.7) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#top-bar i {
  color: var(--nh-red) !important;
  margin-right: 5px;
}
@media (max-width: 767px) {
  #top-bar .col-md-4:nth-child(2),
  #top-bar .col-md-4:nth-child(3) {
    display: none !important;
  }
  #top-bar .col-md-4:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ========================
   NAVBAR
   ======================== */
nav.navbar.fixed-top {
  background: linear-gradient(105deg, #080808 38%, #6b0000 100%) !important;
  border-bottom: 1px solid rgba(255,0,0,0.18) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.6) !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  transition: box-shadow 0.3s;
}
nav.navbar .nav-link {
  position: relative;
  color: rgba(255,255,255,0.88) !important;
  font-size: 13.5px !important;
  letter-spacing: 0.07em;
  padding: 8px 14px !important;
  transition: color 0.2s;
}
nav.navbar .nav-link span {
  color: inherit !important;
}
nav.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--nh-red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
nav.navbar .nav-link:hover {
  color: #fff !important;
}
nav.navbar .nav-link:hover::after,
nav.navbar .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-toggler {
  border-color: rgba(255,255,255,0.25) !important;
  padding: 6px 10px !important;
}
.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
#contact-button.btn,
a.btn[href*="contact"] {
  background: var(--nh-red) !important;
  border-color: var(--nh-red) !important;
  color: #fff !important;
  border-radius: 7px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 8px 22px !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
}
#contact-button.btn:hover,
a.btn[href*="contact"]:hover {
  background: var(--nh-red-bright) !important;
  box-shadow: 0 0 18px rgba(217,0,0,0.5) !important;
  transform: translateY(-1px);
}

/* ========================
   HERO SECTION (index.html)
   ======================== */
.hero-wrap {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 560px;
  overflow: hidden !important;
  background: #0d0d0d !important;
}

/* Video + poster container */
.video-background {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
}
.video-background iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 177.78vh !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 56.25vw !important;
  pointer-events: none !important;
  border: none !important;
  z-index: 1;
}

/* Poster image — shows while video loads */
#hero-poster {
  position: absolute;
  inset: 0;
  background: url('../img/apartment-complex-background-2.webp') center/cover no-repeat;
  z-index: 2;
  transition: opacity 1.4s ease;
}
#hero-poster.faded {
  opacity: 0;
  pointer-events: none;
}

/* Hero gradient overlay */
.hero-wrap > .overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.72) 100%
  ) !important;
}

/* Hero content */
.hero-wrap .container {
  position: relative !important;
  z-index: 4 !important;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-wrap .slider-text {
  padding-top: 80px;
}
.hero-wrap .slider-text .text h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7) !important;
  background: none !important;
  margin-bottom: 32px !important;
  letter-spacing: -0.01em;
}
.hero-wrap .slider-text .text h1 span[style*="color: red"],
.hero-wrap .slider-text .text h1 span[style*="color:red"] {
  color: var(--nh-red-bright) !important;
  text-shadow: 0 0 30px rgba(255,0,0,0.4);
}
.hero-wrap .text .btn.btn-primary {
  background: var(--nh-red) !important;
  border-color: var(--nh-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin: 4px;
}
.hero-wrap .text .btn.btn-primary:hover {
  background: var(--nh-red-bright) !important;
  box-shadow: 0 0 28px rgba(217,0,0,0.6);
  transform: translateY(-2px);
}
.hero-wrap .text .btn.btn-darken {
  background: rgba(255,255,255,0.1) !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin: 4px;
}
.hero-wrap .text .btn.btn-darken:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.65) !important;
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .hero-wrap .text .btn {
    width: calc(100% - 8px) !important;
    margin-bottom: 8px !important;
  }
}

/* ========================
   BLUE CTA BAR
   ======================== */
#blue-bar-trash-guidelines {
  background: linear-gradient(135deg, #080e1c 0%, #0e1d38 60%, #0a0a0a 100%) !important;
  border-top: 1px solid rgba(217,0,0,0.25) !important;
  border-bottom: 1px solid rgba(217,0,0,0.25) !important;
  padding: 44px 0 !important;
}
#blue-bar-trash-guidelines > .overlay {
  display: none !important;
}
#blue-bar-trash-guidelines .subheading {
  display: inline-block;
  background: var(--nh-red) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px !important;
  border-radius: 4px;
  margin-bottom: 10px;
  text-align: left !important;
}
#blue-bar-trash-guidelines h1 {
  font-size: clamp(1.4rem, 3vw, 2.1rem) !important;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 0;
  line-height: 1.2;
}
#blue-bar-trash-guidelines .btn.btn-primary {
  background: var(--nh-red) !important;
  border-color: var(--nh-red) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 14px 36px !important;
  font-size: 15px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
#blue-bar-trash-guidelines .btn.btn-primary:hover {
  background: var(--nh-red-bright) !important;
  box-shadow: 0 0 24px rgba(217,0,0,0.5);
  transform: translateY(-1px);
}

/* ========================
   ABOUT SECTION
   ======================== */
.ftco-about-section {
  background: #fff;
  padding-top: 80px !important;
  padding-bottom: 64px !important;
}
.ftco-about-section .subheading {
  color: var(--nh-red) !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.ftco-about-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d0d0d;
}
.ftco-about-section h3 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
.ftco-about-section .services-wrap {
  margin-bottom: 12px;
}
.ftco-about-section .services {
  background: #f7f7f7 !important;
  border-radius: 10px;
  padding: 16px 18px !important;
  gap: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  width: 100%;
  transition: box-shadow 0.22s, transform 0.22s;
}
.ftco-about-section .services:hover {
  box-shadow: 0 4px 22px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.ftco-about-section .services .icon {
  font-size: 1.5rem;
  color: var(--nh-red);
  flex-shrink: 0;
  min-width: 32px;
  margin-top: 2px;
}
.ftco-about-section .services h2.main-page-text-how-we-help {
  font-size: 0.95rem !important;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}
.ftco-about-section .services p.main-page-text-how-we-help {
  font-size: 0.88rem;
  color: #555 !important;
  margin-bottom: 0;
}
.ftco-about-section .counter-wrap .countup {
  color: var(--nh-red) !important;
}

/* ========================
   CONTACT + VIDEO SECTION
   ======================== */
.contact-video-section {
  min-height: 480px;
  height: auto !important;
}
.contact-video-section .col-md-6:first-child {
  background: linear-gradient(165deg, rgba(180,0,0,0.92) 0%, #000 100%),
              url('assets/img/vest-logo.webp') center/cover no-repeat !important;
  padding: 60px 48px !important;
  min-height: 400px;
}
.contact-video-section .col-md-6:first-child h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.3;
  margin-bottom: 20px;
}
.contact-video-section .col-md-6:first-child .btn.btn-primary {
  background: #fff !important;
  color: var(--nh-red) !important;
  border-color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-video-section .col-md-6:first-child .btn.btn-primary:hover {
  background: rgba(255,255,255,0.88) !important;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* ========================
   SERVICES SECTION
   ======================== */
.ftco-services-section {
  background: #f7f7f7;
  padding-top: 72px !important;
  padding-bottom: 0 !important;
}
.ftco-services-section .subheading {
  color: var(--nh-red) !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.ftco-services-section .heading-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0d0d0d;
}
.ftco-services-section .services {
  padding: 30px 26px !important;
  gap: 18px;
  transition: filter 0.2s;
}
.ftco-services-section .services:hover {
  filter: brightness(1.04);
}
.ftco-services-section .services h2 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
  color: #111;
}
.ftco-services-section .services.active-2 h2,
.ftco-services-section .services[style*="#d60000"] h2 {
  color: #fff !important;
}
.ftco-services-section .services.active-2 p,
.ftco-services-section .services[style*="#d60000"] p {
  color: rgba(255,255,255,0.88) !important;
}
.ftco-services-section .btn-custom {
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 7px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.ftco-services-section .btn-custom:hover {
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
}
.ftco-services-section .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ========================
   STATS COUNTER SECTION
   ======================== */
.ftco-section-counter {
  position: relative;
  padding: 64px 0 !important;
  overflow: hidden;
}
.ftco-section-counter > .overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, #080808 0%, #1a0000 50%, #080808 100%) !important;
  z-index: 0;
}
.ftco-section-counter > .container {
  position: relative;
  z-index: 1;
}
.section-counter {
  padding: 0 !important;
}
.counter-wrap-2 {
  padding: 28px 20px !important;
  gap: 16px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.col-sm-6.col-md-6.col-lg-3:last-child .counter-wrap-2,
.col-sm-6.col-md-6.col-lg-3:nth-child(4) .counter-wrap-2 {
  border-right: none;
}
.counter-wrap-2 .icon {
  font-size: 2rem;
  color: var(--nh-red);
  flex-shrink: 0;
}
.counter-wrap-2 .text .number {
  display: block;
}
.counter-wrap-2 .text .number span {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #fff !important;
}
.counter-wrap-2 .caption {
  color: rgba(255,255,255,0.5) !important;
  font-size: 12.5px;
  margin-top: 4px;
  display: block;
}
@media (max-width: 767px) {
  .counter-wrap-2 {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
}

/* ========================
   WHY PROPERTY MANAGERS CHOOSE US
   ======================== */
.ftco-section .staff {
  border-radius: var(--nh-radius);
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.09);
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
}
.ftco-section .staff:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.17);
  transform: translateY(-5px);
}
.ftco-section .staff .img {
  height: 200px;
  transition: filter 0.25s;
}
.ftco-section .staff:hover .img {
  filter: brightness(1.1);
}
.ftco-section .staff .text {
  background: #fff;
  padding: 20px 18px;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: none;
}
.ftco-section .staff .text h3 {
  font-size: 1rem !important;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.ftco-section .staff .text span {
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
}

/* ========================
   GALLERY SECTION
   ======================== */
.ftco-gallery {
  padding-top: 64px !important;
  padding-bottom: 0 !important;
}
.ftco-gallery .heading-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0d0d0d;
}
.gallery-wrap {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: filter 0.25s;
}
.gallery-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.gallery-wrap .desc {
  position: relative;
  z-index: 1;
  padding-bottom: 28px !important;
}
.gallery-wrap .desc h2 {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.gallery-wrap:hover {
  filter: brightness(1.08);
}

/* ========================
   APPOINTMENT / CONTACT SECTION
   ======================== */
.ftco-appointment {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
.ftco-appointment > .overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.82) !important;
  z-index: 0;
}
.ftco-appointment > .container-xl {
  position: relative;
  z-index: 1;
}
.ftco-appointment .heading-section h2 {
  color: #fff !important;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.ftco-appointment .heading-section a[href^="tel"] {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem) !important;
  color: var(--nh-red) !important;
  background: rgba(10,10,10,0.6) !important;
  border: 2px solid rgba(217,0,0,0.3) !important;
  border-radius: 10px !important;
  padding: 12px 22px !important;
  display: inline-flex !important;
  align-items: center;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ftco-appointment .heading-section a[href^="tel"]:hover {
  border-color: var(--nh-red) !important;
  box-shadow: 0 0 22px rgba(217,0,0,0.3);
}
.ftco-appointment .heading-section p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 14.5px;
  line-height: 1.6;
}
.ftco-appointment .heading-section strong {
  color: rgba(255,255,255,0.92) !important;
}
.ftco-appointment .heading-section a:not([href^="tel"]) {
  color: #4da8ff;
}
/* Accordion in contact section */
.ftco-appointment .accordion-item {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 8px;
}
.ftco-appointment .accordion-button {
  background: #2a2a2a !important;
  color: rgba(255,255,255,0.9) !important;
  border-radius: 8px !important;
  font-size: 14px;
}
.ftco-appointment .accordion-button:not(.collapsed) {
  background: #333 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.ftco-appointment .accordion-button::after {
  filter: invert(1);
}
.ftco-appointment .accordion-body {
  background: #1a1a1a !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px;
  line-height: 1.6;
}
/* Contact card */
.ftco-appointment .card {
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55) !important;
  overflow: hidden;
}
.ftco-appointment .card .card-body {
  padding: 36px 32px !important;
}
.ftco-appointment .card p[style*="text-align: center"] {
  font-size: 13px;
  font-weight: 700;
  color: var(--nh-red) !important;
}
.ftco-appointment .card h2 {
  font-weight: 800 !important;
  font-size: 1.4rem !important;
  color: #111;
}
.ftco-appointment .card .form-label {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}
.ftco-appointment .card .form-control,
.ftco-appointment .card .form-select {
  border-radius: 8px !important;
  border-color: rgba(0,0,0,0.14) !important;
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ftco-appointment .card .form-control:focus,
.ftco-appointment .card .form-select:focus {
  border-color: var(--nh-red) !important;
  box-shadow: 0 0 0 3px rgba(217,0,0,0.12) !important;
}
.ftco-appointment .card .btn-primary {
  background: var(--nh-red) !important;
  border-color: var(--nh-red) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 15px;
  padding: 12px !important;
  transition: background 0.2s, box-shadow 0.2s;
}
.ftco-appointment .card .btn-primary:hover {
  background: var(--nh-red-bright) !important;
  box-shadow: 0 0 22px rgba(217,0,0,0.45);
}
@media (max-width: 991px) {
  .ftco-appointment .card .card-body {
    padding: 24px 20px !important;
  }
}

/* ========================
   FOOTER
   ======================== */
.ftco-footer {
  background: #0c0c0c !important;
  padding-top: 64px !important;
  border-top: 2px solid rgba(217,0,0,0.22) !important;
}
.ftco-footer .ftco-footer-widget {
  padding-right: 12px;
}
.ftco-footer .ftco-heading-2 {
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  margin-bottom: 18px !important;
  border-bottom: 2px solid var(--nh-red);
  display: inline-block;
}
.ftco-footer-widget p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 13.5px;
  line-height: 1.65;
}
.ftco-footer .block-21 {
  margin-bottom: 16px !important;
}
.ftco-footer .blog-img {
  width: 60px !important;
  min-width: 60px;
  height: 50px;
  border-radius: 6px;
  flex-shrink: 0;
}
.footer-links {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  transition: color 0.2s;
  display: inline-block;
}
.footer-links:hover {
  color: var(--nh-red) !important;
}
.ftco-footer .text {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
}
.ftco-footer .block-23 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ftco-footer .block-23 li {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.ftco-footer .block-23 li .icon {
  color: var(--nh-red) !important;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ftco-footer .block-23 li .text {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13.5px;
}
.bg-darken {
  background: #080808 !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bg-darken p {
  color: rgba(255,255,255,0.35) !important;
  font-size: 12.5px;
}
.bg-darken a {
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.bg-darken a:hover {
  color: var(--nh-red) !important;
}

/* ========================
   INNER PAGE HERO BANNERS
   ======================== */
.page-hero-banner {
  padding-top: 150px !important;
  padding-bottom: 80px !important;
  position: relative;
}
.page-hero-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  margin-bottom: 14px !important;
}
.page-hero-banner p {
  font-size: 1.1rem !important;
  color: rgba(255,255,255,0.88) !important;
  max-width: 540px;
  margin: 0 auto;
}

/* General section subheading */
.subheading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ========================
   INNER PAGE HERO BANNERS
   (style="background: linear-gradient..." divs with new dark gradient)
   ======================== */
div[style*="160deg, rgba(120,0,0"] {
  min-height: 300px;
  padding-top: 150px !important;
  padding-bottom: 60px !important;
}
div[style*="160deg, rgba(120,0,0"] h1 {
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6) !important;
  margin-bottom: 14px !important;
  line-height: 1.15;
}
div[style*="160deg, rgba(120,0,0"] p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1.05rem !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  div[style*="160deg, rgba(120,0,0"] {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }
  div[style*="160deg, rgba(120,0,0"] h1 {
    font-size: clamp(1.6rem, 7vw, 2.5rem) !important;
  }
}

/* ========================
   UTILITY / GLOBAL
   ======================== */
body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--nh-red);
  color: #fff;
}
a {
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ========================
   RESIDENTS PAGE — two-panel section
   ======================== */
.col-md-6[style*="trash.webp"],
.col-md-6[style*="nighthawk-mobile-app.webp"] {
  min-height: 300px !important;
  padding: 60px 48px !important;
  transition: filter 0.25s;
}
.col-md-6[style*="trash.webp"]:hover,
.col-md-6[style*="nighthawk-mobile-app.webp"]:hover {
  filter: brightness(1.06);
}
.col-md-6[style*="trash.webp"] h1,
.col-md-6[style*="nighthawk-mobile-app.webp"] h1 {
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px;
}
.col-md-6[style*="trash.webp"] p,
.col-md-6[style*="nighthawk-mobile-app.webp"] p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 15px;
  margin-bottom: 20px;
}
.col-md-6[style*="trash.webp"] .btn,
.col-md-6[style*="nighthawk-mobile-app.webp"] .btn {
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 11px 24px !important;
  margin-right: 8px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .col-md-6[style*="trash.webp"],
  .col-md-6[style*="nighthawk-mobile-app.webp"] {
    padding: 40px 28px !important;
  }
}

/* ========================
   GLOBAL BUTTON CLEANUP
   ======================== */
.btn-primary {
  background-color: var(--nh-red) !important;
  border-color: var(--nh-red) !important;
  font-weight: 600;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--nh-red-bright) !important;
  border-color: var(--nh-red-bright) !important;
}
/* Keep Bootstrap blue on "How to Install" style buttons */
.btn[style*="--bs-blue"] {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}

/* ========================
   MOBILE GLOBAL
   ======================== */
@media (max-width: 575px) {
  .ftco-section, .ftco-about-section, .ftco-services-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .ftco-gallery .gallery-wrap {
    min-height: 220px;
  }
  .ftco-appointment .card .card-body {
    padding: 20px !important;
  }
}
