/* =========================================================
   Luxors Cleaning stylesheet
   Structure/layout mirrors radiantcleaninghouston.com,
   restyled with Luxors Cleaning branding.
   ========================================================= */

:root {
  --blue: #1f5da0;
  --blue-dark: #14406f;
  --ink: #17222b;
  --gray: #5c6b74;
  --gray-light: #f4f6f8;
  --border: #e4e8eb;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow: 0 20px 45px rgba(20, 40, 60, 0.14);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
}

section { padding: 88px 0; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
}

.section-head p {
  color: var(--gray);
  margin-top: 14px;
  font-size: 17px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 93, 160, 0.3);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline.light {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}
.btn-outline.light:hover { background: var(--white); color: var(--blue-dark); }

.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-dark);
  letter-spacing: 0.01em;
}

.logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.footer-logo .logo-img {
  height: 68px;
}

.logo span.tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gray);
  font-weight: 700;
  align-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover { color: var(--blue); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.dropdown a:hover { background: var(--gray-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--gray-light);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang-switch .lang-option {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch .lang-option.active {
  background: var(--blue);
  color: #fff;
}

.lang-switch .lang-option:not(.active):hover {
  color: var(--blue);
}

.nav-phone {
  display: none;
}

.nav-actions > a.btn-primary {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.25s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 0 0 110px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-photo {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.55) 42%, rgba(255,255,255,0.05) 65%);
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-copy-inner {
  max-width: 620px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
}

.hero-copy h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  margin-bottom: 18px;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-copy .lede {
  font-size: 18px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-strip {
  position: relative;
  z-index: 5;
  margin: -60px 24px 0;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-strip .stat {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-strip .stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--blue-dark);
}

.stat-strip .stat span {
  font-size: 13px;
  color: var(--gray);
}

.stat-strip .stat + .stat { border-left: 1px solid var(--border); }

.stars { color: #f2b400; letter-spacing: 1px; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  min-height: 320px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(20,40,60,0.14);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img { transform: scale(1.05); }

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,20,30,0.85) 15%, rgba(10,20,30,0.05) 60%);
}

.service-card .card-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--white);
}

.service-card h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.services-footer {
  margin-top: 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--gray-light);
}

.services-footer h4 { font-size: 18px; margin-bottom: 4px; }
.services-footer p { margin: 0; color: var(--gray); font-size: 14px; }

/* ===== Process (sticky stacking cards) ===== */
.process-stack {
  position: relative;
}

.process-step {
  position: sticky;
  top: 88px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(20,40,60,0.12);
  margin-bottom: 24px;
}

.process-step:nth-child(1) { background: #cfe3f2; z-index: 1; }
.process-step:nth-child(2) { background: #f0d9e6; z-index: 2; }
.process-step:nth-child(3) { background: #dcecc0; z-index: 3; }

.process-step-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 460px;
}

.process-copy { padding: 56px; }

.process-copy .step-index {
  font-weight: 700;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-copy h3 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 14px;
  max-width: 420px;
}

.process-copy p {
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 26px;
  max-width: 420px;
}

.process-photo {
  height: 100%;
  min-height: 460px;
  position: relative;
}

.process-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}

.why-item { text-align: center; }

.why-item .icon-wrap {
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.why-item .icon-wrap svg {
  width: 100%;
  height: 100%;
}

.why-item .icon-wrap.photo {
  border-radius: 50%;
  overflow: hidden;
  background: #eaf2fa;
}

.why-item .icon-wrap.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.why-item h4 {
  font-size: 15.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--blue-dark);
}

.why-item p { color: var(--gray); font-size: 14.5px; margin: 0; }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,20,35,0.85), rgba(10,20,35,0.4));
}

.cta-banner-copy {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 28px;
}

/* ===== Reviews ===== */
.reviews-card {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.reviews-rating { display: flex; align-items: center; gap: 14px; }

.reviews-rating strong {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--blue-dark);
}

.reviews-carousel { position: relative; }

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow: hidden;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}

.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.review-head strong { display: block; font-size: 14.5px; }
.review-head span { font-size: 12px; color: var(--gray); }
.review-card p { font-size: 14px; color: var(--ink); margin: 0; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

.reviews-dots button.active { background: var(--blue); }

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(20,40,60,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.reviews-arrow.prev { left: -21px; }
.reviews-arrow.next { right: -21px; }

.reviews-disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 18px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--blue-dark);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 22px; color: var(--gray); margin: 0; max-width: 640px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }

.contact-single {
  max-width: 560px;
  margin: 0 auto;
}

.contact-single .contact-form-card {
  border: none;
  box-shadow: none;
  padding: 0;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--blue-dark) 0%, #0f2c47 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  isolation: isolate;
}

.contact-info-card::before,
.contact-info-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.contact-info-card::before {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  top: -70px;
  right: -60px;
}

.contact-info-card::after {
  width: 140px;
  height: 140px;
  background: rgba(242, 180, 0, 0.12);
  bottom: -50px;
  left: -40px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.contact-line {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: center;
}

.contact-line .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242, 180, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-line .icon-wrap svg { stroke: #f2c94c; }

.contact-line strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-line span, .contact-line a { font-size: 14px; color: rgba(255,255,255,0.78); }
.contact-line a:hover { color: #f2c94c; }

.contact-note {
  margin-top: 26px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { font-size: 20px; margin-bottom: 6px; }
.form-sub { color: var(--gray); font-size: 13.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--gray-light);
}

.field textarea { resize: vertical; min-height: 100px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  background: var(--white);
}

.form-status { margin-top: 14px; font-size: 14px; color: var(--blue); display: none; }
.form-status.show { display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.85); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo span.tag { color: rgba(255,255,255,0.6); }
.footer-brand p { font-size: 14px; max-width: 280px; color: rgba(255,255,255,0.7); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--blue); }

.site-footer h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; font-family: var(--font-sans); }
.site-footer ul li { margin-bottom: 12px; font-size: 14.5px; }
.site-footer ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.75); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(31,93,160,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
  border: none;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

/* ===== Contact Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.6);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 44px;
  margin: auto;
  box-shadow: 0 30px 70px rgba(10, 20, 30, 0.35);
  animation: modalPop 0.25s ease;
}

@keyframes modalPop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.modal-close:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.modal-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.modal-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 999px;
}

.modal-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 14px;
}

.modal-head p {
  color: var(--gray);
  margin-top: 12px;
}

.modal-drag-handle {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal-box {
    max-width: 100%;
    max-height: 94vh;
    border-radius: 24px;
    padding: 18px 18px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-drag-handle {
    display: block;
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: var(--border);
    margin: 0 auto 12px;
  }
  .modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .modal-head { margin-bottom: 14px; }
  .modal-head .eyebrow { padding: 4px 10px; font-size: 11px; }
  .modal-head h2 { font-size: 20px; margin-top: 8px; }
  .modal-head p { display: none; }
  .contact-info-card { padding: 28px 24px; }
  .contact-info-card h3 { font-size: 19px; margin-bottom: 18px; padding-bottom: 12px; }
  .contact-line { margin-bottom: 16px; }
  .contact-form-card { padding: 0; }
  .contact-form-card .form-row { gap: 10px; }
  .contact-form-card .field { margin-bottom: 10px; }
  .contact-form-card .field label { font-size: 12.5px; margin-bottom: 3px; }
  .contact-form-card .field input,
  .contact-form-card .field select,
  .contact-form-card .field textarea {
    padding: 9px 12px;
    font-size: 14px;
  }
  .contact-form-card .field textarea { min-height: 54px; }
  .contact-form-card .btn-block { padding: 11px 24px; margin-top: 2px; }
  .contact-form-card .form-status { font-size: 12.5px; margin-top: 8px; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { padding-bottom: 60px; }
  .hero-photo { min-height: 360px; }
  .hero-copy-inner { max-width: 100%; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.95) 92%); }
  .hero-copy { position: static; align-items: flex-end; }
  .hero-copy-inner { padding: 0 24px 8px; }
  .stat-strip { margin-top: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-step-inner { grid-template-columns: 1fr; }
  .process-photo { order: -1; min-height: 240px; }
  .process-copy { padding: 36px; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-primary { display: none; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .site-header.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 12px; display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .reviews-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip { flex-direction: column; margin-top: 20px; }
  .stat-strip .stat + .stat { border-left: none; border-top: 1px solid var(--border); padding-top: 14px; }
  .process-copy { padding: 28px; }
  .process-step { top: 72px; }
}
