/* ===== Home Page Specific Styles ===== */

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a3d2a 0%, #1a7a4c 40%, #2d8f5e 70%, #3da36e 100%);
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 8px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.hero-stats .stat span { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-stats .stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-stats .stat-divider { display: none; }
}

/* Service Cards */
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--border); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card .card-icon { font-size: 32px; background: none; width: auto; height: auto; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 14px; margin-bottom: 16px; flex-grow: 1; }
.service-card .card-link { font-size: 14px; font-weight: 600; color: var(--primary); }
.service-card .card-link:hover { color: var(--accent); }

/* Advantages */
.advantage-icon { font-size: 36px; margin-bottom: 16px; }
.advantage-item h4 { margin-bottom: 8px; }
.advantage-item p { font-size: 14px; }

/* Process Steps */
.step-item { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; margin-bottom: 16px;
}
.step-item h4 { margin-bottom: 8px; }
.step-item p { font-size: 14px; }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coverage-item {
  background: var(--bg-alt); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.coverage-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.coverage-item strong { display: block; font-size: 18px; color: var(--primary); margin-bottom: 6px; }
.coverage-item span { font-size: 13px; color: var(--text-light); }
@media (max-width: 768px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0; text-align: center; color: #fff;
}
.cta-content h2 { color: #fff; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 32px; }
