/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0 64px;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(46,204,113,0.1) 0%, transparent 60%);
}
.page-hero-overlay { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: #2ecc71; }
.breadcrumb span { margin: 0 8px; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 28px; }
.service-count-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.s-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.s-badge i { color: #2ecc71; }

/* ===== QUICK NAV ===== */
.quick-nav {
  background: #fff; border-bottom: 1px solid #e5e7eb;
  position: sticky; top: 65px; z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.quick-nav-inner {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 24px; max-width: 1200px; margin: 0 auto; overflow-x: auto;
}
.quick-nav-inner a {
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  color: #374151; white-space: nowrap; transition: all 0.2s;
}
.quick-nav-inner a:hover { background: rgba(46,204,113,0.1); color: #2ecc71; }
.quick-nav-inner .btn { margin-left: auto; padding: 8px 20px; font-size: 0.85rem; }
.btn-sm { padding: 8px 20px !important; font-size: 0.85rem !important; }

/* ===== SERVICE SECTIONS ===== */
.svc-section { padding: 80px 0; }
.svc-section-header { text-align: center; margin-bottom: 52px; }
.svc-cat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,204,113,0.1); color: #27ae60;
  border: 1px solid rgba(46,204,113,0.25);
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.svc-section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.svc-section-header p { font-size: 1rem; color: #6b7280; max-width: 520px; margin: 0 auto; }

/* ===== SERVICE CARDS (large) ===== */
.svc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.svc-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-color: #2ecc71; }
.svc-card-icon {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 32px; font-size: 2.4rem; color: #2ecc71; text-align: center;
}
.svc-card-icon.green { background: linear-gradient(135deg, #1e7e34 0%, #27ae60 100%); color: #fff; }
.svc-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.svc-card-body h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: #1a1a2e; }
.svc-desc { color: #6b7280; font-size: 0.93rem; line-height: 1.7; margin-bottom: 24px; }
.svc-includes { flex: 1; margin-bottom: 28px; }
.svc-includes li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 0.88rem; color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.svc-includes li:last-child { border-bottom: none; }
.svc-includes li i { color: #2ecc71; font-size: 0.75rem; flex-shrink: 0; }
.svc-card-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: auto; }
.svc-note { font-size: 0.78rem; color: #9ca3af; display: flex; align-items: center; gap: 5px; }
.svc-note i { color: #2ecc71; }

/* ===== SERVICE CARDS (mini) ===== */
.svc-cards-3col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.svc-card-mini {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 32px; transition: all 0.3s ease;
}
.svc-card-mini:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); border-color: #2ecc71; }
.svc-mini-icon {
  width: 56px; height: 56px; background: rgba(46,204,113,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #2ecc71; margin-bottom: 20px;
}
.svc-card-mini h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; color: #1a1a2e; }
.svc-card-mini p { font-size: 0.88rem; color: #6b7280; line-height: 1.65; margin-bottom: 20px; }
.svc-mini-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.85rem; color: #374151; padding: 5px 0;
}
.svc-mini-list li i { color: #2ecc71; font-size: 0.72rem; flex-shrink: 0; }

/* ===== MAINTENANCE GRID ===== */
.maintenance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.maint-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 32px; transition: all 0.3s ease;
}
.maint-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.maint-card.highlight { border-color: #2ecc71; background: linear-gradient(135deg, #f0fdf4, #fff); }
.maint-icon {
  width: 52px; height: 52px; background: rgba(46,204,113,0.12); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #2ecc71; margin-bottom: 18px;
}
.maint-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: #1a1a2e; }
.maint-card p { font-size: 0.88rem; color: #6b7280; line-height: 1.65; margin-bottom: 18px; }
.maint-tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.maint-tag.emergency { background: rgba(46,204,113,0.15); color: #1e7e34; }

/* ===== SPECIALTY ===== */
.specialty-wrap { display: flex; justify-content: center; }
.specialty-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
  overflow: hidden; max-width: 860px; width: 100%;
  display: flex; box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.specialty-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.14); transform: translateY(-4px); }
.specialty-icon {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  padding: 48px 40px; font-size: 3rem; color: #fff;
  display: flex; align-items: center; justify-content: center;
  min-width: 160px;
}
.specialty-body { padding: 40px; }
.specialty-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; color: #1a1a2e; }
.specialty-body > p { font-size: 0.95rem; color: #6b7280; line-height: 1.7; margin-bottom: 28px; }
.specialty-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.sf-item { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; color: #374151; font-weight: 500; }
.sf-item i { color: #2ecc71; font-size: 0.85rem; flex-shrink: 0; }
.mt-24 { margin-top: 24px; }

/* ===== PRICING TEASER ===== */
.pricing-teaser { background: #1a1a2e; color: #fff; padding: 80px 0; }
.pricing-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.pricing-text { flex: 1; min-width: 300px; }
.pricing-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.pricing-text p { color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.7; margin-bottom: 24px; }
.pricing-bullets { display: flex; flex-direction: column; gap: 10px; }
.pricing-bullets li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.pricing-bullets li i { color: #2ecc71; }
.pricing-cta-box { text-align: center; }
.price-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px 48px; margin-bottom: 20px;
}
.price-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.price-amount { font-size: 4.5rem; font-weight: 800; color: #2ecc71; line-height: 1; }
.price-amount span { font-size: 2rem; }
.price-sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 8px; }
.price-fine { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .specialty-card { flex-direction: column; }
  .specialty-icon { min-width: auto; padding: 32px; }
  .specialty-features { grid-template-columns: 1fr; }
  .pricing-inner { flex-direction: column; text-align: center; }
  .pricing-bullets { align-items: center; }
  .quick-nav { top: 57px; }
}
@media (max-width: 480px) {
  .svc-cards { grid-template-columns: 1fr; }
  .maintenance-grid { grid-template-columns: 1fr; }
}