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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
}

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

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

/* NAVBAR */
.top-bar {
  background: #fff;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

/* pill-style nav links */
.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link.active {
  background: #8b0000;
  color: #fff;
}

.nav-link:hover {
  background: rgba(139, 0, 0, 0.08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 22px;
  height: 2px;
  background: #000;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-BG.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-subtext {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 900px;
}

/* Move hero button down a lot */
.hero-btn {
  margin-top: 120px !important;
}

.btn-primary {
  background: #000;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: transparent;
  border-color: #fff;
}

/* WELCOME SECTION */
.section-welcome {
  padding: 4rem 0;
}

.welcome-inner {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.welcome-image,
.welcome-content {
  flex: 1;
}

.welcome-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-content h2 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.welcome-content p {
  line-height: 1.6;
  margin: 0 0 0.9rem;
}

/* SERVICES */
.section-services {
  padding: 4rem 0;
  text-align: center;
}

.section-services h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-image {
  border-radius: 18px 18px 0 0;
  width: 100%;
  height: auto;
}

.service-body {
  padding: 1.2rem 1.3rem 1.4rem;
  flex: 1;
  text-align: left;
}

.service-body h3 {
  margin: 0 0 0.6rem;
}

.service-body p {
  margin: 0;
  line-height: 1.5;
}

/* REVIEWS */
.section-reviews {
  padding: 4rem 0;
  background: #fafafa;
}

.reviews-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reviews-header {
  text-align: center;
}

.reviews-header h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.reviews-header p {
  margin: 0;
  line-height: 1.5;
}

/* summary row (rating card + tag card) */
.reviews-summary-row {
  display: flex;
  gap: 1.75rem;
  align-items: stretch;
}

.rating-summary-card,
.rating-tags-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 1.6rem 1.8rem;
}

/* rating summary card */
.rating-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f9d58;
}

.rating-score-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.rating-score {
  font-size: 2.4rem;
  font-weight: 600;
}

.rating-stars {
  font-size: 1.2rem;
  color: #ff9900;
}

.rating-count {
  margin: 0.4rem 0 0.6rem;
  font-size: 0.95rem;
  color: #555;
}

.rating-bar {
  height: 7px;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.rating-bar-fill {
  width: 100%;
  height: 100%;
  background: #0f9d58;
}

.rating-note {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  color: #555;
}

/* trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-badge {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #333;
}

/* keyword tags card */
.rating-tags-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.rating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e5ea;
  color: #333;
}

/* manual testimonial cards + widget grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.6rem;
}

.review-text {
  margin: 0 0 0.9rem;
  line-height: 1.6;
}

.review-name {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
}

/* Thumbtack widget styled as a matching card */
.thumbtack-widget {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 1.6rem 1.8rem;
  width: 100%;
  height: 100%;
}

.thumbtack-widget .widget {
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Fix Thumbtack stars showing vertically */
.thumbtack-widget .tt-stars {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 4px !important;
}

.thumbtack-widget .tt-stars img {
  width: 18px !important;
  height: 18px !important;
  display: inline-block !important;
}

.thumbtack-widget .tt-stars span {
  margin-left: 6px !important;
  font-size: 0.85rem !important;
  color: #555 !important;
}

.thumbtack-widget p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.thumbtack-widget a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

/* CONSULT BAR */
.consult-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.consult-text {
  font-size: 1.6rem;
  margin: 0;
}

.consult-phone {
  font-size: 1.4rem;
  margin: 0.4rem 0 0;
}

/* CONTACT SECTION */
.section-contact {
  padding: 4rem 0;
}

.contact-flex {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.contact-left {
  flex: 1;
  background: #630809;
  color: #fff;
  border-radius: 30px;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right {
  flex: 1;
  background: #e4eaf0;
  border-radius: 30px;
  padding: 2.5rem;
}

.contact-right h3 {
  margin-top: 0;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-right label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.contact-right input,
.contact-right textarea {
  border-radius: 12px;
  border: 1px solid #c7c7c7;
  padding: 0.6rem;
  font-size: 1rem;
}

/* Contact form button: black with dark gray hover */
.btn-submit {
  margin-top: 0.5rem;
  padding: 0.9rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #333;
}

.form-status {
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.contact-icons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-icons img {
  width: 52px;
  height: 52px;
}

/* SERVICE AREAS SECTION */
.section-areas {
  padding: 3rem 0;
  background: #d3d2d2;
  text-align: center;
}

.section-areas h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.section-areas p {
  margin: 0;
  line-height: 1.5;
}

/* FOOTER */
.site-footer {
  background: #fafafa;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-nap {
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  color: #000;
}

.footer-phone {
  color: #000;
  text-decoration: none;
}

.footer-phone:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle-label {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 0.75rem 1rem;
  }

  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    display: flex;
  }

  .welcome-inner,
  .contact-flex {
    flex-direction: column;
  }

  .welcome-image img {
    height: auto;
  }

  .hero {
    height: 70vh;
  }

  .reviews-summary-row {
    flex-direction: column;
  }
}

