/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.6;
}

/* Logo */
.logo img,
.logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

/* Containers & layout */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #ffffff;
}

.section-muted {
  background-color: #f3f4f6;
}

.section-dark {
  background-color: #111827;
  color: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 600px;
  margin: 0.25rem auto 0;
  color: #4b5563;
}

.section-dark .section-header p {
  color: #d1d5db;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #f59e0b;
  color: #111827;
  padding: 0.5rem 1rem;
  z-index: 50;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  gap: 1.5rem;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-main {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.logo-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #f97316;
}

.nav-cta {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #fbbf24;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.phone-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover,
.phone-link:focus-visible {
  text-decoration: underline;
}

.header-badge {
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-bar {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  color: #f9fafb;
  min-height: 60vh;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 24, 39, 0.9),
    rgba(17, 24, 39, 0.6),
    rgba(17, 24, 39, 0.2)
  );
  z-index: -1;
}

.hero-content {
  padding: 4.5rem 0 4rem;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 510px;
  color: #e5e7eb;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: #fbbf24;
  color: #111827;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f59e0b;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #f59e0b;
  border-color: #f59e0b;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #d3d3d3;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #f9fafb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.service-body h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.service-body p {
  margin: 0;
  font-size: 0.93rem;
  color: #4b5563;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Before & After */
.before-after-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.before-after-text {
  max-width: 540px;
}

.before-after-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.before-after-image img {
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.section-dark .checklist li {
  color: #e5e7eb;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.checklist li::before {
  content: "•";
  margin-right: 0.4rem;
}

/* About */
.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 360px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.about-text p {
  color: #4b5563;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.3rem;
}

.about-list li::before {
  content: "✔";
  margin-right: 0.4rem;
  color: #f59e0b;
}

/* Steps */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps-list li {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem 1.2rem;
  border: 1px solid #e5e7eb;
}

.steps-list h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.steps-list p {
  margin: 0;
  font-size: 0.93rem;
  color: #4b5563;
}

/* Areas */
.areas-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0.75rem;
  display: grid;
  gap: 0.25rem;
}

.areas-side img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 300px;
}

.areas-note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Reviews */
.reviews-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.reviews-text p {
  color: #e5e7eb;
}

.review-snippet {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.review-quote {
  margin-top: 0;
  font-style: italic;
}

.review-author {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.reviews-badge {
  text-align: center;
  border-radius: 0.75rem;
  padding: 1.2rem;
  border: 1px solid #4b5563;
  background: rgba(15, 23, 42, 0.8);
}

.stars {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  font: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

.faq-icon {
  margin-left: 1rem;
  font-weight: 700;
}

.faq-answer {
  padding: 0 1rem 0.9rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: #4b5563;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.contact-text p {
  color: #4b5563;
}

.contact-options {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.3rem;
}

.contact-options a {
  color: #111827;
}

.contact-form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.form-row input,
.form-row textarea {
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.6rem;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.1rem;
  margin-bottom: 0.9rem;
}

.form-success-message {
  font-size: 0.9rem;
  color: #065f46;
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.footer-brand {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: #e5e7eb;
}

.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .main-nav.open {
    max-height: 260px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.5rem 1.2rem 1rem;
  }

  .main-nav a {
    color: #111827;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-content {
    padding: 3.5rem 0 3rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .before-after-layout,
  .about-layout,
  .areas-grid,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .areas-side img,
  .about-image img {
    max-height: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    display: none;
  }
}
