 :root {
      --navy: #000000;
      --navy-mid: #132240;
      --navy-light: #1e3355;
      --orange: #e60c0c;
      --orange-dark: #e60c0c;
      --orange-light: #000000;
      --white: #ffffff;
      --off-white: #F5F6F8;
      --gray: #7A8594;
      --gray-light: #e8eaed;
      --text: #1a2332;
 }

 * {
      box-sizing: border-box;
 }

 html {
      scroll-behavior: smooth;
 }

 body {
      font-family: 'Lato', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 0.02em;
 }

 /* ── TOPBAR ───────────────────────────────── */
 .topbar {
      background: var(--orange);
      padding: 8px 0;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
 }

 .topbar a {
      color: var(--white);
      text-decoration: none;
 }

 .topbar a:hover {
      text-decoration: underline;
 }

 /* ── NAVBAR ───────────────────────────────── */
 .navbar {
      background: var(--navy) !important;
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
 }

 .navbar-brand img {
      height: 44px;
 }

 .navbar-brand span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.05em;
      line-height: 1;
 }

 .navbar-brand span em {
      color: var(--orange);
      font-style: normal;
 }

 .navbar .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 8px 14px !important;
      transition: color 0.2s;
 }

 .navbar .nav-link:hover,
 .navbar .nav-link.active {
      color: var(--orange) !important;
 }

 .navbar .dropdown-menu {
      background: var(--navy-mid);
      border: 1px solid var(--navy-light);
      border-radius: 4px;
      min-width: 230px;
 }

 .navbar .dropdown-item {
      color: rgba(255, 255, 255, 0.8);
      font-size: 13px;
      font-weight: 600;
      padding: 9px 18px;
      transition: background 0.15s, color 0.15s;
 }

 .navbar .dropdown-item:hover {
      background: var(--orange);
      color: var(--white);
 }

 .btn-call {
      background: var(--orange);
      color: var(--white) !important;
      font-size: 13px !important;
      font-weight: 700 !important;
      letter-spacing: 0.06em !important;
      padding: 10px 20px !important;
      border-radius: 4px !important;
      border: none;
      transition: background 0.2s, transform 0.1s;
 }

 .btn-call:hover {
      background: var(--orange-dark) !important;
      transform: translateY(-1px);
 }

 .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.3);
 }

 .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 .navbar {
      transition: transform 0.3s ease;
      z-index: 999;
 }

 .nav-hide {
      transform: translateY(-100%);
 }

 /* ── HERO ─────────────────────────────────── */
 .hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
      min-height: 88vh;
      display: flex;
      align-items: center;
 }

 .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
           repeating-linear-gradient(-45deg,
                transparent,
                transparent 40px,
                rgba(255, 255, 255, 0.018) 40px,
                rgba(255, 255, 255, 0.018) 41px);
 }

 .hero::after {
      content: '';
      position: absolute;
      right: -100px;
      top: -60px;
      /* width: 700px; */
      height: 700px;
      background: radial-gradient(circle, rgba(244, 124, 32, 0.14) 0%, transparent 65%);
      pointer-events: none;
 }

 .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(244, 124, 32, 0.15);
      border: 1px solid rgba(244, 124, 32, 0.4);
      color: var(--orange);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 2px;
      margin-bottom: 22px;
 }

 .hero h1 {
      font-size: clamp(44px, 6vw, 78px);
      line-height: 0.95;
      color: var(--white);
      margin-bottom: 24px;
      text-transform: uppercase;
 }

 .hero h1 span {
      color: var(--orange);
 }

 .hero-sub {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
      line-height: 1.7;
      /* max-width: 520px; */
      margin-bottom: 36px;
 }

 .hero-cta-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
 }

 .btn-primary-hero {
      background: var(--orange);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 14px 32px;
      border-radius: 4px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
 }

 .btn-primary-hero:hover {
      background: var(--orange-dark);
      color: var(--white);
      transform: translateY(-2px);
 }

 .btn-outline-hero {
      border: 2px solid rgba(255, 255, 255, 0.35);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.2s, background 0.2s;
 }

 .btn-outline-hero:hover {
      border-color: var(--orange);
      background: rgba(244, 124, 32, 0.1);
      color: var(--white);
 }

 .hero-trust {
      display: flex;
      gap: 28px;
      margin-top: 44px;
      flex-wrap: wrap;
 }

 .trust-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
 }

 .trust-pill i {
      color: var(--orange);
      font-size: 18px;
 }

 .hero-card {
      background: var(--navy-mid);
      border: 1px solid var(--navy-light);
      border-radius: 8px;
      padding: 32px;
      position: relative;
      z-index: 1;
 }

 .hero-card .card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--orange);
 }

 .hero-card .form-control,
 .hero-card .form-select {
      background: var(--navy-light);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--white);
      font-size: 14px;
      padding: 12px 14px;
      border-radius: 4px;
      margin-bottom: 12px;
 }

 .hero-card .form-control::placeholder {
      color: rgba(255, 255, 255, 0.4);
 }

 .hero-card .form-control:focus,
 .hero-card .form-select:focus {
      background: var(--navy-light);
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.2);
      color: var(--white);
 }

 .hero-card .form-select option {
      background: var(--navy-mid);
 }

 .hero-card .btn-submit {
      width: 100%;
      background: var(--orange);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 14px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s;
 }

 .hero-card .btn-submit:hover {
      background: var(--orange-dark);
 }

 .hero-card .guarantee-note {
      text-align: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 12px;
 }

 /* ── STATS BAND ───────────────────────────── */
 .stats-band {
      background: var(--orange);
      padding: 28px 0;
 }

 .stat-item {
      text-align: center;
      padding: 8px 0;
 }

 .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 46px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
 }

 .stat-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 4px;
 }

 .stat-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.3);
      height: 48px;
      align-self: center;
 }

 /* ── SECTION STYLES ───────────────────────── */
 .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
 }

 .section-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--orange);
 }

 .section-title {
      font-size: clamp(34px, 4vw, 52px);
      color: var(--navy);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 16px;
 }

 .section-title span {
      color: var(--orange);
 }

 .section-sub {
      font-size: 16px;
      color: var(--gray);
      font-weight: 300;
      line-height: 1.7;
      max-width: 540px;
 }

 /* ── WHY US ───────────────────────────────── */
 .why-us {
      padding: 90px 0;
      background: var(--off-white);
 }

 .feature-card {
      background: var(--white);
      border-radius: 6px;
      padding: 32px 28px;
      height: 100%;
      border: 1px solid var(--gray-light);
      border-top: 4px solid transparent;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      position: relative;
 }

 .feature-card:hover {
      border-top-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
      width: 56px;
      height: 56px;
      background: var(--orange-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
 }

 .feature-icon i {
      font-size: 24px;
      color: var(--orange);
 }

 .feature-card h4 {
      font-size: 20px;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 10px;
 }

 .feature-card p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
      margin: 0;
 }

 /* ── SERVICES ─────────────────────────────── */
 .services {
      padding: 90px 0;
      background: var(--white);
 }

 .service-card {
      background: var(--navy);
      border-radius: 6px;
      overflow: hidden;
      height: 100%;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
 }

 .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(11, 22, 40, 0.35);
 }

 .service-card-body {
      padding: 30px 24px 28px;
 }

 .service-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: rgba(244, 124, 32, 0.18);
      line-height: 1;
      margin-bottom: -8px;
 }

 .service-card h4 {
      font-size: 20px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 10px;
 }

 .service-card p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.65;
      margin-bottom: 20px;
 }

 .service-card .learn-more {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
 }

 .service-card:hover .learn-more {
      gap: 10px;
 }

 /* ── VIOLATIONS ───────────────────────────── */
 .violations {
      padding: 90px 0;
      background: var(--navy);
 }

 .violation-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .violation-item:last-child {
      border-bottom: none;
 }

 .violation-dot {
      width: 10px;
      height: 10px;
      background: var(--orange);
      border-radius: 50%;
      margin-top: 6px;
      flex-shrink: 0;
 }

 .violation-item h5 {
      font-size: 17px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 4px;
 }

 .violation-item p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
      margin: 0;
 }

 .process-step {
      text-align: center;
      padding: 0 10px;
 }

 .step-num {
      width: 64px;
      height: 64px;
      border: 2px solid var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--orange);
 }

 .process-step h5 {
      font-size: 16px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 8px;
 }

 .process-step p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
 }

 .process-connector {
      height: 2px;
      background: linear-gradient(90deg, var(--orange), rgba(244, 124, 32, 0.2));
      margin-top: 30px;
 }

 /* ── AREAS ────────────────────────────────── */
 .areas {
      padding: 90px 0;
      background: var(--off-white);
 }

 .borough-card {
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid var(--gray-light);
      transition: transform 0.25s, box-shadow 0.25s;
      text-align: center;
      padding: 36px 20px 28px;
      height: 100%;
      cursor: pointer;
      text-decoration: none;
      display: block;
 }

 .borough-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
      border-color: var(--orange);
 }

 .borough-icon {
      font-size: 42px;
      color: var(--orange);
      margin-bottom: 14px;
      display: block;
 }

 .borough-card h4 {
      font-size: 22px;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 8px;
 }

 .borough-card p {
      font-size: 13px;
      color: var(--gray);
      margin: 0;
 }

 /* ── TESTIMONIALS ─────────────────────────── */
 .testimonials {
      padding: 90px 0;
      background: var(--white);
 }

 .testimonial-card {
      background: var(--off-white);
      border-radius: 6px;
      padding: 28px;
      border: 1px solid var(--gray-light);
      border-left: 4px solid var(--orange);
      height: 100%;
 }

 .stars {
      color: var(--orange);
      font-size: 15px;
      margin-bottom: 14px;
 }

 .testimonial-text {
      font-size: 15px;
      color: var(--text);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 18px;
 }

 .reviewer-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.06em;
 }

 .reviewer-role {
      font-size: 12px;
      color: var(--gray);
 }

 /* ── FAQ ──────────────────────────────────── */
 .faq {
      padding: 90px 0;
      background: var(--off-white);
 }

 .accordion-item {
      border: 1px solid var(--gray-light) !important;
      border-radius: 6px !important;
      margin-bottom: 10px;
      overflow: hidden;
 }

 .accordion-button {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--navy) !important;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      background: var(--white) !important;
      padding: 18px 20px;
 }

 .accordion-button:not(.collapsed) {
      color: var(--orange) !important;
      box-shadow: none !important;
 }

 .accordion-button::after {
      filter: none;
 }

 .accordion-body {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
      background: var(--white);
      padding: 0 20px 20px;
 }

 /* ── CTA BANNER ───────────────────────────── */
 .cta-banner {
      background: var(--orange);
      padding: 70px 0;
      position: relative;
      overflow: hidden;
 }

 .cta-banner::before {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 50%;
 }

 .cta-banner h2 {
      font-size: clamp(32px, 4vw, 54px);
      color: var(--white);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 14px;
 }

 .cta-banner p {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 300;
 }

 .btn-white {
      background: var(--white);
      color: var(--orange);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 14px 36px;
      border-radius: 4px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
 }

 .btn-white:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
 }

 .btn-outline-white {
      border: 2px solid rgba(255, 255, 255, 0.6);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 14px 36px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.2s, background 0.2s;
 }

 .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--white);
      color: var(--white);
 }

 /* ── FOOTER ───────────────────────────────── */
 footer {
      background: var(--navy);
      padding: 70px 0 0;
 }

 .footer-logo span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.05em;
 }

 .footer-logo span em {
      color: var(--orange);
      font-style: normal;
 }

 footer p,
 footer li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
 }

 .footer-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--orange);
      display: inline-block;
 }

 footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
 }

 footer ul li {
      margin-bottom: 8px;
 }

 footer ul li a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
 }

 footer ul li a:hover {
      color: var(--orange);
 }

 footer ul li a i {
      font-size: 13px;
      color: var(--orange);
 }

 .footer-contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      align-items: flex-start;
 }

 .footer-contact-item i {
      color: var(--orange);
      font-size: 18px;
      margin-top: 2px;
      flex-shrink: 0;
 }

 .footer-contact-item span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5;
 }

 .footer-contact-item a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.2s;
 }

 .footer-contact-item a:hover {
      color: var(--orange);
 }

 .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 20px 0;
      margin-top: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
 }

 .footer-bottom p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.3);
      margin: 0;
 }

 .social-icons {
      display: flex;
      gap: 10px;
 }

 .social-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 16px;
      transition: background 0.2s, color 0.2s;
 }

 .social-icon:hover {
      background: var(--orange);
      color: var(--white);
 }

 /* ── FLOATING CTA ─────────────────────────── */
 .floating-cta {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
 }

 .float-btn {
      background: var(--orange);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 12px 22px;
      border-radius: 50px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 24px rgba(244, 124, 32, 0.45);
      transition: transform 0.2s, box-shadow 0.2s;
 }

 .float-btn:hover {
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(244, 124, 32, 0.55);
 }

 /* ── ANIMATIONS ───────────────────────────── */
 @keyframes fadeUp {
      from {
           opacity: 0;
           transform: translateY(24px);
      }

      to {
           opacity: 1;
           transform: translateY(0);
      }
 }

 .anim {
      animation: fadeUp 0.65s ease both;
 }

 .anim-delay-1 {
      animation-delay: 0.1s;
 }

 .anim-delay-2 {
      animation-delay: 0.2s;
 }

 .anim-delay-3 {
      animation-delay: 0.3s;
 }

 .anim-delay-4 {
      animation-delay: 0.45s;
 }

 /* ── RESPONSIVE ───────────────────────────── */
 @media (max-width: 991px) {
      .hero {
           min-height: unset;
           padding: 70px 0 60px;
      }

      .hero-card {
           margin-top: 40px;
      }

      .stat-divider {
           display: none;
      }

      .stat-item {
           padding: 10px;
      }
 }

 @media (max-width: 767px) {
      .hero h1 {
           font-size: 48px;
      }

      .floating-cta {
           bottom: 16px;
           right: 16px;
      }

      .hero-cta-group {
           flex-direction: column;
           align-items: flex-start;
      }
 }