:root {
  --bg-page: #eef2f7;
  --bg-card: #ffffff;
  --bg-soft: #f9fafb;
  --accent: #0ea5e9;
  --accent-soft: #e0f2fe;
  --accent-deep: #0369a1;
  --text-main: #0f172a;
  --text-soft: #4b5563;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

/* Base reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f9fafb 0, #e5edf7 55%, #e2e8f0 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 16px 26px;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 251, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, #38bdf8 0, #0ea5e9 45%, #0369a1 90%);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.6);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 30% 22%;
  border-radius: 999px;
  border: 2px solid rgba(248, 250, 252, 0.9);
  transform: rotate(-15deg);
}

.brand-text-main {
  font-weight: 650;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  color: var(--text-main);
}

.brand-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.badge-24 {
  padding: 5px 9px;
  border-radius: var(--radius-full);
  background: #e5f3ff;
  border: 1px solid #bfdbfe;
  display: none;
  color: #1f2937;
}

.badge-24 span {
  display: inline-flex;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 6px;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.btn-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid #0ea5e9;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.45);
  white-space: nowrap;
  color: #f9fafb;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-call-now strong {
  font-weight: 650;
  letter-spacing: 0.05em;
}

.btn-call-now small {
  color: #e5f3ff;
  font-size: 0.72rem;
}

.btn-call-now::before {
  content: "📞";
  font-size: 1rem;
}

.btn-call-now:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.55);
}

main {
  flex: 1;
}

/* HERO - light, human */

.hero {
  padding: 34px 0 30px;
  background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 80%, #e5edf7 100%);
}

.hero-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.eyebrow-light {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text-main);
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 34rem;
  margin-bottom: 16px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.55);
}

.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-soft);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-secondary:hover,
.btn-outline:hover {
  text-decoration: none;
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.btn-text {
  border-color: var(--accent-soft);
  color: var(--accent-deep);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.btn-text:hover {
  background: #f1f5f9;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  color: #1f2937;
  font-size: 0.78rem;
}

/* Hero image with polygon mask */

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #e5e7eb;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

.hero-caption {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-caption strong {
  display: block;
  margin-bottom: 2px;
}

/* Sections */

section {
  padding: 28px 0;
}

#services,
#service-area,
#contact {
  background: #f3f4f6;
}

#process,
#why,
#about-owner {
  background: #f9fafb;
}

.section-header {
  margin-bottom: 14px;
}

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--text-main);
  font-weight: 650;
}

.section-sub {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 40rem;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid-2 {
  /* columns at md+ */
}

/* Testimonials */
.testimonials-grid {
  gap: 14px;
}

.testimonial-card {
  padding-top: 14px;
  padding-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.86rem;
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: 6px;
}

.testimonial-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  overflow: hidden;
}

.faq-item-header {
  width: 100%;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.84rem;
  color: var(--text-main);
  cursor: pointer;
}

.faq-item-header span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 10px;
  transition: transform 0.15s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 0.8rem;
  color: var(--text-soft);
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-body p {
  margin-top: 4px;
  margin-bottom: 8px;
}

.faq-item.open .faq-body {
  max-height: 200px; /* enough for a couple of lines */
  padding-bottom: 8px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg); /* + turns into × */
}


/* Cards */

.card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  border-color: rgba(148, 163, 184, 0.8);
}

.card h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 600;
}

.card p {
  font-size: 0.84rem;
  color: var(--text-soft);
}

/*google*/

.google-badge {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.google-g {
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  color: transparent;
}

.google-stars {
  color: #facc15;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.google-label {
  white-space: nowrap;
}


/* Pills */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pill-small {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  color: var(--text-muted);
}

/* Thermal imaging feature */

.thermal-card {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  align-items: center;
}

.thermal-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.thermal-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* On larger screens, put text + image side by side */
@media (min-width: 768px) {
  .thermal-card {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }
}


/* Process steps */

.process-steps {
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--accent-deep);
  margin-top: 3px;
  background: #ffffff;
  font-weight: 600;
}

.step h3 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: var(--text-main);
}

.step p {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Lists */

.list {
  list-style: none;
  padding-left: 0;
  font-size: 0.82rem;
}

.list li {
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
  color: var(--text-soft);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.highlight {
  color: var(--accent);
  font-weight: 500;
}

/* Service area map */

.service-area-map-card {
  margin-top: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.service-area-map {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.service-area-map img {
  display: block;
  width: 100%;
  height: auto;
}

/* Owner section */

#about-owner {
  /* background set above in section group */
}

.owner-card {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  margin-top: 8px;
}

.owner-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #e0f2fe;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  position: relative;
}

.owner-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.owner-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#about-owner h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text-main);
  font-weight: 650;
}

#about-owner p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 12px;
}

form {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
}

label {
  display: block;
  margin-bottom: 2px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

input,
textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.84rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.7);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.hint {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Footer */

.footer {
  border-top: 1px solid var(--border-soft);
  padding: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: #f9fafb;
}

.footer-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* Mobile sticky call bar */

.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  box-shadow: 0 -6px 16px rgba(15, 23, 42, 0.35);
  display: none;
}

.mobile-call-bar a {
  display: block;
  text-align: center;
  padding: 11px 16px;
  color: #f9fafb;
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
}

/* Slightly more breathing room + soft separators between sections */
section {
  padding: 28px 0 30px;
}

.hero {
  padding-top: 30px;
  padding-bottom: 26px;
}

/* Light divider line between sections (but not right after hero) */
section + section {
  border-top: 1px solid var(--border-soft);
}

.hero + section {
  border-top: none;
}

/* Bottom CTA band */
.bottom-cta {
  background: #0f172a;
  color: #e5e7eb;
  padding: 26px 0 30px;
  margin-top: 8px;
}

.bottom-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.bottom-cta-inner h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.bottom-cta-inner p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.bottom-cta-inner a {
  text-decoration: none;
}

.bottom-cta-inner a:hover {
  text-decoration: underline;
}

.bottom-cta-btn {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}


/* Responsive */

@media (min-width: 640px) {
  .shell {
    padding: 20px 20px 30px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .badge-24 {
    display: inline-flex;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .owner-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 24px 22px;
  }
}

/* Show sticky call bar only on small screens */
@media (max-width: 767px) {
  .mobile-call-bar {
    display: block;
  }

  body {
    padding-bottom: 56px; /* prevent content from hiding behind call bar */
  }

  /* On very small screens, keep hero image rectangular for safer cropping */
  .hero-image img {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
