﻿/* =========================================================
   NightHawk Elite — home.css
   Reimagined homepage (index.html only) — sections BELOW hero.
   Alternating light / dark bands. Brand: black + red.
   Pairs with site.css (uses its --nh-* variables).
   No inline styles — all visual rules live here.
   ========================================================= */

/* ----- Local tokens (fallbacks if site.css absent) ----- */
:root {
  --nh-red: #d90000;
  --nh-red-bright: #ff2020;
  --nh-ink: #0c0c0c;
  --nh-ink-2: #131313;
  --nh-light: #f5f6f8;
  --nh-light-2: #ffffff;
  --nh-line: rgba(0, 0, 0, 0.08);
  --nh-line-light: rgba(255, 255, 255, 0.09);
  --nh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.nh-section {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0;
  overflow: hidden;
}
.nh-section--dark {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(217, 0, 0, 0.12), transparent 60%),
              linear-gradient(180deg, var(--nh-ink) 0%, var(--nh-ink-2) 100%);
  color: #fff;
}
.nh-section--light {
  background: linear-gradient(180deg, var(--nh-light-2) 0%, var(--nh-light) 100%);
  color: #111;
}
/* hairline red accent at the top edge of every band */
.nh-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nh-red) 50%, transparent);
  opacity: 0.55;
}

/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */
.nh-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nh-red-bright);
  margin-bottom: 14px;
}
.nh-section--light .nh-eyebrow {
  color: var(--nh-red);
}
.nh-eyebrow--chip {
  background: var(--nh-red);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.nh-heading {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.nh-section--dark .nh-heading {
  color: #fff;
}
.nh-section--light .nh-heading {
  color: #0d0d0d;
}
.nh-heading .nh-accent {
  color: var(--nh-red-bright);
}
.nh-section--light .nh-heading .nh-accent {
  color: var(--nh-red);
}
.nh-lead {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  max-width: 60ch;
}
.nh-section--dark .nh-lead {
  color: rgba(255, 255, 255, 0.74);
}
.nh-section--light .nh-lead {
  color: #4a4a4a;
}
.nh-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.nh-center .nh-lead {
  margin-left: auto;
  margin-right: auto;
}
.nh-section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.nh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--nh-ease), box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.nh-btn i {
  font-size: 0.95em;
}
.nh-btn--primary {
  background: var(--nh-red);
  border-color: var(--nh-red);
  color: #fff;
}
.nh-btn--primary:hover {
  background: var(--nh-red-bright);
  box-shadow: 0 10px 30px rgba(217, 0, 0, 0.4);
  transform: translateY(-2px);
  color: #fff;
}
.nh-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nh-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: #fff;
}
.nh-btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--nh-red);
}
.nh-btn--light:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  color: var(--nh-red);
}
.nh-textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--nh-red);
  transition: gap 0.2s var(--nh-ease), color 0.2s;
}
.nh-textlink i {
  transition: transform 0.2s var(--nh-ease);
}
.nh-textlink:hover {
  color: var(--nh-red-bright);
}
.nh-textlink:hover i {
  transform: translateX(4px);
}
.nh-textlink--light {
  color: #fff;
}
.nh-textlink--light:hover {
  color: #fff;
}

/* =========================================================
   1) TAGLINE CTA BAND  (dark)
   ========================================================= */
.nh-cta-band {
  padding: clamp(48px, 6vw, 84px) 0;
}
.nh-cta-band .nh-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nh-cta-band .nh-cta-copy {
  flex: 1 1 420px;
}
.nh-cta-band .nh-heading {
  margin-bottom: 8px;
}
.nh-cta-band .nh-cta-sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
  margin: 0;
}
.nh-cta-band .nh-cta-action {
  flex: 0 0 auto;
}

/* =========================================================
   2) ABOUT  (light)
   ========================================================= */
.nh-about .nh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.nh-about-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.16);
  background: #e9eaec center / cover no-repeat;
}
.nh-about-media.is-team {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35)),
                    url("../img/our-team-2.webp");
}
.nh-about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(12, 12, 12, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
}
.nh-about-badge .nh-about-badge-icon {
  font-size: 1.9rem;
  color: var(--nh-red-bright);
  line-height: 1;
}
.nh-about-badge .nh-about-badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nh-red-bright);
  line-height: 1;
}
.nh-about-badge .nh-about-badge-text {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.nh-about-body .nh-heading {
  margin-bottom: 6px;
}
.nh-about-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.35;
  margin: 0 0 18px;
}
.nh-about-body .nh-lead {
  margin-bottom: 14px;
}
.nh-help-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nh-red);
  margin: 26px 0 16px;
}
.nh-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nh-help-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 14px;
  padding: 18px 18px;
  transition: transform 0.22s var(--nh-ease), box-shadow 0.22s, border-color 0.22s;
}
.nh-help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(217, 0, 0, 0.25);
}
.nh-help-card .nh-help-icon {
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--nh-red);
  line-height: 1;
  margin-top: 2px;
}
.nh-help-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #141414;
  margin: 0 0 4px;
}
.nh-help-card p {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.5;
  margin: 0;
}
.nh-help-card p .nh-accent {
  color: var(--nh-red);
  font-weight: 700;
}

/* =========================================================
   3) SERVICES  (dark) — modern card grid
   ========================================================= */
.nh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nh-service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--nh-line-light);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s var(--nh-ease), box-shadow 0.25s, border-color 0.25s;
}
.nh-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 0, 0, 0.5);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5);
}
.nh-service-media {
  position: relative;
  height: 190px;
  background: #1a1a1a center / cover no-repeat;
}
.nh-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(12, 12, 12, 0.85) 100%);
}
.nh-service-media.is-doorstep {
  background-image: url("../img/trash-valet-service-knoxville-tn-apartment-complexes.webp");
}
.nh-service-media.is-bulk {
  background-image: url("../img/bulk-item-removal.webp");
}
.nh-service-media.is-amenity {
  background-image: url("../img/apartment-complex-5.webp");
}
.nh-service-icon {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: -26px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: var(--nh-red);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(217, 0, 0, 0.45);
}
.nh-service-body {
  padding: 38px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.nh-service-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}
.nh-service-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
}
.nh-service-body .nh-textlink {
  margin-top: auto;
}

/* =========================================================
   4) STATS  (light)
   ========================================================= */
.nh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.nh-stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 16px;
  padding: 30px 18px;
  transition: transform 0.22s var(--nh-ease), box-shadow 0.22s;
}
.nh-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.nh-stat .nh-stat-icon {
  font-size: 2rem;
  color: var(--nh-red);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
}
.nh-stat .nh-stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d0d0d;
  margin: 0 0 4px;
}
.nh-stat .nh-stat-label {
  font-size: 0.86rem;
  color: #6a6a6a;
  margin: 0;
}

/* =========================================================
   5) WHY CHOOSE US  (dark) — image cards
   ========================================================= */
.nh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.nh-why-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background: #1a1a1a center / cover no-repeat;
  border: 1px solid var(--nh-line-light);
  transition: transform 0.25s var(--nh-ease), box-shadow 0.25s;
}
.nh-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(8, 8, 8, 0.92) 100%);
  transition: opacity 0.25s;
}
.nh-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
}
.nh-why-card.is-value    { background-image: url("../img/our-team-2.webp"); }
.nh-why-card.is-service  { background-image: url("../img/apartment-community.webp"); }
.nh-why-card.is-clean    { background-image: url("../img/cleaner-community-with-our-service.webp"); }
.nh-why-card.is-rep      { background-image: url("../img/better-apartment-complex-reputation.webp"); }
.nh-why-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
}
.nh-why-content .nh-why-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--nh-red-bright);
  margin-bottom: 8px;
}
.nh-why-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}
.nh-why-content p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   6) CUSTOMERS WE SERVE  (light) — segment tiles
   ========================================================= */
.nh-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nh-segment {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: #ddd center / cover no-repeat;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s var(--nh-ease);
}
.nh-segment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.78) 100%);
}
.nh-segment img.nh-segment-bg {
  display: none;
}
.nh-segment.is-apartments { background-image: url("../img/maryville-tn-apartment-complex.webp"); }
.nh-segment.is-campus     { background-image: url("../img/knoxville-tn-college-campus.webp"); }
.nh-segment.is-office     { background-image: url("../img/knoxville-tn-office-building.webp"); }
.nh-segment:hover {
  transform: translateY(-6px);
}
.nh-segment-label {
  position: relative;
  z-index: 1;
  padding: 26px 24px;
  width: 100%;
}
.nh-segment-label h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.nh-segment-label .nh-segment-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nh-red-bright);
  margin-bottom: 6px;
}

/* =========================================================
   7) VIDEO SHOWCASE + CTA  (dark)
   ========================================================= */
.nh-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.nh-showcase-copy .nh-heading {
  margin-bottom: 14px;
}
.nh-showcase-copy .nh-lead {
  margin-bottom: 26px;
}
.nh-showcase-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.nh-showcase-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nh-line-light);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.nh-showcase-contact:hover {
  border-color: rgba(217, 0, 0, 0.55);
  background: rgba(217, 0, 0, 0.1);
  color: #fff;
}
.nh-showcase-contact i {
  color: var(--nh-red-bright);
  font-size: 1.1rem;
}
.nh-showcase-contact span {
  font-weight: 700;
  font-size: 0.95rem;
}
.nh-showcase-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--nh-line-light);
}
.nh-video-frame {
  position: relative;
  padding-top: 56.25%;
}
.nh-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   SCROLL-REVEAL FALLBACK
   (works even if AOS is stripped; AOS still enhances)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .nh-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--nh-ease), transform 0.6s var(--nh-ease);
  }
  .nh-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .nh-about .nh-about-grid,
  .nh-showcase-grid {
    grid-template-columns: 1fr;
  }
  .nh-about-media {
    min-height: 320px;
    order: -1;
  }
  .nh-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nh-stats-grid,
  .nh-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .nh-cta-band .nh-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .nh-cta-band .nh-cta-action {
    width: 100%;
  }
  .nh-cta-band .nh-cta-action .nh-btn {
    width: 100%;
  }
  .nh-services-grid,
  .nh-segments-grid {
    grid-template-columns: 1fr;
  }
  .nh-help-grid {
    grid-template-columns: 1fr;
  }
  .nh-showcase-contacts {
    flex-direction: column;
  }
  .nh-showcase-contact {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .nh-stats-grid,
  .nh-why-grid {
    grid-template-columns: 1fr;
  }
  .nh-section .container,
  .nh-section .container-xl {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =========================================================
   PLATFORM / TECHNOLOGY  (light) — bento showcase
   Resident App + PM Dashboard + Report Builder
   ========================================================= */
.nh-platform-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}
.nh-platform-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #11151c;
  border: 1px solid var(--nh-line);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s var(--nh-ease), box-shadow 0.28s;
}
.nh-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}
/* image layer (zooms on hover) */
.nh-platform-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.55s var(--nh-ease);
}
.nh-platform-card:hover .nh-platform-media {
  transform: scale(1.06);
}
/* readability gradient */
.nh-platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(6, 6, 8, 0.9) 100%);
}
.nh-platform-overlay {
  position: relative;
  z-index: 2;
  padding: 26px 26px 24px;
  width: 100%;
}
.nh-platform-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--nh-red);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(217, 0, 0, 0.45);
  margin-bottom: 14px;
}
.nh-platform-overlay h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.nh-platform-overlay p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
  max-width: 46ch;
}
.nh-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nh-platform-tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* bento placement */
.nh-platform-card.is-dashboard {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.nh-platform-card.is-app {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.nh-platform-card.is-reports {
  grid-column: 1 / span 2;
  grid-row: 2;
}
/* images */
.nh-platform-card.is-dashboard .nh-platform-media {
  background-image: url("../img/statistics-dashboard-nighthawk.webp");
}
.nh-platform-card.is-reports .nh-platform-media {
  background-image: url("../img/report-building-tools-nighthawk.webp");
}
.nh-platform-card.is-app .nh-platform-media {
  background-image: url("../img/nighthawk-resident-app-phone.webp");
  background-position: center top;
}

@media (max-width: 991px) {
  .nh-platform-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }
  .nh-platform-card.is-dashboard {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .nh-platform-card.is-app {
    grid-column: 1;
    grid-row: 2;
  }
  .nh-platform-card.is-reports {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 575px) {
  .nh-platform-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .nh-platform-card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 240px;
  }
  .nh-platform-card.is-app {
    min-height: 340px;
  }
  .nh-platform-card.is-app .nh-platform-media {
    background-position: center 20%;
  }
}

/* =========================================================
   HERO — refined headline, eyebrow, sub & trust row
   (index.html only; overrides hero rules in site.css)
   ========================================================= */
.hero-wrap .slider-text {
  padding-top: 70px;
}
.hero-content {
  width: 100%;
}
.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.6));
  animation: nhHeroIn 0.7s var(--nh-ease) 0s both;
}
.hero-eyebrow {
  display: inline-block;
  font-size: clamp(10.5px, 1.4vw, 13px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: nhHeroIn 0.7s var(--nh-ease) 0.06s both;
}
.hero-wrap .slider-text .text h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.9rem) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 18px !important;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.55) !important;
  animation: nhHeroIn 0.7s var(--nh-ease) 0.12s both;
}
.hero-accent {
  background: linear-gradient(100deg, var(--nh-red-bright) 0%, #ff6a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--nh-red-bright);
  text-shadow: 0 0 30px rgba(255, 32, 32, 0.35);
}
.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 30px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  animation: nhHeroIn 0.7s var(--nh-ease) 0.18s both;
}
.hero-actions {
  margin-bottom: 30px !important;
  animation: nhHeroIn 0.7s var(--nh-ease) 0.24s both;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  padding: 0;
  margin: 0;
  animation: nhHeroIn 0.7s var(--nh-ease) 0.3s both;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
}
.hero-trust li i {
  color: var(--nh-red-bright);
  font-size: 0.95rem;
}
@keyframes nhHeroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* keep the rich hero from clipping on small / short screens */
@media (max-width: 767px) {
  .hero-wrap {
    height: auto !important;
    min-height: 100vh;
  }
  .hero-wrap .container {
    height: auto;
    padding-top: 118px;
    padding-bottom: 56px;
  }
  .hero-wrap .slider-text {
    padding-top: 0;
  }
  .hero-trust {
    gap: 8px 20px;
  }
  .hero-trust li {
    font-size: 12.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-eyebrow,
  .hero-wrap .slider-text .text h1,
  .hero-sub,
  .hero-actions,
  .hero-trust {
    animation: none;
  }
}

/* =========================================================
   SHARED COMPONENTS used by inner pages (Property Managers)
   ========================================================= */

/* ---- Info-card grid (adapts to light/dark section) ---- */
.nh-icards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.nh-icard {
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.22s var(--nh-ease), box-shadow 0.22s, border-color 0.22s;
}
.nh-section--light .nh-icard {
  background: #fff;
  border: 1px solid var(--nh-line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.nh-section--dark .nh-icard {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--nh-line-light);
}
.nh-icard:hover {
  transform: translateY(-5px);
}
.nh-section--light .nh-icard:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(217, 0, 0, 0.22);
}
.nh-section--dark .nh-icard:hover {
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5);
  border-color: rgba(217, 0, 0, 0.45);
}
.nh-icard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  font-size: 1.45rem;
  color: #fff;
  background: var(--nh-red);
  box-shadow: 0 10px 24px rgba(217, 0, 0, 0.4);
  margin-bottom: 16px;
}
.nh-icard h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.nh-section--light .nh-icard h3 {
  color: #141414;
}
.nh-section--dark .nh-icard h3 {
  color: #fff;
}
.nh-icard p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}
.nh-section--light .nh-icard p {
  color: #5a5a5a;
}
.nh-section--dark .nh-icard p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Split (image + text) ---- */
.nh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.nh-media-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 400px;
  background: #1a1a1a center / cover no-repeat;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--nh-line-light);
}
.nh-media-card.is-garbage {
  background-image: url("../img/garbage-bags-in-knoxville-tn.webp");
}
.nh-media-card.is-dashboard {
  background-image: url("../img/statistics-dashboard-nighthawk.webp");
}
.nh-media-card.is-resident-app {
  background-image: url("../img/nighthawk-resident-app-phone.webp");
  background-position: center top;
}
.nh-media-card.is-bulk {
  background-image: url("../img/bulk-item-removal-thumbnail.webp");
}
.nh-media-card.is-amenity {
  background-image: url("../img/amenity-services-thumbnail.webp");
}
.nh-split-body .nh-heading {
  margin-bottom: 14px;
}
.nh-split-body .nh-lead {
  margin-bottom: 14px;
}

/* ---- Checklist ---- */
.nh-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 13px;
}
.nh-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.96rem;
  line-height: 1.5;
}
.nh-section--dark .nh-checklist li {
  color: rgba(255, 255, 255, 0.84);
}
.nh-section--light .nh-checklist li {
  color: #444;
}
.nh-checklist li .nh-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217, 0, 0, 0.14);
  color: var(--nh-red);
  font-size: 0.72rem;
  margin-top: 1px;
}
.nh-section--dark .nh-checklist li .nh-check {
  background: rgba(255, 32, 32, 0.18);
  color: var(--nh-red-bright);
}
.nh-checklist li strong {
  font-weight: 700;
}
.nh-section--dark .nh-checklist li strong {
  color: #fff;
}

/* ---- Portal login CTA panel ---- */
.nh-portal-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  background: linear-gradient(120deg, #0c0c0c 0%, #2a0000 100%);
  border: 1px solid rgba(217, 0, 0, 0.32);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  margin-top: clamp(32px, 4vw, 50px);
}
.nh-portal-cta-text {
  flex: 1 1 340px;
}
.nh-portal-cta-text .nh-portal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nh-red-bright);
  margin-bottom: 10px;
}
.nh-portal-cta-text h3 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin: 0 0 8px;
  line-height: 1.2;
}
.nh-portal-cta-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.nh-portal-cta-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.nh-portal-cta-actions .nh-btn {
  white-space: nowrap;
}
.nh-portal-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0;
}
.nh-portal-note a {
  color: var(--nh-red-bright);
  font-weight: 700;
  text-decoration: none;
}
.nh-portal-note a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .nh-icards {
    grid-template-columns: 1fr 1fr;
  }
  .nh-split {
    grid-template-columns: 1fr;
  }
  .nh-media-card {
    min-height: 300px;
    order: -1;
  }
}
@media (max-width: 575px) {
  .nh-icards {
    grid-template-columns: 1fr;
  }
  .nh-portal-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .nh-portal-cta-actions .nh-btn {
    width: 100%;
  }
}

/* =========================================================
   AREAS WE SERVE — search + city map cards
   ========================================================= */
.nh-areas-tools {
  max-width: 560px;
  margin: 0 auto clamp(34px, 4vw, 52px);
}
.nh-city-search {
  position: relative;
}
.nh-city-search > i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nh-red);
  font-size: 0.95rem;
  pointer-events: none;
}
.nh-city-search input {
  width: 100%;
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  padding: 15px 22px 15px 46px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: #222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nh-city-search input::placeholder {
  color: #9a9a9a;
}
.nh-city-search input:focus {
  outline: none;
  border-color: var(--nh-red);
  box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.12);
}

.nh-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nh-city-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s var(--nh-ease), box-shadow 0.25s, border-color 0.25s;
}
.nh-city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
  border-color: rgba(217, 0, 0, 0.25);
}
.nh-city-map {
  position: relative;
  height: 210px;
  background: #11151c;
  overflow: hidden;
}
.nh-city-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(0.92) brightness(0.96);
  transition: filter 0.4s var(--nh-ease);
}
.nh-city-card:hover .nh-city-map iframe {
  filter: none;
}
.nh-city-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 17px 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.nh-city-foot:hover {
  background: #faf2f2;
}
.nh-city-name {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #161616;
  margin: 0;
}
.nh-city-name i {
  color: var(--nh-red);
  font-size: 0.92rem;
}
.nh-city-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nh-red);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: gap 0.2s var(--nh-ease);
}
.nh-city-foot:hover .nh-city-go {
  gap: 10px;
}
.nh-city-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  padding: 36px 0;
}
.nh-city-empty.is-shown {
  display: block;
}
.nh-city-empty a {
  color: var(--nh-red);
  font-weight: 700;
  text-decoration: none;
}
.nh-city-empty a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .nh-city-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .nh-city-grid {
    grid-template-columns: 1fr;
  }
  .nh-city-map {
    height: 200px;
  }
}

/* =========================================================
   CITY PAGES (cities/*.html) — modern restyle
   Scoped to body.city-page; preserves each page's unique copy
   ========================================================= */

/* ---- About / "Problem" section ---- */
.city-page .ftco-about-section {
  background: #fff;
  padding-top: clamp(56px, 8vw, 100px) !important;
  padding-bottom: clamp(56px, 8vw, 100px) !important;
}
.city-page .ftco-about-section .col-md-6 .img {
  border-radius: 18px;
  min-height: 380px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.16);
}
.city-page .ftco-about-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.01em;
}
.city-page .ftco-about-section h3 {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 700;
  color: var(--nh-red);
  line-height: 1.4;
}
.city-page .ftco-about-section h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nh-red);
  margin-top: 8px;
}
.city-page .ftco-about-section .services h2 {
  font-size: 1rem !important;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}
.city-page .ftco-about-section .services p {
  font-size: 0.88rem;
  color: #555 !important;
}
.city-page .ftco-about-section .services .icon {
  font-size: 1.5rem;
  color: var(--nh-red);
}

/* ---- Contact + video band (was inline height:100vh) ---- */
.city-contact-video {
  width: 100%;
  overflow: hidden;
}
.city-contact-video > .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.city-contact-video .row {
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}
.city-contact-video .col-md-6 {
  min-height: 430px;
  padding: 56px 44px !important;
}
.city-contact-video h4 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem) !important;
  line-height: 1.3;
}
.city-contact-video .btn.btn-primary {
  background: #fff !important;
  color: var(--nh-red) !important;
  border-color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 12px 26px !important;
  margin-top: 8px;
  transition: transform 0.18s var(--nh-ease), box-shadow 0.2s;
}
.city-contact-video .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ---- Long-form article (blog-single) ---- */
.city-page .blog-single h2 {
  font-weight: 800;
  color: #0d0d0d;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  letter-spacing: -0.01em;
}
.city-page .blog-single p {
  line-height: 1.78;
  font-size: 1.02rem;
}
.city-page .blog-single img {
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
  margin: 10px 0;
}
.city-page .blog-single ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
.city-page .blog-single ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333 !important;
}
.city-page .blog-single ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nh-red);
  box-shadow: 0 0 0 4px rgba(217, 0, 0, 0.14);
}

/* ---- Sidebar contact card ---- */
.city-page .sidebar-box {
  background: #f7f7f8;
  border: 1px solid var(--nh-line);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) {
  .city-page .sidebar-box {
    position: sticky;
    top: 120px;
  }
}
.city-page .sidebar-box h3 {
  font-weight: 800;
  color: #0d0d0d;
}
.city-page .sidebar-box .block-21 .heading {
  font-size: 0.92rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 2px;
}
.city-page .sidebar-box .block-21 i {
  color: var(--nh-red) !important;
}

/* ---- Bottom full-width map band ---- */
.city-map-band {
  width: 100%;
  padding: 0;
  line-height: 0;
}
.city-map-band iframe.custom-google-maps {
  width: 100% !important;
  height: 440px !important;
  border: 0 !important;
  display: block;
  filter: grayscale(1) contrast(0.92) brightness(0.97);
  transition: filter 0.45s var(--nh-ease);
}
.city-map-band:hover iframe.custom-google-maps {
  filter: none;
}

@media (max-width: 767px) {
  .city-contact-video .col-md-6 {
    min-height: 360px;
    padding: 44px 28px !important;
  }
  .city-map-band iframe.custom-google-maps {
    height: 340px !important;
  }
}

/* =========================================================
   APP INSTALL GUIDE  (app-installation-instructions.html)
   Two-up platform cards with auto-numbered steps
   ========================================================= */
.nh-install-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(28px, 4vw, 46px);
}
.nh-install-card {
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}
.nh-install-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--nh-line);
}
.nh-install-os-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--nh-red);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(217, 0, 0, 0.4);
}
.nh-install-card-head h3 {
  margin: 0;
  font-weight: 800;
  font-size: 1.22rem;
  color: #141414;
}
.nh-install-os-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nh-red);
}
.nh-install-steps {
  list-style: none;
  counter-reset: nh-step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 17px;
}
.nh-install-steps li {
  counter-increment: nh-step;
  position: relative;
  padding-left: 44px;
  min-height: 30px;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #444;
}
.nh-install-steps li::before {
  content: counter(nh-step);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--nh-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgba(217, 0, 0, 0.32);
}
.nh-install-steps li strong {
  color: #141414;
  font-weight: 700;
}
@media (max-width: 991px) {
  .nh-install-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .nh-install-card     { padding: 22px 18px; border-radius: 14px; }
  .nh-install-card-head { gap: 12px; margin-bottom: 16px; padding-bottom: 16px; }
  .nh-install-os-icon  { width: 46px; height: 46px; font-size: 1.4rem; }
  .nh-install-card-head h3 { font-size: 1.1rem; }
  .nh-install-steps li { font-size: 0.92rem; padding-left: 38px; }
  .nh-install-steps li::before { width: 26px; height: 26px; font-size: 0.8rem; }
  /* keep long URLs (e.g. nighthawkvalet.com/app) from overflowing */
  .nh-install-steps li strong { overflow-wrap: anywhere; }
}

/* =========================================================
   CONTACT SECTION  (shared ftco-appointment replacement)
   Elegant split card: dark info aside + light form. Path-independent.
   ========================================================= */
.nh-contact {
  background:
    linear-gradient(160deg, rgba(20,0,0,0.94) 0%, rgba(8,8,10,0.96) 100%),
    url("../img/bg_2.jpg") center / cover no-repeat;
}
.nh-contact-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  margin-top: clamp(30px, 4vw, 48px);
}
/* ---- info aside ---- */
.nh-contact-aside {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #1c0303 0%, #0b0b0d 100%);
  color: #fff;
  padding: clamp(28px, 3.5vw, 46px);
}
.nh-contact-brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  background: url("../img/night-hawk-elite-service-valet-web-app.png") center / contain no-repeat;
}
.nh-contact-aside h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}
.nh-contact-aside-lead {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 26px;
}
.nh-contact-methods {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.nh-contact-methods a,
.nh-contact-method-static {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s var(--nh-ease);
}
.nh-contact-methods a:hover {
  color: var(--nh-red-bright);
}
.nh-contact-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(217, 0, 0, 0.16);
  border: 1px solid rgba(217, 0, 0, 0.32);
  color: var(--nh-red-bright);
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s var(--nh-ease);
}
.nh-contact-methods a:hover .nh-contact-ic {
  background: var(--nh-red);
  color: #fff;
  transform: translateY(-2px);
}
.nh-contact-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.nh-contact-meta strong {
  font-size: 1rem;
  font-weight: 700;
}
.nh-contact-meta small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.nh-contact-note {
  margin: auto 0 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  padding: 15px 17px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}
.nh-contact-note i {
  color: var(--nh-red-bright);
  font-size: 1.1rem;
  margin-top: 2px;
}
.nh-contact-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
/* ---- form ---- */
.nh-contact-form {
  background: #fff;
  padding: clamp(28px, 3.5vw, 46px);
}
.nh-contact-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #141414;
  margin: 0 0 22px;
}
.nh-field {
  margin-bottom: 16px;
}
.nh-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nh-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #444;
  margin-bottom: 7px;
}
.nh-field input,
.nh-field select,
.nh-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: #222;
  background: #fff;
  border: 1px solid #d8d8de;
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nh-field input::placeholder,
.nh-field textarea::placeholder {
  color: #9a9a9a;
}
.nh-field input:focus,
.nh-field select:focus,
.nh-field textarea:focus {
  outline: none;
  border-color: var(--nh-red);
  box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.12);
}
.nh-field textarea {
  min-height: 120px;
  resize: vertical;
}
.nh-btn--block {
  width: 100%;
  margin-top: 6px;
}
/* ---- FAQ ---- */
.nh-faq {
  max-width: 860px;
  margin: clamp(30px, 4vw, 48px) auto 0;
  display: grid;
  gap: 12px;
}
.nh-faq-title {
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.nh-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  overflow: hidden;
}
.nh-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}
.nh-faq-item summary::-webkit-details-marker {
  display: none;
}
.nh-faq-item summary::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--nh-red-bright);
  transition: transform 0.25s var(--nh-ease);
}
.nh-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.nh-faq-body {
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}
.nh-faq-body p {
  margin: 0;
}
@media (max-width: 860px) {
  .nh-contact-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .nh-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* =========================================================
   FOOTER  (shared .nh-footer — replaces .ftco-footer)
   Path-independent: logo via CSS, links absolute.
   ========================================================= */
.nh-footer {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(217, 0, 0, 0.14), transparent 60%),
    linear-gradient(180deg, #0c0c0c 0%, #070708 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(48px, 6vw, 84px) 0 0;
}
.nh-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nh-red) 50%, transparent);
  opacity: 0.6;
}
.nh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
.nh-footer-logo {
  display: block;
  width: 200px;
  height: 64px;
  margin-bottom: 18px;
  background: url("../img/night-hawk-elite-service-valet.png") left center / contain no-repeat;
}
.nh-footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
  margin: 0 0 22px;
}
.nh-footer-col h3 {
  position: relative;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 12px;
}
.nh-footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--nh-red);
}
.nh-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.nh-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s, gap 0.2s var(--nh-ease);
}
.nh-footer-links a i {
  font-size: 0.62rem;
  color: var(--nh-red);
  transition: transform 0.2s var(--nh-ease), color 0.2s;
}
.nh-footer-links a:hover {
  color: #fff;
  gap: 13px;
}
.nh-footer-links a:hover i {
  color: var(--nh-red-bright);
}
.nh-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.nh-footer-contact a,
.nh-footer-contact-static {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s;
}
.nh-footer-contact a:hover {
  color: #fff;
}
.nh-footer-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(217, 0, 0, 0.15);
  border: 1px solid rgba(217, 0, 0, 0.3);
  color: var(--nh-red-bright);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.nh-footer-contact a:hover .nh-footer-ic {
  background: var(--nh-red);
  color: #fff;
}
.nh-footer-actions {
  margin-top: 2px;
}
.nh-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.nh-footer-bar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.nh-footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.nh-footer-copy .nh-footer-brandname {
  color: var(--nh-red-bright);
  font-weight: 700;
}
.nh-footer-legal {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.nh-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.nh-footer-legal a:hover {
  color: var(--nh-red-bright);
}
@media (max-width: 991px) {
  .nh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .nh-footer-grid {
    grid-template-columns: 1fr;
  }
  .nh-footer-bar .container-xl {
    flex-direction: column;
    text-align: center;
  }
}
/* =========================================================
   LEGAL PAGES  (terms-of-service / privacy-policy)
   Sticky TOC + readable sections. Path-independent.
   ========================================================= */
.nh-legal-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 52px);
}
.nh-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 0, 0, 0.08);
  border: 1px solid rgba(217, 0, 0, 0.22);
  color: var(--nh-red);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.nh-legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.nh-legal-toc {
  position: sticky;
  top: 120px;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.nh-legal-toc h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #141414;
  margin: 0 0 14px;
}
.nh-legal-toc nav {
  display: grid;
  gap: 2px;
}
.nh-legal-toc a {
  display: block;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #5a5a5a;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nh-legal-toc a:hover {
  background: #faf2f2;
  color: var(--nh-red);
  border-left-color: var(--nh-red);
}
.nh-legal-meta {
  font-size: 0.9rem;
  color: #666;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--nh-line);
}
.nh-legal-block {
  scroll-margin-top: 120px;
  padding: 24px 0;
  border-bottom: 1px solid var(--nh-line);
}
.nh-legal-block:last-child {
  border-bottom: 0;
}
.nh-legal-block h2 {
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #0d0d0d;
  margin: 0 0 14px;
}
.nh-legal-block p {
  color: #444;
  line-height: 1.7;
  font-size: 0.97rem;
  margin: 0 0 14px;
}
.nh-legal-block p:last-child {
  margin-bottom: 0;
}
.nh-legal-block a {
  color: var(--nh-red);
  font-weight: 600;
  text-decoration: underline;
}
.nh-legal-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.nh-legal-list li {
  position: relative;
  padding-left: 28px;
  color: #444;
  line-height: 1.65;
  font-size: 0.97rem;
}
.nh-legal-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--nh-red);
  font-size: 0.78rem;
}
.nh-legal-contact-card {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 4px;
}
.nh-legal-contact-logo {
  width: 120px;
  height: 48px;
  flex-shrink: 0;
  background: url("../img/night-hawk-elite-service-valet.png") left center / contain no-repeat;
}
.nh-legal-contact-card strong {
  display: block;
  color: #0d0d0d;
  font-size: 1.05rem;
}
.nh-legal-contact-card .nh-legal-contact-addr {
  margin: 2px 0 12px;
  color: #666;
  font-size: 0.92rem;
}
.nh-legal-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.nh-legal-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nh-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.93rem;
}
.nh-legal-contact-links a:hover {
  color: var(--nh-red-bright);
}
@media (max-width: 991px) {
  .nh-legal-layout {
    grid-template-columns: 1fr;
  }
  .nh-legal-toc {
    position: static;
  }
}
/* =========================================================
   TRASH GUIDELINES  (trash-guidelines.html)
   Scannable rule cards
   ========================================================= */
.nh-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nh-rule-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 16px;
  padding: 26px 24px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s var(--nh-ease), box-shadow 0.22s, border-color 0.22s;
}
.nh-rule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(217, 0, 0, 0.22);
}
.nh-rule-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(217, 0, 0, 0.12);
}
.nh-rule-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--nh-red);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 10px 24px rgba(217, 0, 0, 0.4);
  margin-bottom: 16px;
}
.nh-rule-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #141414;
  margin: 0 0 8px;
  max-width: 90%;
}
.nh-rule-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
}
@media (max-width: 991px) {
  .nh-rules-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .nh-rules-grid {
    grid-template-columns: 1fr;
  }
}
.nh-rules-why {
  max-width: 820px;
  margin: 0 auto;
}
.nh-rules-why .nh-lead {
  margin-bottom: 16px;
}