/* =============================================
   Service Pages – Corporate Dark Mode (Solid)
   ============================================= */

/* Service Hero */
.service-hero {
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
}
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 32px; text-transform: uppercase; letter-spacing: 1px;
}
.breadcrumb a { color: var(--green); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; color: var(--border-light); }

.service-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-hero-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  color: var(--green); font-size: 28px; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.service-hero-content h1 { font-size: clamp(36px, 5vw, 56px); color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.service-hero-content p { font-size: 18px; color: var(--text-main); line-height: 1.7; margin-bottom: 32px; }
.service-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  border-radius: 6px; font-size: 13px; font-weight: 700; color: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-badge i { color: var(--green); }

.service-hero-img {
  border-radius: var(--radius); overflow: hidden; border: 4px solid var(--navy-card);
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Service Content Sections */
.service-content { padding: 100px 0; background: var(--navy-1); }
.service-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step-card {
  background: var(--navy-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.step-card:hover { transform: translateY(-8px); border-color: var(--green); box-shadow: var(--shadow-md); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 8px; background: var(--green);
  color: #fff; font-size: 20px; font-family: var(--font-heading); font-weight: 800; margin-bottom: 24px;
}
.step-card h4 { font-size: 20px; font-family: var(--font-heading); color: var(--white); margin-bottom: 16px; }
.step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 20px; padding: 24px;
  background: var(--navy-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.feature-item i { color: var(--green); font-size: 24px; flex-shrink: 0; }
.feature-item-text h5 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.feature-item-text p { font-size: 15px; color: var(--text-main); line-height: 1.6; }

/* Service pricing table */
.service-pricing-section { background: var(--navy-2); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-pricing-table {
  background: var(--navy-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow-md);
}
.pricing-table-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px; border-bottom: 1px solid var(--border); font-size: 16px;
}
.pricing-table-row:last-child { border-bottom: none; }
.pricing-table-label { color: var(--text-main); font-weight: 600; }
.pricing-table-price { font-weight: 800; font-family: var(--font-heading); color: var(--white); font-size: 20px; }

/* CTA Section */
.service-cta {
  background: var(--navy-card); border-radius: var(--radius); padding: 80px 60px;
  text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.service-cta h2 { font-size: 40px; color: var(--white); margin-bottom: 24px; }
.service-cta p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.service-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* All services grid */
.all-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.all-service-card {
  background: var(--navy-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 32px 20px; text-align: center;
  transition: var(--transition); display: flex; flex-direction: column;
  align-items: center; gap: 16px; cursor: pointer; box-shadow: var(--shadow-sm);
}
.all-service-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.all-service-card i { font-size: 32px; color: var(--green); margin-bottom: 8px; }
.all-service-card span { font-size: 15px; font-family: var(--font-heading); font-weight: 700; color: var(--white); }
.all-service-card.current { border-color: var(--green); background: rgba(255,255,255,0.05); }

/* Responsive */
@media (max-width: 1024px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-steps-grid { grid-template-columns: 1fr 1fr; }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cta { padding: 60px 32px; }
}
@media (max-width: 600px) {
  .service-steps-grid { grid-template-columns: 1fr; }
  .all-services-grid { grid-template-columns: 1fr; }
}

/* ===========================
   BACKUP MOBILE MENU FIX FOR SUBPAGES
   =========================== */
#mobile-nav-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7); z-index: 10000;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
#mobile-nav-overlay.active { opacity: 1; visibility: visible; }
#mobile-menu {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
  background: var(--navy-1); z-index: 10001;
  padding: 40px 24px; box-shadow: 10px 0 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  overflow-y: auto; display: block !important;
}
#mobile-menu.active { left: 0; }

@media (min-width: 1025px) {
  #mobile-menu { display: none !important; }
}
