:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --secondary: #0f766e;
  --dark: #1e293b;
  --bg: #fffbf5;
  --text: #1e293b;
  --muted: #64748b;
  --card-bg: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.hero {
  padding: 8rem 2rem 7rem;
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero .subheadline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.cta {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: #fff;
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.cta-call:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact a {
  color: inherit;
  text-decoration: underline;
}

section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }

section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.about-text p { color: var(--muted); font-size: 1.05rem; }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
}

.services { background: linear-gradient(180deg, transparent, rgba(234, 88, 12, 0.04)); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.service-card {
  padding: 2rem 1.75rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.15);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.service-card h3 { margin-bottom: 0.5rem; color: var(--dark); font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

.reviews { text-align: center; }

.rating-summary {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.review-card {
  padding: 1.75rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.review-stars { color: var(--primary); font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { color: var(--text); font-style: italic; margin-bottom: 0.75rem; }
.review-author { color: var(--muted); font-size: 0.9rem; }

.no-reviews { color: var(--muted); margin-bottom: 2rem; }

.review-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.review-cta:hover {
  background: var(--primary);
  color: #fff;
}

.contact {
  background: var(--dark);
  text-align: center;
  color: #fff;
}

.contact h2 { color: #fff; }
.contact p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin: 0.3rem 0; }

footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--bg);
}
