/* About Section */
.about {
  background: #fff;
  padding: 3rem 0;
  text-align: center;
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.about p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.about .btn {
  background-color: rgba(243, 156, 18, 0.9);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.3);
}
.about .btn:hover {
  background-color: #e67e22;
}

/* Services Preview */
.services-preview {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f3f3f3, #ffffff);
}
.services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.service-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  width: 240px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-box i {
  font-size: 2.2rem;
  color: #f39c12;
  margin-bottom: 1rem;
}
.service-box h3 {
  font-size: 1.2rem;
  color: #222;
}

/* Reviews Section */
.reviews-section {
  background: #fdfdfd;
  padding: 3rem 0;
}
.reviews-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.reviews-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.review-box {
  background: white;
  border-left: 4px solid #f39c12;
  padding: 1rem 1.5rem;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-style: italic;
}
.review-box h4 {
  margin-top: 1rem;
  color: #666;
  font-weight: 500;
}

/* Unified Button Style */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.3);
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
}

/* Optional Alt Button (for visual contrast if needed) */
.btn.alt {
  background: linear-gradient(135deg, #333, #555);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.btn.alt:hover {
  background: linear-gradient(135deg, #000, #222);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Hero Button Group */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: center;
}
