/* =========================================================
   Four Deserts Cleaning Co. LLC
   Design system + styles
   Font: Geist  |  Brand palette: desert-sky blues + fresh green
   ========================================================= */

:root {
  /* Brand palette */
  --brand: #0e3ee0;         /* primary blue */
  --brand-dark: #0a2fae;
  --sky: #00bfff;           /* accent light blue */
  --green: #54c20a;         /* fresh accent */
  --green-dark: #46a308;

  /* Neutrals (no pure black, no browns/tans) */
  --navy: #0a1a3f;          /* dark sections */
  --navy-2: #0d2350;
  --ink: #0c1a36;           /* headings */
  --body: #47546c;          /* body copy */
  --muted: #6c788f;
  --line: #e6ebf5;
  --bg: #ffffff;
  --bg-soft: #f3f7ff;       /* light blue tint */
  --bg-soft-2: #eaf1ff;
  --star: #ffb703;

  /* Effects */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 4px 16px rgba(12, 26, 54, 0.06);
  --shadow: 0 18px 45px rgba(10, 26, 63, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 26, 63, 0.18);
  --shadow-brand: 0 18px 40px rgba(14, 62, 224, 0.30);

  --container: 1200px;
  --header-h: 84px;

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

section {
  scroll-margin-top: var(--header-h);
}

.svg-icon {
  width: 1.4em;
  height: 1.4em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ------------------------- Layout ------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 64px 0;
}

.bg-soft {
  background: var(--bg-soft);
}

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

.section-head .eyebrow {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--bg-soft-2);
  padding: 7px 14px;
  border-radius: 999px;
}

.eyebrow .svg-icon {
  width: 16px;
  height: 16px;
}

h2.title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 18px 0 14px;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--muted);
}

.highlight {
  color: var(--brand);
}

/* ------------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
    background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn .svg-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #08320a;
  box-shadow: 0 16px 34px rgba(84, 194, 10, 0.28);
}

.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--brand);
}

.btn-lg {
  padding: 17px 32px;
  font-size: 1.06rem;
}

/* ------------------------- Top bar ----------------------- */
.topbar {
  background: var(--navy);
  color: #cdd8f0;
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dfe7fa;
  font-weight: 600;
}

.topbar a:hover {
  color: #fff;
}

.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar .svg-icon {
  width: 16px;
  height: 16px;
  color: var(--sky);
}

.topbar-socials {
  display: flex;
  gap: 14px;
}

/* ------------------------- Header ------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

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

.brand img {
  height: 56px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.nav-links a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.nav-phone .svg-icon {
  color: var(--brand);
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}

.menu-toggle .svg-icon {
  width: 26px;
  height: 26px;
}

/* ------------------------- Mobile drawer ----------------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 44, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 70;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-close {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}

.drawer a.drawer-link {
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer a.drawer-link:hover {
  color: var(--brand);
}

.drawer .btn {
  margin-top: 18px;
}

.drawer-contact {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.drawer-contact a {
  color: var(--brand);
  font-weight: 700;
}

/* ------------------------- Hero -------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(0, 191, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(14, 62, 224, 0.08), transparent 55%),
    var(--bg);
  padding: 74px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 900;
  margin: 20px 0 20px;
  color: var(--ink);
}

.hero-copy p.lead {
  font-size: 1.16rem;
  color: var(--body);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--star);
}

.stars .svg-icon {
  width: 20px;
  height: 20px;
  fill: var(--star);
  stroke: var(--star);
}

.hero-proof .proof-text {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-proof .proof-text strong {
  color: var(--ink);
  display: block;
}

.hero-media {
  position: relative;
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-glow {
  position: absolute;
  inset: -8% -6% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  left: -24px;
  bottom: 34px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 250px;
}

.hero-badge .icon-circle {
  background: rgba(84, 194, 10, 0.14);
  color: var(--green-dark);
}

.hero-badge small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.hero-badge strong {
  color: var(--ink);
  font-size: 1.02rem;
  display: block;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ------------------------- Trust bar --------------------- */
.trustbar {
  background: var(--navy);
  color: #eaf1ff;
  padding: 30px 0;
}

.trustbar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}

.trust-item .svg-icon {
  width: 30px;
  height: 30px;
  color: var(--sky);
}

.trust-item span {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-media .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.service-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-body h3 {
  font-size: 1.24rem;
}

.service-body p {
  color: var(--body);
  font-size: 0.98rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 4px;
}

.service-link .svg-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.service-link:hover .svg-icon {
  transform: translateX(4px);
}

/* ------------------------- About / Why ------------------- */
.why {
  background: var(--navy);
  color: #dbe4fb;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.22), transparent 70%);
  filter: blur(20px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.why .eyebrow {
  background: rgba(0, 191, 255, 0.14);
  color: var(--sky);
}

.why-lead {
  color: #b9c6e8;
  font-size: 1.08rem;
  margin: 16px 0 34px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-feature {
  display: flex;
  gap: 18px;
}

.why-feature .icon-circle {
  background: var(--brand);
  color: #fff;
}

.why-feature h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.why-feature p {
  color: #aebbdc;
  font-size: 0.98rem;
}

.why-media {
  position: relative;
}

.why-media img {
  width: 100%;
  aspect-ratio: 5 / 5.6;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-stat {
  position: absolute;
  right: -18px;
  bottom: 28px;
  background: var(--green);
  color: #08320a;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(84, 194, 10, 0.3);
}

.why-stat strong {
  font-size: 2rem;
  display: block;
  line-height: 1;
  font-weight: 900;
}

.why-stat span {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ------------------------- Process ----------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px 30px;
  position: relative;
  text-align: center;
}

.step .step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--bg-soft-2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
}

.step h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--body);
}

/* ------------------------- Areas ------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.areas-copy .area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 26px 0 30px;
}

.areas-copy .area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}

.areas-copy .area-list .svg-icon {
  color: var(--green-dark);
  width: 20px;
  height: 20px;
}

.areas-media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ------------------------- Testimonials ------------------ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-card .stars .svg-icon {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(14, 62, 224, 0.28);
}

.review-author strong {
  display: block;
  color: var(--ink);
}

.review-author > div span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ------------------------- FAQ --------------------------- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-q .svg-icon {
  width: 22px;
  height: 22px;
  color: var(--brand);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .svg-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--body);
}

/* ------------------------- CTA banner -------------------- */
.cta {
  padding: 80px 0;
}

.cta-inner {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(0, 191, 255, 0.35), transparent 60%),
    linear-gradient(120deg, var(--brand-dark), var(--brand));
  border-radius: var(--radius-xl);
  padding: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-brand);
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 620px;
}

.cta-inner p {
  color: #dbe6ff;
  margin-top: 10px;
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ------------------------- Contact ----------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-info .eyebrow {
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--body);
  margin-bottom: 28px;
  max-width: 440px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method .icon-circle {
  background: var(--bg-soft-2);
  color: var(--brand);
}

.contact-method small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.contact-method a,
.contact-method span.val {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.06rem;
}

.contact-method a:hover {
  color: var(--brand);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contact-socials a {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-soft-2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-socials a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow);
}

.quote-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.quote-card > p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14, 62, 224, 0.12);
}

.quote-card .btn {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: rgba(84, 194, 10, 0.12);
  border: 1px solid rgba(84, 194, 10, 0.4);
  color: var(--green-dark);
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-success.show {
  display: block;
}

/* ------------------------- Footer ------------------------ */
.footer {
  background: #06122e;
  color: #9fb0d4;
  padding: 72px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 60px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a,
.footer-contact li {
  color: #9fb0d4;
  font-size: 0.96rem;
  transition: color 0.15s ease;
}

.footer ul li a:hover {
  color: var(--sky);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}

.footer-contact .svg-icon {
  width: 19px;
  height: 19px;
  color: var(--sky);
  margin-top: 2px;
}

.footer-contact a {
  color: #cdd8f0;
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.footer-bottom .made {
  color: #6f81a8;
}

/* ------------------------- Reveal anim ------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-media {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .areas-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .trustbar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-cta .btn-primary {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 64px 0;
  }
  body {
    font-size: 16px;
  }
  .topbar-left {
    gap: 14px;
    font-size: 0.8rem;
  }
  .topbar .topbar-hours {
    display: none;
  }
  .services-grid,
  .reviews-grid,
  .steps,
  .areas-copy .area-list,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .cta-inner {
    padding: 40px 26px;
    text-align: center;
    justify-content: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 auto;
  }
  .quote-card {
    padding: 26px 22px;
  }
  .hero-badge {
    left: 12px;
    bottom: 12px;
  }
  .why-stat {
    right: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand-text span {
    display: none;
  }
}

/* =========================================================
   Nav dropdown (desktop)
   ========================================================= */
.nav-item {
  position: relative;
}

.nav-item .nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-item .nav-dd-toggle:hover {
  color: var(--brand);
}

.nav-item .nav-dd-toggle .svg-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-dd-toggle .svg-icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 70;
}

/* hover bridge so the menu does not close in the gap */
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}

.nav-dropdown a .dd-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg-soft-2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dropdown a .dd-ic .svg-icon {
  width: 18px;
  height: 18px;
}

.nav-dropdown .dd-all {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 11px 11px;
  color: var(--brand);
  font-weight: 700;
}

/* =========================================================
   Mobile drawer submenu
   ========================================================= */
.drawer-group {
  border-bottom: 1px solid var(--line);
}

.drawer-sub-toggle {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  padding: 15px 6px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.drawer-sub-toggle .svg-icon {
  width: 20px;
  height: 20px;
  color: var(--brand);
  transition: transform 0.25s ease;
}

.drawer-group.open .drawer-sub-toggle .svg-icon {
  transform: rotate(180deg);
}

.drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.drawer-sub a {
  display: block;
  padding: 12px 6px 12px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--body);
}

.drawer-sub a:hover {
  color: var(--brand);
}

/* =========================================================
   Service pages
   ========================================================= */
.svc-hero {
  position: relative;
  background:
    radial-gradient(1100px 460px at 88% -10%, rgba(0, 191, 255, 0.16), transparent 60%),
    radial-gradient(760px 420px at 0% 10%, rgba(14, 62, 224, 0.07), transparent 55%),
    var(--bg);
  padding: 56px 0 76px;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb .sep {
  color: var(--line);
}

.breadcrumb .current {
  color: var(--brand);
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.svc-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 900;
  margin: 16px 0 18px;
}

.svc-hero p.lead {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 540px;
  margin-bottom: 28px;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.svc-hero-media {
  position: relative;
}

.svc-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.svc-hero-media .hero-glow {
  inset: -8% -6% auto auto;
}

/* Included section */
.included-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.included-grid.reverse {
  direction: rtl;
}

.included-grid.reverse > * {
  direction: ltr;
}

.included-copy .eyebrow {
  margin-bottom: 16px;
}

.included-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
}

.included-copy > p {
  color: var(--body);
  margin-bottom: 24px;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}

.checklist .svg-icon {
  width: 21px;
  height: 21px;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.included-media img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/* Benefits */
.svc-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
}

.svc-benefit .icon-circle {
  margin: 0 auto 16px;
  background: var(--bg-soft-2);
  color: var(--brand);
  width: 56px;
  height: 56px;
}

.svc-benefit h4 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.svc-benefit p {
  font-size: 0.96rem;
  color: var(--body);
}

/* Gallery */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Related services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.related-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
}

.related-card .icon-circle {
  width: 42px;
  height: 42px;
  background: var(--bg-soft-2);
  color: var(--brand);
}

.related-card .icon-circle .svg-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .svc-hero-grid,
  .included-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .included-grid.reverse {
    direction: ltr;
  }
  .svc-hero-media,
  .included-media {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
  .svc-benefits,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .svc-gallery,
  .svc-benefits,
  .checklist,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .svc-hero {
    padding: 36px 0 56px;
  }
}
