/* ============================================================
   CJR Progressive Home Repair — Fishing Lure Demo
   MindMade Media
   ============================================================ */

:root {
  --dark:        #101410;
  --charcoal:    #171c17;
  --card-dark:   #1e261e;
  --green:       #76b82a;
  --green-dark:  #5a8e1f;
  --green-light: #9bd33a;
  --white:       #ffffff;
  --off-white:   #f7f9f4;
  --light-gray:  #f0f2ed;
  --border:      #d8dbd4;
  --text-gray:   #6b736b;
  --text-dark:   #1a1f1a;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 0.97rem; line-height: 1.75; }

.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.section-title  { margin-bottom: 1rem; }
.section-sub    { color: var(--text-gray); max-width: 600px; }
.green          { color: var(--green); }
.white          { color: var(--white) !important; }

.container  { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section     { padding: 84px 0; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.3px;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg          { padding: 16px 34px; font-size: 1rem; }
.btn-primary     { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(118,184,42,.35); }
.btn-outline     { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--text-dark); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: var(--text-dark); }
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: #121812;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 70px; }
.logo         { display: flex; align-items: center; flex-shrink: 0; }
.logo svg     { height: 50px; width: auto; }
.logo-img     { height: 52px; width: auto; display: block; border-radius: 6px; }

#main-nav { flex: 1; }
#main-nav ul { display: flex; align-items: center; gap: 0; }
#main-nav a {
  font-size: 0.79rem; font-weight: 600; color: #b8c8b8;
  padding: 6px 9px; border-radius: 4px;
  letter-spacing: 0.2px; transition: color var(--transition);
  text-transform: uppercase;
}
#main-nav a:hover, #main-nav a.active { color: var(--green); }

.header-cta   { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { color: #b8c8b8; font-size: 0.87rem; font-weight: 600; transition: color var(--transition); }
.header-phone:hover { color: var(--green); }
.header-cta .btn-primary { padding: 9px 18px; font-size: 0.8rem; }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

.mobile-nav {
  display: none; background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 24px 24px;
}
.mobile-nav.open     { display: block; }
.mobile-nav ul       { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a        { display: block; padding: 10px 12px; color: #b8c8b8; font-weight: 600; font-size: 0.95rem; border-radius: 6px; transition: background var(--transition); }
.mobile-nav a:hover  { background: rgba(118,184,42,0.1); color: var(--green); }
.mobile-nav .btn-primary { margin-top: 12px; text-align: center; display: block; }

/* ============================================================
   HERO — full-bleed split layout
   ============================================================ */
#home      { padding: 0; }
.hero-wrapper {
  display: grid; grid-template-columns: 55fr 45fr;
  min-height: 660px; overflow: hidden;
}

/* Left: text side */
.hero-left {
  background: var(--off-white);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 80px 60px 80px 28px;
}
.hero-text-content { max-width: 520px; width: 100%; }
.hero-eyebrow {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.hero-text-content h1  { margin-bottom: 18px; }
.hero-subtitle {
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: 0.2px;
}
.hero-desc    { color: var(--text-gray); margin-bottom: 32px; font-size: 0.95rem; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* 4-item horizontal trust row — matches reference exactly */
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
  font-size: 0.72rem; font-weight: 600; color: var(--text-dark);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 8px;
}
.trust-icon {
  width: 32px; height: 32px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--white); flex-shrink: 0;
}

/* Right: house photo — full bleed */
.hero-right {
  position: relative; overflow: hidden; min-height: 600px;
  /* Fallback gradient shown when image fails to load */
  background: linear-gradient(150deg, #4a6a4a 0%, #2d4228 45%, #1a2c18 100%);
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #f7f9f4 0%, rgba(247,249,244,0.6) 20%, transparent 50%);
  pointer-events: none; z-index: 1;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--charcoal); }
#services .section-label { color: var(--green-light); }
#services .section-title { color: var(--white); }
#services .section-sub   { color: #8a9e8a; }
.section-header { margin-bottom: 48px; }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.service-card {
  background: var(--card-dark); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 26px 20px;
  transition: all var(--transition); display: flex; flex-direction: column; gap: 10px;
}
.service-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.service-icon {
  width: 52px; height: 52px; background: rgba(118,184,42,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3  { font-size: 0.97rem; color: var(--white); }
.service-card p   { font-size: 0.85rem; color: #8a9e8a; flex: 1; }
.card-link {
  font-size: 0.82rem; font-weight: 700; color: var(--green);
  display: flex; align-items: center; gap: 5px; margin-top: 4px;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 9px; }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--off-white); color: var(--text-dark); position: relative; overflow: hidden;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative;
}
.about-text .section-label { color: var(--green); }
.about-text h2  { color: var(--text-dark); margin-bottom: 18px; }
.about-text > p { color: var(--text-gray); margin-bottom: 14px; font-size: 0.93rem; }

.about-trust { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.trust-bullet { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dark); }
.trust-bullet-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(118,184,42,0.15); border: 2px solid var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.trust-bullet-dot::after { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

/* About stats — 4-box horizontal row inside text column */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.stat-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 10px; text-align: center;
  box-shadow: var(--shadow); transition: border-color var(--transition);
}
.stat-box:hover { border-color: var(--green); }
.stat-number { font-size: 1.9rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label  { font-size: 0.68rem; color: var(--text-gray); margin-top: 5px; line-height: 1.3; }

/* About photo — right column */
.about-img-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.15);
  aspect-ratio: 4/3; position: relative;
  background: var(--light-gray);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(118,184,42,0.15); border-radius: 14px; pointer-events: none;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--charcoal); }
#process .section-label { color: var(--green-light); }
#process h2 { color: var(--white); }
#process .section-sub { color: #8a9e8a; }
.process-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; position: relative; margin-top: 52px;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: calc(10% + 30px); right: calc(10% + 30px);
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--green-light), var(--green));
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 10px; position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: var(--white);
  margin-bottom: 18px; box-shadow: 0 4px 16px rgba(118,184,42,.35); flex-shrink: 0;
}
.step h3 { font-size: 0.92rem; margin-bottom: 7px; color: var(--white); }
.step p  { font-size: 0.8rem; color: #8a9e8a; }

/* ============================================================
   BEFORE/AFTER SLIDERS
   ============================================================ */
#projects { background: var(--white); color: var(--text-dark); }
#projects .section-label { color: var(--green); }
#projects h2 { color: var(--text-dark); }
#projects > .container > p { color: var(--text-gray); }

.ba-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 40px;
}
.ba-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 3/4;
  cursor: ew-resize; user-select: none; background: var(--card-dark);
  touch-action: pan-y;
}
.ba-after, .ba-before {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.ba-before { clip-path: inset(0 50% 0 0); }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 10; pointer-events: none; width: 44px;
}
.ba-line { flex: 1; width: 2px; background: rgba(255,255,255,0.9); }
.ba-btn {
  width: 42px; height: 42px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.5); flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.85); cursor: ew-resize;
}
.ba-tag {
  position: absolute; top: 12px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 3px; pointer-events: none; z-index: 5;
}
.ba-tag-b { left: 12px; background: rgba(0,0,0,0.55); color: #fff; }
.ba-tag-a { right: 12px; background: var(--green); color: #fff; }
.ba-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  padding: 42px 16px 14px; pointer-events: none; z-index: 5;
}
.ba-info h4 { font-size: 0.92rem; color: #fff; font-weight: 700; }
.ba-info p  { font-size: 0.74rem; color: rgba(255,255,255,0.62); }

/* ============================================================
   REVIEWS — 2 cards matching reference
   ============================================================ */
#reviews { background: var(--off-white); color: var(--text-dark); }
#reviews .section-label { color: var(--green); }
#reviews h2              { color: var(--text-dark); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 44px;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(118,184,42,.12); }
.review-stars       { color: var(--green); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text        { font-size: 0.91rem; color: var(--text-gray); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.review-author      { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; background: rgba(118,184,42,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green); font-weight: 700;
}
.review-name        { font-size: 0.87rem; font-weight: 700; color: var(--text-dark); }
.review-location    { font-size: 0.77rem; color: var(--text-gray); }
.review-placeholder-note {
  text-align: center; color: rgba(118,184,42,.5);
  font-size: 0.74rem; font-style: italic; margin-top: 24px;
}

/* ============================================================
   SERVICE AREA + FAQ
   ============================================================ */
#service-area  { background: var(--off-white); padding: 84px 0; }
.area-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.area-map-block h2    { margin-bottom: 14px; }
.area-desc            { color: var(--text-gray); margin-bottom: 22px; font-size: 0.93rem; }
.area-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin-bottom: 22px;
}
.area-item  { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; }
.area-dot   { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.area-seo-copy { font-size: 0.86rem; color: var(--text-gray); line-height: 1.75; }
.map-placeholder {
  background: var(--light-gray); border: 1px solid var(--border);
  border-radius: var(--radius); height: 200px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: var(--text-gray); font-size: 0.8rem;
  margin-bottom: 22px; text-align: center; padding: 20px;
}

/* FAQ */
#faq h2      { margin-bottom: 24px; }
.faq-list    { display: flex; flex-direction: column; gap: 9px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 15px 18px; text-align: left;
  font-size: 0.9rem; font-weight: 700; color: var(--text-dark);
  background: none; transition: color var(--transition);
}
.faq-item.open .faq-q { color: var(--green); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a       { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 18px 14px; font-size: 0.86rem; color: var(--text-gray); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact                { background: var(--charcoal); color: var(--white); }
#contact .section-label { color: var(--green-light); }
#contact h2             { color: var(--white); margin-bottom: 8px; }
#contact .section-sub   { color: #8a9e8a; margin-bottom: 44px; }

.contact-inner { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.contact-form  { display: flex; flex-direction: column; gap: 14px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field    { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: #b8c4b8; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 6px; padding: 11px 13px;
  color: var(--white); font-size: 0.9rem; font-family: inherit;
  transition: border-color var(--transition); width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.28); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--green); }
.form-field select option  { background: var(--charcoal); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.photo-upload-label {
  display: flex; align-items: center; gap: 10px;
  border: 2px dashed rgba(255,255,255,.14); border-radius: 6px;
  padding: 13px 15px; font-size: 0.83rem; color: #8a9e8a; cursor: pointer;
  transition: border-color var(--transition);
}
.photo-upload-label:hover  { border-color: var(--green); color: var(--green-light); }
.photo-upload-label input  { display: none; }
.contact-form .btn-primary { align-self: flex-start; padding: 15px 32px; font-size: 0.97rem; }

.contact-info-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 22px;
  position: sticky; top: 88px;
}
.contact-logo svg       { height: 50px; }
.contact-logo-img       { height: 56px; width: auto; display: block; border-radius: 6px; }
.contact-tagline        { font-size: 0.8rem; color: #8a9e8a; line-height: 1.55; }
.contact-detail         { display: flex; align-items: flex-start; gap: 12px; }
.contact-detail-icon {
  width: 34px; height: 34px; background: rgba(118,184,42,.14);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg  { width: 17px; height: 17px; }
.contact-detail-label     { font-size: 0.73rem; color: var(--text-gray); margin-bottom: 2px; }
.contact-detail-val       { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.contact-detail-val a     { color: var(--green-light); }
.contact-detail-val a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); color: #8a9e8a; padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,.04); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px; padding-bottom: 44px;
}
.footer-brand svg { height: 46px; margin-bottom: 12px; }
.footer-logo-img  { height: 48px; width: auto; display: block; border-radius: 6px; margin-bottom: 14px; }
.footer-brand p   { font-size: 0.83rem; line-height: 1.65; max-width: 255px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 0.83rem; transition: color var(--transition); }
.footer-col li a:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; margin-bottom: 8px; }
.footer-contact-item a { color: #8a9e8a; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green); }
.footer-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; font-size: 0.77rem;
}
.footer-bottom a { color: #8a9e8a; }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid       { grid-template-columns: repeat(3,1fr); }
  .ba-grid             { grid-template-columns: repeat(2, 1fr); }
  .process-steps       { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-stats         { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  #main-nav, .header-cta .btn-primary { display: none; }
  .mobile-menu-toggle  { display: flex; margin-left: auto; }

  .hero-wrapper        { grid-template-columns: 1fr; }
  .hero-left           { padding: 56px 28px; justify-content: flex-start; }
  .hero-right          { min-height: 300px; }
  .trust-row           { grid-template-columns: repeat(2,1fr); }

  .about-inner         { grid-template-columns: 1fr; gap: 36px; }
  .area-faq-grid       { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner       { grid-template-columns: 1fr; }
  .contact-info-card   { position: static; }
  .reviews-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  section              { padding: 56px 0; }
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .ba-grid             { grid-template-columns: 1fr; }
  .about-stats         { grid-template-columns: repeat(2,1fr); }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
  .process-steps       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .gallery-grid        { grid-template-columns: 1fr; }
  .services-grid       { grid-template-columns: 1fr; }
  .trust-row           { grid-template-columns: repeat(2,1fr); }
}
