/* ==========================================================================
   Service Landing Pages - Shared Styles
   Inherits from style.css — uses same CSS custom properties & fonts
   ========================================================================== */

/* ---------- Hero Banner ---------- */
.service-hero {
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b2e 100%);
  padding: 160px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.service-hero #heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-family: 'Porter-Bold-DEMO', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.service-hero h1 .cto {
  color: var(--accent);
}

.service-hero .lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 640px;
}

.service-hero .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.service-hero .breadcrumb a:hover {
  color: var(--accent);
}

.service-hero .breadcrumb-item.active {
  color: rgba(255,255,255,0.9);
}

.service-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* ---------- Section Spacing ---------- */
.service-section {
  padding: 80px 0;
}

.service-section.bg-alt {
  background-color: var(--lighter);
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.service-section .section-title h2 {
  font-family: 'Porter-Bold-DEMO', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.service-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.service-section .section-title p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 15px auto 0;
}

/* ---------- Offer Cards ---------- */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.offer-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.3rem;
}

.offer-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.offer-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- Detail Cards ---------- */
.detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.detail-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.detail-card .detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.2rem;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.detail-card ul li i {
  color: var(--accent);
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- Approach / Process Steps ---------- */
.approach-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.approach-content p {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.approach-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: 12px;
  flex-shrink: 0;
}

/* ---------- Process Grid ---------- */
.process-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.process-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.process-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Tech Badges ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.tech-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tech-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.tech-badge i {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Why Choose / Benefits ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.3rem;
}

.why-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.why-list li i {
  color: var(--accent);
  margin-right: 14px;
  margin-top: 5px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Stat Highlight Cards ---------- */
.stat-highlight {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  height: 100%;
}

.stat-highlight .stat-value {
  font-family: 'Porter-Bold-DEMO', 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-highlight p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Porter-Bold-DEMO', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
}

.cta-section .btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 114, 43, 0.35);
  color: #fff;
}

.cta-section .cta-phone {
  margin-top: 15px;
  font-size: 1rem;
  opacity: 0.85;
}

.cta-section .cta-phone a {
  color: #fff;
  text-decoration: none;
}

.cta-section .cta-phone a:hover {
  text-decoration: underline;
}

/* ---------- Content Sections ---------- */
.content-section h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding-left: 15px;
  border-left: 3px solid var(--accent);
}

.content-section p {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .service-hero {
    padding: 120px 0 60px;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-section {
    padding: 60px 0;
  }

  .service-section .section-title h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
  }
}
