* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #f5f5f5;
}

/* Layout helpers */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* HEADER */
.site-header {
  background: #111827;
  color: #f9fafb;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1f2933;
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}



/* LEFT */
.header-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-img {
  max-width: 160px;
  height: auto;
}

.service-area {
  font-size: 0.95rem;
  color: #d1d5db;
}

/* CENTER: this is what centers the menus */
.header-center {
  display: flex;
}


.header-center .main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* RIGHT: CTA + phone stacked */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.header-cta {
  font-size: 0.95rem;
}

.header-phone-text {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.header-phone-text a {
  color: #f9fafb;
  text-decoration: none;
  font-weight: 600;
}

.header-phone-text a:hover {
  text-decoration: underline;
}


/* Mobile tweak so it doesn’t get cramped */
@media (max-width: 640px) {
  .header-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .header-left {
    align-items: flex-start;
  }

@media (max-width: 640px) {
  .header-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  /* KEY FIX */
  .header-center {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
  }

  .header-center .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .header-right {
    align-items: flex-start;
    width: 100%;
  }

  .header-actions {
    align-items: flex-start;
  }
}


  .header-cta {
    width: 100%;
    text-align: left;
  }

  .logo-img {
    max-width: 140px;
  }
}


/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  background: #2563eb;
  color: #f9fafb;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary:hover {
  filter: brightness(0.9);
}

/* Sections */

.section {
  padding: 2.5rem 0;
  background: #f5f5f5;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.section-intro {
  margin-bottom: 1.5rem;
  color: #4b5563;
  max-width: 38rem;
}

/* Google Reviews */

.reviews-widget {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
}

.reviews-placeholder {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Dropdowns */

/* Row that holds menus side by side (if used in sections) */
.dropdown-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Each menu is its own hover area */
.menu {
  position: relative;
  display: inline-block;
}

/* The visible pill button (styled for dark header) */
.menu-button {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #959eb1;
  color: #e5e7eb;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}

.menu-button:hover {
  background: #1f2937;
}

/* The dropdown panel (hidden by default) */
.menu-dropdown {
  position: absolute;
  top: 100%;          /* directly below the button */
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  padding: 0.4rem 0;
  display: none;
  z-index: 10;
}

/* SHOW dropdown when hovering over this menu OR when focused */
.menu:hover .menu-dropdown,
.menu:focus-within .menu-dropdown {
  display: block;
}

/* Links inside dropdown (clickable) */
.menu-dropdown a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.92rem;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.menu-dropdown a:hover {
  background: #f3f4f6;
}

/* Grid for services */
.grid {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Two cards side by side for call/text + email */
.contact-options {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.7rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

@media (max-width: 640px) {
  .contact-options {
    grid-template-columns: 1fr; /* forces 1 column on phones */
  }

  .contact-card {
    padding: 1.25rem;
  }
}


.contact-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-card-body a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.contact-card-body a:hover {
  text-decoration: underline;
}

.contact-card-note {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Footer */
.footer-email,
.footer-phone {
  color: #9ca3af;
  text-decoration: none;
}

.footer-email:hover,
.footer-phone:hover {
  text-decoration: underline;
}


img {
  max-width: 100%;
  height: auto;
}




