:root {
    /* Colors */
   --accent: #44B5EE;
   --accent-light: #a2daf6;
   --text: #000000;
   --text-light: #ffffff;
   --bg: #F2F2F2;
   --bg-dark: #E6E6E6;
   --bg-light: #FFFFFF;
   --text-muted: #4D4D4D;

    /* Font */
   --font: 'DM Sans', sans-serif;

   /* Text sizes */
   --fs-h1: 36px;
   --fs-h2: 24px;
   --fs-body: 16px;
   --fs-small: 14px;

   /* Padding */
   --side-padding: 24px;
   --section-padding: 40px;

   /* Flex Direction */
   --flex-direction: column;
} 

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  margin: 0; 
  padding: 0;
}

nav {
  display: flex;
  position: sticky;
  background-color: var(--bg-light);
  align-items: center;
  padding: 20px var(--side-padding);
  width: 100%;
  height: 100px;
  top: 0;
  z-index: 100;
  justify-content: space-between;
  margin: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.nav-links a{
  text-decoration: none;
  color: var(--text);
  font-size: large;
}
.main-logo {
  height: 100%;
}
.main-logo img{
  height: 100%;
}
.desktop-img {
  display: none;
}
.mobile-img {
  display: block;
}
.ctas {
  display: flex;
  gap: 12px;
}

.cta-phone {
  height: auto;
  gap: 8px;
  display: flex;
  background-color: var(--bg-dark);
  align-items: center;
  justify-content: center; 
  padding: 16px 24px; 
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.cta-phone img {
  height: 18px;
}
.cta-form {
  height: auto;
  display: flex;
  background-color: var(--accent);
  align-items: center;
  justify-content: center; 
  padding: 16px 24px; 
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
}
.cta-form-nav {
  display: none;
}
.section-hero {
  display: flex;
  flex-direction: var(--flex-direction);
  margin: 0;
  width: 100%;
  padding: var(--section-padding) var(--side-padding);;
  height: auto;
  background-color: var(--bg);
  align-items: center;
}
.hero-txt {
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: 100%;
  justify-content: center;
  align-items: start;
  gap: 12px;
}
.google-reviews-hero {
  height: 40px;
}
.hero-img {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  justify-content: center;
}
.hero-img img{
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.section-reviews {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  padding: var(--section-padding) var(--side-padding);;
  background-color: var(--bg-dark);
  align-items: center;
  gap: 12px;
}
.review-box {
  background-color: var(--bg-light);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}
.review-info {
  display: flex;
  height: 40px;
  gap: 8px;
}
.review-stars-name {
  height: 40px;
}
.review-stars-name img {
  height: 20px;
}
.review-google-logo {
  height: 40px;
  margin-left: auto;
}
.review-profile-picture {
  height: 40px;
  width: 40px;
}
.section-services {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
    padding: var(--section-padding) var(--side-padding);;
    background-color: var(--bg-light);
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.service-box {
    width: 350px;
    padding: 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-dark);
    gap: 20px;
}
.service-box img {
    width: 100%;
}
.service-box h3 {
    font-size: larger;
}
.service-box p {
    width: 100%;
}
.service-box a {
    margin-top: auto;
}
.section-pricing {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background-color: var(--bg-dark);
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.pricing-box {
  background-color: var(--bg-light);
  display: flex;
  max-width: 100%;
  width: 1000px;
  padding: 32px;
  border-radius: 20px;
  gap: 24px;
}

.pricing-text{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.price {
  color: var(--accent);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}
.disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pricing-column li {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-column li img {
  height: 32px;
  width: 32px;
}
.section-banner-cta {
  background-color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding) var(--side-padding);
  gap: 24px;
}
.section-banner-cta h2{
  color: var(--text-light);
  font-size: xx-large;
}
.banner-cta {
  color: var(--text-light);
  text-decoration: none;
  outline: 4px solid var(--text-light);
  padding: 12px;
  border-radius: 999px;
  font-weight: bold;
}
.section-service-areas {
  width: 100%;
  background: var(--bg-dark);
  padding: var(--section-padding) var(--side-padding);
  display: flex;
  justify-content: center;
}
.sa-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
}
.service-area-box {
  padding: 32px;
  border-radius: 20px;
  background-color: var(--bg-light);
  width: fit-content;
}
.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.sa-item {
  background: var(--bg-light);
  border: 1px solid var(--bg-dark);
  border-radius: 14px;
  overflow: hidden;
}
.sa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
}
.sa-city {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--text);
}
.sa-icon {
  height: 18px;
  width: 18px;
  transition: transform 0.2s ease;
}
.sa-icon.open {
  transform: rotate(180deg);
}
.sa-divider {
  height: 1px;
  background: var(--bg-dark);
  margin: 0 18px;
  transition: opacity 0.2s ease;
  opacity: 0;
} 
.sa-divider.open {
  opacity: 1;
}
.sa-body {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.sa-body.open {
  max-height: 200px;
  padding: 12px 18px 16px;
}
.section-form {
  display: flex;
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background-color: var(--bg);
  align-items: center;
  justify-content: center;
}

.form-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  background-color: var(--bg-light);
  border-radius: 20px;
}

.form-eyebrow {
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 6px;
}

.form-headline {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 4px;
}

.form-subtext {
  font-size: var(--fs-body);
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: 6px;
}

.form-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--bg-dark);
  border-radius: 10px;
  padding: 12px 14px;
}

.form-input-wrap img {
  height: 16px;
  opacity: 0.6;
}
.form-input-wrap input {
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: var(--fs-body);
  width: 100%;
  background: transparent;
}
.form-submit {
  display: flex;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--fs-body);
  margin-top: 8px;
}
.form-submit img{
  height: 20px;
}
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 14px;
}
.form-trust img {
  height: 12px;
}
.section-footer {
  display: flex;
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background-color: var(--text-muted);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-light);
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-light);
}

@media (min-width: 550px) {
  .cta-form-nav {
    display: flex;
  }
}
@media (max-width: 600px) {
  .sa-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 700px) {
    .section-services{
    flex-direction: row;
    align-items: normal;
  }
}
@media (min-width: 900px) {
  .section-hero {
    height: 75vh;
  }
  .section-reviews {
    flex-direction: row;
  }
  .hero-img img{
    height: 100%;
    width: auto;
  }
  .desktop-img {
    display: block;
  }
  .mobile-img {
    display: none;
  }
  .pricing-tiers {
    flex-direction: row;
  }
  :root {
    --side-padding: 48px;
    --flex-direction: row;
  }
}
@media (max-width: 1000px) {
    .nav-links {
        position: relative;
        left: 0%;
        transform: none;
    }
}
@media (max-width: 700px) {
  .nav-links {
        display: none;
    }
}
@media (min-width: 1200px) {
  :root {
    --side-padding: 64px;
  }
}