/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
img { max-width: 100%; height: auto; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: #1e293b; }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: #f8fafc; }

/* Header */
.header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.header-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone:hover { text-decoration: none; color: #fef3c7; }

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.hero h1 { color: white; font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.95; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.hero-feature svg { width: 24px; height: 24px; fill: #22c55e; }

/* CTA Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: #f59e0b;
  color: #1e293b;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.btn-primary:hover { background: #fbbf24; }
.btn-secondary {
  background: white;
  color: #2563eb;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-secondary:hover { background: #f0f9ff; }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline:hover { background: white; color: #2563eb; }

/* Trust Badges */
.trust-bar {
  background: #fef3c7;
  padding: 15px 0;
  text-align: center;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #92400e;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; fill: #2563eb; }
.service-card h3 { color: #1e40af; }
.service-card p { color: #64748b; font-size: 0.95rem; }

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.benefit-icon {
  width: 50px;
  height: 50px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 24px; height: 24px; fill: #16a34a; }

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item h3 { font-size: 3rem; color: #fbbf24; margin-bottom: 0.5rem; }
.stat-item p { font-size: 1rem; opacity: 0.9; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #2563eb;
}
.testimonial-stars { color: #fbbf24; font-size: 1.25rem; margin-bottom: 15px; }
.testimonial-text { font-style: italic; color: #475569; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; color: #1e293b; }
.testimonial-location { color: #64748b; font-size: 0.9rem; }

/* FAQ Section */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}
.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { color: #2563eb; }
.faq-answer { padding: 0 20px 20px; color: #64748b; display: none; }
.faq-item.active .faq-answer { display: block; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #1e293b; margin-bottom: 1rem; }
.cta-section p { color: #44403c; font-size: 1.25rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* Footer */
.footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: white; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #94a3b8; }
.footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* Local SEO Content */
.local-content {
  background: #f0f9ff;
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}
.local-content h3 { color: #1e40af; margin-bottom: 15px; }
.local-content p { color: #475569; }

/* Schema/Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.9rem;
  color: #64748b;
}
.breadcrumbs a { color: #2563eb; }
.breadcrumbs span { margin: 0 8px; }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .hero { padding: 50px 0; }
  .header-inner { justify-content: center; text-align: center; }
  .trust-items { gap: 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; text-align: center; }
}
