/* =====================================================
   SERVICES PAGE ONLY STYLES
   Used ONLY on services.html
   ===================================================== */


/* ================== SERVICES HERO (OPTIONAL) ================== */
/* If you later add a hero banner on services page */
.services-hero {
  height: 45vh;
  background: url('../images/factory.jpg') center / cover no-repeat;
}

.services-hero .overlay {
  background: linear-gradient(
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.9)
  );
}


/* ================== SERVICES INTRO ================== */
.services-intro {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.services-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
}


/* ================== SERVICE SECTIONS ================== */
.service-section {
  margin-top: 80px;
}

.service-section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.service-section > p {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--gray);
}


/* ================== SERVICE GRID ================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}


/* ================== SERVICE CARD ================== */
.service-card {
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 14px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ================== TECH LIST ================== */
.tech-list {
  margin-top: 15px;
  padding-left: 18px;
}

.tech-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #334155;
}


/* ================== CAPACITY HIGHLIGHTS ================== */
.capacity-bar {
  margin-top: 60px;
  background: var(--light);
  padding: 50px 30px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.capacity-item {
  text-align: center;
}

.capacity-item h4 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.capacity-item p {
  font-size: 0.9rem;
  color: var(--gray);
}


/* ================== CTA ================== */
.services-cta {
  margin-top: 90px;
  text-align: center;
}

.services-cta .btn {
  margin-top: 10px;
}


/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .service-section {
    margin-top: 60px;
  }

  .capacity-bar {
    padding: 40px 20px;
  }
}
.page-subtitle {
  max-width: 760px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
}
