*{
    margin: 0;
    padding: 0;
    border-radius: border-box;
}


/* ── REVIEWS SLIDER ── */
.reviews-section { background: var(--white); }
.rv-slider-wrap { position: relative; overflow: hidden; }
.rv-track { display: flex; transition: transform 0.45s ease; }
.rv-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  box-sizing: border-box;
}
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
}
.review-stars { font-size: 16px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review-meta { font-size: 12px; color: var(--text3); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 32px;
}
.rv-bottom { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; }
.rv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  padding: 0; transition: background .3s, transform .2s;
}
.rv-dot.active { background: var(--blue); transform: scale(1.3); }
.rv-arr {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; width: 34px; height: 34px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: 17px; transition: background .2s;
}
.rv-arr:hover { background: var(--bg); }

@media (max-width: 768px) {
  .rv-slide { grid-template-columns: 1fr; }
}


/* testimonial */
/* form */
/* ===== FORM STYLES ===== */
.hero-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.hero-form-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  background: #f9fafb;
  color: #111827;
  outline: none;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.error-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.btn-form-submit:hover {
  background: #1ebe5c;
}

.form-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 12px;
}

/* ===== POPUP STYLES ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.overlay.active {
  display: flex;
}

.popup-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  max-width: 340px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
  line-height: 1;
}

.popup-close:hover {
  color: #374151;
}

.popup-icon {
  width: 64px;
  height: 64px;
  background: #e8f8ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.popup-msg {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.popup-name {
  font-weight: 600;
  color: #111827;
}

.popup-btn {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-btn:hover {
  background: #1ebe5c;
}