/* ═══════════════════════════════════════════════════════
   Tradespage — Concrete Contractor Template
   Clean Light Theme · Steel Blue · Montserrat
   ═══════════════════════════════════════════════════════ */

:root {
  --blue:        #1B4F8C;
  --blue-mid:    #2563B0;
  --blue-light:  #3B82D4;
  --blue-pale:   #EBF2FB;
  --blue-glow:   rgba(27, 79, 140, 0.12);
  --accent:      #E8A020;
  --dark:        #111827;
  --dark2:       #1F2937;
  --text:        #1F2937;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --surface:     #FFFFFF;
  --surface2:    #F8FAFC;
  --surface3:    #F1F5F9;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --radius:      14px;
  --radius-lg:   24px;
  --font:        'Manrope', sans-serif;
  --font-display:'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.blue-text { color: var(--blue-light); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-pale); }
.nav-phone {
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 55%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,79,140,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid rgba(27,79,140,0.2);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--blue-light);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-title .line2 { color: var(--blue); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(27,79,140,0.28);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,79,140,0.32);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  border: 2px solid var(--blue);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--blue-pale); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-stars { color: var(--accent); font-size: 1rem; letter-spacing: 1px; }
.trust-label { font-size: 0.85rem; color: var(--text-muted); }
.trust-label strong { color: var(--text); }

/* Hero card (right side) */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-card-top {
  background: var(--blue);
  padding: 28px;
  text-align: center;
}
.hero-logo-wrap {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.hero-logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.hero-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}
.hero-card-tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
  gap: 0;
}
.hero-stat {
  text-align: center;
  padding: 12px 8px;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
}
.hero-stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-card-badges {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.badge-icon { font-size: 1rem; }
.badge-text { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.badge-row.highlight { background: var(--blue-pale); border-color: rgba(27,79,140,0.2); }
.badge-row.highlight .badge-text { color: var(--blue); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--blue);
  padding: 16px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 20px;
}
.trust-check {
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  flex-shrink: 0;
}
.trust-sep {
  color: rgba(255,255,255,0.25);
  font-size: 1.1rem;
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.left { text-align: left; }
.section-eyebrow {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.left p { margin: 0; }

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(241,245,249,0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover {
  border-color: rgba(27,79,140,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--blue-pale);
  border-color: rgba(27,79,140,0.25);
}
.service-card.featured::before { transform: scaleX(1); }
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(7) {
  grid-column: span 4;
}
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(5),
.services-grid .service-card:nth-child(8) {
  grid-column: span 5;
}
.services-grid .service-card:nth-child(3),
.services-grid .service-card:nth-child(6),
.services-grid .service-card:nth-child(9) {
  grid-column: span 3;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 34ch;
}
.service-cta {
  background: none;
  border: none;
  padding: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-cta:hover { gap: 8px; }
.featured-pill {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
}

/* ── PROCESS ── */
.process {
  padding: 96px 0;
  background: var(--surface2);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0.3;
}
.step-item {
  text-align: center;
  padding: 0 24px;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(27,79,140,0.3);
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-item p a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

/* ── WHY US ── */
.why-us {
  padding: 96px 0;
  background: var(--surface);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.owner-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.owner-quote-mark {
  font-size: 5rem;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 12px; left: 24px;
}
.owner-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 24px;
  font-style: italic;
}
.owner-sig {
  display: flex;
  align-items: center;
  gap: 14px;
}
.owner-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.owner-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.owner-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.cred-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.cred-pill .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cred-pill .value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.why-points { padding-top: 8px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-of-type { border-bottom: none; }
.why-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── AREAS ── */
.areas {
  padding: 96px 0;
  background: var(--surface2);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.area-card:hover {
  border-color: rgba(27,79,140,0.3);
  box-shadow: var(--shadow-sm);
}
.area-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.area-card h4::before {
  content: '📍';
  font-size: 0.85rem;
}
.area-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.areas-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.areas-note a { color: var(--blue); font-weight: 600; text-decoration: none; }

/* ── REVIEWS ── */
.reviews {
  padding: 96px 0;
  background: var(--surface);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.review-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}
.reviews-grid .review-card:nth-child(1),
.reviews-grid .review-card:nth-child(3) {
  grid-column: span 4;
}
.reviews-grid .review-card:nth-child(2) {
  grid-column: span 8;
}
.review-stars {
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
  font-style: normal;
  max-width: 36ch;
}
.review-card.featured p { color: rgba(255,255,255,0.9); }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card.featured .reviewer-av {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.reviewer strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.review-card.featured .reviewer strong { color: #fff; }
.reviewer span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.review-card.featured .reviewer span { color: rgba(255,255,255,0.65); }

/* ── CONTACT ── */
.contact {
  padding: 96px 0;
  background: var(--surface2);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}
.req { color: #dc2626; }
.opt { color: var(--text-muted); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(27,79,140,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.magic-pencil-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(27,79,140,0.2);
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.magic-pencil-btn:hover { background: #dbeafe; }
.magic-status {
  font-size: 0.78rem;
  margin-top: 6px;
  min-height: 18px;
  color: var(--text-muted);
}
.magic-status.error { color: #dc2626; }
.magic-status.success { color: #16a34a; }
.magic-status.loading { color: var(--blue); }
.field-err { font-size: 0.75rem; color: #dc2626; min-height: 16px; }
.cf-turnstile { margin: 12px 0; }
.form-result {
  text-align: center;
  font-size: 0.875rem;
  padding: 10px;
  border-radius: 8px;
  margin-top: 12px;
  min-height: 20px;
}
.form-result.success { background: #dcfce7; color: #15803d; }
.form-result.error   { background: #fee2e2; color: #dc2626; }
.btn-primary.large { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sidebar-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 4px;
}
.sidebar-phone:hover { color: var(--blue-mid); }
.sidebar-email {
  display: block;
  font-size: 0.82rem;
  color: var(--blue);
  text-decoration: none;
  word-break: break-all;
  font-weight: 600;
}
.sidebar-hours {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 6px;
}
.sidebar-chat-note {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.sidebar-insta {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}
.sidebar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 80px 0;
  background: var(--blue);
}
.cta-card {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-card > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark2);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.footer-social a:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(27,79,140,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.chat-toggle:hover { transform: scale(1.07); box-shadow: 0 6px 28px rgba(27,79,140,0.5); }
.chat-toggle-icon { line-height: 1; }
.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-window {
  width: 340px;
  max-height: 520px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
}
.chat-window.open { display: flex; }
.chat-header {
  background: var(--blue);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar-wrap {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-info strong { display: block; color: #fff; font-size: 0.9rem; }
.chat-header-info small { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.online-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
}
.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.chat-close:hover { color: #fff; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface2);
}
.msg { display: flex; align-items: flex-end; gap: 8px; }
.msg.user { flex-direction: row-reverse; }
.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.msg-bubble {
  max-width: 75%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.55;
}
.msg.bot .msg-bubble {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.typing-indicator span {
  width: 6px; height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
.chat-input-area {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.chat-img-label {
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}
.chat-img-label:hover { opacity: 0.8; }
#chatInput {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  background: var(--surface2);
}
#chatInput:focus { border-color: var(--blue-light); background: #fff; }
#chatSend {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
#chatSend:hover { background: var(--blue-mid); transform: scale(1.07); }
.msg-img-bubble { padding: 6px !important; }
.chat-img-preview { max-width: 200px; border-radius: 10px; display: block; }
.chat-img-caption { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; padding: 0 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card,
  .reviews-grid .review-card { grid-column: auto !important; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 16px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .chat-window { width: calc(100vw - 32px); right: 0; }
}
