@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --slate: #1a2a44;
  --copper: #c87941;
  --copper-light: #e09a5f;
  --cream: #faf7f3;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --star: #f0b429;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'DM Serif Display', serif; }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 60%, #1e3a5f 100%);
  color: white;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,121,65,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,121,65,0.15);
  border: 1px solid rgba(200,121,65,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--copper-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--copper-light); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero-rating .stars { color: var(--star); letter-spacing: 2px; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--copper);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(200,121,65,0.4);
}
.hero-cta:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200,121,65,0.5);
}

.section { padding: 5rem 2rem; }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  font-weight: 300;
}
.container { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.08);
}
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

.reviews-section { background: var(--navy); color: white; }
.reviews-section .section-title { color: white; }
.reviews-section .section-subtitle { color: rgba(255,255,255,0.6); }
.rating-highlight { text-align: center; margin-bottom: 3rem; }
.rating-number {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--copper-light);
  line-height: 1;
}
.rating-stars { color: var(--star); font-size: 1.4rem; letter-spacing: 3px; margin: 0.5rem 0; }
.rating-count { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.review-stars { color: var(--star); letter-spacing: 2px; margin-bottom: 1rem; }
.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-author { color: var(--copper-light); font-weight: 600; font-size: 0.9rem; }
.review-time { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 0.2rem; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.stat-number { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--copper); }
.stat-label { color: var(--text-light); font-size: 0.85rem; margin-top: 0.3rem; font-weight: 500; }

.contact-section {
  background: linear-gradient(135deg, var(--slate), var(--navy));
  color: white;
  text-align: center;
}
.contact-section .section-title { color: white; }
.contact-section .section-subtitle { color: rgba(255,255,255,0.6); }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--copper-light);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(200,121,65,0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
.contact-phone:hover {
  background: rgba(200,121,65,0.1);
  border-color: var(--copper);
}
.contact-area { color: rgba(255,255,255,0.5); font-size: 1rem; margin-top: 1rem; }

footer {
  background: #060d18;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero h1, .hero-subtitle, .hero-rating, .hero-cta {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero h1 { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-rating { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }

@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .about-content { grid-template-columns: 1fr; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 3rem 1rem 3rem; }
  .section { padding: 3rem 1rem; }
  .contact-phone { font-size: 1.4rem; padding: 0.8rem 1.5rem; }
}
