body {
  color: #222;
}
.min-h-screen { min-height: 100vh; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }

.hero-section {
  padding: 5rem 0 3rem 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #fff 100%);
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.stats-section {
  padding: 4rem 0 2rem 0;
  background: #fff;
}
.stats-card {
  background: #f1f5f9;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.stat-block {
  text-align: center;
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.stat-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: #64748b;
  font-size: 1.1rem;
}

.section-title{
  color: #2563eb;
}

.testimonials-section {
  padding: 4rem 0;
  background: #f8fafc;
}
.testimonials-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(37,99,235,0.10);
}
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.testimonial-avatar {
  background: #e0f2fe;
  color: #2563eb;
  border-radius: 50%;
  padding: 0.75rem;
  margin-right: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.2rem;
}
.testimonial-service {
  color: #2563eb;
  font-size: 0.98rem;
}
.testimonial-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}
.testimonial-rating .fa-star {
  color: #facc15;
  margin-right: 0.15rem;
  font-size: 1.1rem;
}
.testimonial-comment {
  color: #334155;
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-date {
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.testimonial-date .fa-calendar-alt {
  color: #2563eb;
}

.reviewform-section {
  padding: 4rem 0;
  background: #fff;
}
.reviewform-card {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  max-width: 700px;
  margin: 0 auto;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #bae6fd;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.star-rating .fa-star {
  color: #facc15;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
}
.star-rating .fa-star.inactive {
  color: #d1d5db;
}
.star-label {
  color: #64748b;
  font-size: 1rem;
  margin-left: 0.5rem;
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-submit {
  background: #2563eb;
  color: #fff;
}
.btn-submit:hover {
  background: #0f172a;
}
.form-note {
  color: #64748b;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.5rem;
}

.cta-section {
  padding: 4rem 0;
  background: #2563eb;
  color: #fff;
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.btn-whatsapp {
  background: #22c55e;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #16a34a;
}
.btn-contact {
  background: #fff;
  color: #2563eb;
  border: 1px solid #2563eb;
}
.btn-contact:hover {
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .stats-grid, .testimonials-grid, .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .reviewform-card {
    padding: 2rem 1rem;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title, .cta-title {
    font-size: 1.3rem;
  }
  .reviewform-card {
    padding: 1rem 0.5rem;
  }
  .cta-section {
    padding: 2rem 0;
  }
  .testimonials-section, .stats-section, .reviewform-section {
    padding: 2rem 0;
  }
}
