/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #f3f3f3;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero .btn-call {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  font-size: 1.05rem;
  padding: 12px 24px;
}

.hero .btn-wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: 999px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .hero {
    height: 80vh;
    padding-inline: 16px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* --- WHY US SECTION --- */
.why-us {
  text-align: center;
  padding-block: 80px;
}

.why-us h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-us .why-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.why-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.why-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* responsive tweaks */
@media (max-width: 600px) {
  .why-us {
    padding-block: 60px;
  }
  .why-card img {
    width: 42px;
    height: 42px;
  }
}

/* --- SERVICE AREAS --- */
.service-areas {
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-block: 80px;
}

.service-areas h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.areas-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin-inline: auto;
}

.areas-map img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  display: grid;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.areas-note {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 700px) {
  .areas-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .areas-list {
    text-align: center;
  }
}

/* --- REVIEWS SECTION --- */
.reviews {
  background: var(--white);
  text-align: center;
  padding-block: 80px;
  border-top: 1px solid var(--border);
}

.reviews h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.reviews-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: right;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f4b400; /* Google star yellow */
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 12px;
}

.review-author {
  font-weight: 700;
  color: var(--muted);
}

/* CTA button at bottom */
.see-more {
  margin-top: 24px;
  padding: 12px 28px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .reviews-grid {
    gap: 16px;
  }
  .review-card {
    padding: 20px;
  }
}

/* --- GUARANTEE SECTION --- */
.guarantee {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-block: 80px;
}

.guarantee h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.guarantee-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.guarantee-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.guarantee-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.guarantee-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.guarantee-item p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
  .guarantee {
    padding-block: 60px;
  }
  .guarantee-item img {
    width: 42px;
    height: 42px;
  }
}
