/* ============================================================
   FORTRESS MASONRY CONTRACTORS NYC
   style.css — Complete Design System
   Stack: Bootstrap 5 + Custom CSS
   Palette: #CC1200 Red | #111111 Dark | #FFFFFF White
   ============================================================ */

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

/* ── VARIABLES ── */
:root {
  --red: #CC1200;
  --red-hover: #E01400;
  --red-pale: #FFF5F5;
  --red-light: #FFE0E0;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #9A9A9A;
  --gray-600: #555555;
  --text: #111111;
  --r: 8px;
  --rl: 14px;
  --shadow: 0 2px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --shadow-red: 0 4px 20px rgba(204, 18, 0, .25);
  --trans: all .2s ease;
  --font: 'Inter', system-ui, sans-serif;
}

/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}

img {
  max-width: 100%;
  display: block;
}

p {
  line-height: 1.75;
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

/* ── UTILITIES ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.section-title.wh {
  color: #fff;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  line-height: 1.7;
}

.section-sub.wh {
  color: rgba(255, 255, 255, .75);
}

.sec {
  padding: 80px 0;
}

.sec-sm {
  padding: 56px 0;
}

.sec-dark {
  background: var(--dark);
}

.sec-light {
  background: var(--gray-50);
}

.sec-red {
  background: var(--red);
}

/* ── BUTTONS ── */
.btn-r {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--red);
  box-shadow: var(--shadow-red);
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

.btn-r:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(204, 18, 0, .35);
}

.btn-r-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  padding: 12px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--red);
  transition: var(--trans);
  cursor: pointer;
}

.btn-r-out:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #fff;
  transition: var(--trans);
  cursor: pointer;
}

.btn-wh:hover {
  background: var(--red-pale);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-wh-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: var(--trans);
  cursor: pointer;
}

.btn-wh-out:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.btn-lg {
  padding: 16px 36px !important;
  font-size: 16px !important;
}

.btn-sm {
  padding: 9px 18px !important;
  font-size: 13px !important;
}

/* ── BADGES ── */
.badge-r {
  background: var(--red-pale);
  color: var(--red);
  border: 1px solid var(--red-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.badge-dk {
  background: var(--dark);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.badge-gr {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

/* ══════════════ NAV ══════════════ */
.navbar-f {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--red);
  padding: 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.brand-txt {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-txt small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #888;
  letter-spacing: .04em;
}

.navbar-f .nav-link {
  color: #ccc !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: var(--r);
  transition: var(--trans);
}

.navbar-f .nav-link:hover,
.navbar-f .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, .08);
}

.navbar-f .dropdown-menu {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  margin-top: 4px;
}

.navbar-f .dropdown-item {
  font-size: 13.5px;
  color: var(--dark);
  border-radius: var(--r);
  padding: 9px 14px;
  transition: var(--trans);
}

.navbar-f .dropdown-item:hover {
  background: var(--red-pale);
  color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: var(--r) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-red);
}

.nav-cta:hover {
  background: var(--red-hover) !important;
}

.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.tog-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tog-icon span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: var(--trans);
}

/* ══════════════ HERO ══════════════ */
.hero {
  background: var(--dark);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 18, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 18, 0, .15);
  border: 1px solid rgba(204, 18, 0, .4);
  color: #ff9999;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(1.3)
  }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero h1 .red {
  color: var(--red);
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
}

.trust-check {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

.hero-stat-box {
  background: rgb(0 0 0 / 60%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rl);
  padding: 28px;
  position: relative;
  z-index: 1;
}

.hero-stat {
  text-align: center;
  padding: 16px 0;
}

.hero-stat+.hero-stat {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--red);
}

.hero-stat-lbl {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ══════════════ STATS BAR ══════════════ */
.stats-bar {
  background: var(--red);
  padding: 22px 0;
}

.stat-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

/* ══════════════ TRUST BAR ══════════════ */
.trust-bar {
  background: #fff;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.t-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════ SERVICE CARDS ══════════════ */
.svc-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  padding: 28px;
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--red-pale);
  border: 1px solid var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--trans);
}

.svc-card:hover .svc-icon {
  background: var(--red);
  border-color: var(--red);
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--red);
  transition: var(--trans);
}

.svc-card:hover .svc-icon svg {
  fill: #fff;
}

.svc-card h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.svc-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-link svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
  transition: transform .2s;
}

.svc-card:hover .svc-link svg {
  transform: translateX(4px);
}

/* ══════════════ STEPS ══════════════ */
.steps-wrap {
  position: relative;
}

.step-col {
  text-align: center;
  position: relative;
}

.step-col::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: var(--gray-200);
}

.step-col:last-child::after {
  display: none;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: #fff;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ══════════════ PERMIT BOX ══════════════ */
.permit-box {
  background: var(--dark);
  border-radius: var(--rl);
  padding: 36px;
  color: #fff;
  height: 100%;
}

.permit-box h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.permit-row {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.permit-row:last-child {
  border: none;
}

.p-check {
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

.p-name {
  font-weight: 700;
  color: #fff;
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.p-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* ══════════════ VIOLATION CARDS ══════════════ */
.v-card {
  border-radius: var(--rl);
  padding: 26px;
  border-left: 5px solid;
  height: 100%;
}

.v-card.vc-red {
  background: var(--red-pale);
  border-color: var(--red);
}

.v-card.vc-dark {
  background: #f5f5f5;
  border-color: var(--dark);
}

.v-card.vc-green {
  background: #f0faf7;
  border-color: #16a34a;
}

.v-card.vc-orange {
  background: #fff8f0;
  border-color: #e85000;
}

.v-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.v-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ══════════════ FAQ ══════════════ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 18, 0, .06);
}

.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background .15s;
}

.faq-item.open .faq-q {
  background: var(--red-pale);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gray-400);
  transition: var(--trans);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

/* ══════════════ AREA SECTION ══════════════ */
.area-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--rl);
  padding: 28px;
  height: 100%;
  transition: var(--trans);
}

.area-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(204, 18, 0, .4);
}

.area-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-list li {
  font-size: 13px;
  color: #aaa;
  padding: 5px 0 5px 18px;
  position: relative;
  transition: color .15s;
  cursor: pointer;
}

.area-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}

.area-list li:hover {
  color: #fff;
}

/* ══════════════ REVIEWS ══════════════ */
.review-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--red);
  border-radius: var(--rl);
  padding: 26px;
  height: 100%;
}

.review-stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.reviewer {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.reviewer small {
  color: var(--gray-400);
  font-weight: 400;
  margin-left: 6px;
}

/* ══════════════ CTA SECTION ══════════════ */
.cta-sec {
  background: var(--red);
  padding: 80px 0;
}

.cta-sec h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.cta-sec p {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ══════════════ PAGE HERO ══════════════ */
.page-hero {
  background: var(--dark);
  padding: 56px 0 50px;
}

.breadcrumb-f {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb-f a {
  color: #aaa;
}

.breadcrumb-f a:hover {
  color: #fff;
}

.breadcrumb-f .sep {
  color: #555;
}

.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: #ccc;
  max-width: 600px;
  line-height: 1.7;
}

/* ══════════════ PROSE (Service Pages) ══════════════ */
.prose h2 {
  font-size: 26px;
  color: var(--dark);
  font-weight: 700;
  margin: 36px 0 14px;
}

.prose h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 700;
  margin: 28px 0 10px;
}

.prose p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul {
  margin: 12px 0 20px;
}

.prose ul li {
  font-size: 15px;
  color: var(--gray-600);
  padding: 7px 0 7px 26px;
  position: relative;
  line-height: 1.65;
}

.prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.h-box {
  background: var(--red-pale);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 20px;
  margin: 20px 0;
}

.h-box p {
  font-size: 14px;
  margin: 0;
  color: var(--dark);
}

.i-box {
  background: var(--gray-100);
  border-left: 4px solid var(--dark);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 20px;
  margin: 20px 0;
}

.i-box p {
  font-size: 14px;
  color: var(--dark);
  margin: 0;
}

/* ══════════════ SIDEBAR ══════════════ */
.sidebar {
  position: sticky;
  top: 84px;
}

.s-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  padding: 24px;
  margin-bottom: 20px;
}

.s-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.s-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-red);
  transition: var(--trans);
}

.s-phone:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}

.s-phone svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.s-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.s-link {
  font-size: 13.5px;
  color: var(--gray-600);
  padding: 9px 12px;
  border-radius: var(--r);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  background: #fff;
}

.s-link:hover {
  background: var(--red-pale);
  color: var(--red);
  border-color: var(--red-light);
}

/* ══════════════ WHY US ══════════════ */
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.why-num {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════ AREA SERVICE GRID ══════════════ */
.area-svc-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 20px;
  transition: var(--trans);
  cursor: pointer;
}

.area-svc-item:hover {
  border-color: var(--red);
  background: var(--red-pale);
}

.area-svc-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.area-svc-item p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}

.hood-tag {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
  background: var(--dark-3);
  color: #888;
  padding: 60px 0 28px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #888;
  margin-bottom: 8px;
  transition: color .15s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-link {
  font-size: 13px;
  color: #666;
  transition: color .15s;
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 24px;
  margin-top: 44px;
}

.footer-bottom p {
  font-size: 12px;
  color: #444;
  margin: 0;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:991px) {
  .hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-stat-box {
    display: none;
  }

  .step-col::after {
    display: none;
  }

  .sidebar {
    position: static;
  }
}

@media(max-width:767px) {
  .sec {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .cta-sec {
    padding: 56px 0;
  }

  .trust-bar .d-flex {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media(max-width:575px) {
  .brand-txt {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .btn-lg {
    padding: 13px 22px !important;
    font-size: 15px !important;
  }
}

/* ══════════════ ACCESSIBILITY ══════════════ */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}