/* ============================================================
   VA PLASTOPACK — services.css
   Styles specific to the Services page
   ============================================================ */

/* ── INTRO BAND ── */
.intro-band {
  background: var(--blue-deeper);
  padding: 56px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(27, 111, 190, 0.2);
}
.intro-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 14px;
}
.intro-band h2 em { color: var(--orange); font-style: italic; }
.intro-band p {
  font-size: 16px;
  color: var(--silver);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── SERVICE CARDS WRAPPER ── */
.services-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── SERVICE CARD ── */
.svc-card {
  background: var(--card-bg);
  border: 1px solid rgba(27, 111, 190, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  transition: all var(--transition);
  position: relative;
}
.svc-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

/* vertical accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--orange));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* alternating layout */
.svc-card.reverse {
  grid-template-columns: 1fr 340px;
}
.svc-card.reverse .svc-visual { order: 2; }
.svc-card.reverse .svc-body   { order: 1; }
.svc-card.reverse::before {
  left: auto; right: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* visual panel */
.svc-visual {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.svc-visual-emoji {
  font-size: 88px;
  transition: transform .4s;
  position: relative;
  z-index: 1;
}
.svc-card:hover .svc-visual-emoji {
  transform: scale(1.1) rotate(-3deg);
}
.svc-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(27,111,190,0.25) 0%, transparent 70%);
}
.svc-card-num {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

/* body panel */
.svc-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-body-top { flex: 1; }

.svc-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 14px;
  line-height: 1.2;
}
.svc-title em { color: var(--orange); font-style: italic; }
.svc-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* feature list */
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #c8dff5;
}
.feat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* service actions */
.svc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.phone-num {
  font-size: 13px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.phone-num .phone-icon { font-size: 15px; }

/* ── PROCESS STEPS ── */
.process-section {
  background: var(--dark);
  padding: 80px 0;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all var(--transition);
  position: relative;
}
.step:hover .step-circle {
  border-color: var(--orange);
  background: rgba(245, 166, 35, 0.1);
  transform: scale(1.08);
}
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: var(--dark);
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
}

/* ── INDUSTRIES ── */
.industries-section {
  background: var(--blue-deeper);
  padding: 80px 0;
  border-top: 1px solid rgba(27, 111, 190, 0.2);
}
.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.industries-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.industries-heading span { color: var(--orange); }
.industries-sub {
  font-size: 15px;
  color: var(--silver);
  margin-bottom: 48px;
}

/* ── RESPONSIVE SERVICES ── */
@media (max-width: 1024px) {
  .svc-card,
  .svc-card.reverse {
    grid-template-columns: 1fr;
  }
  .svc-card.reverse .svc-visual { order: 1; }
  .svc-card.reverse .svc-body   { order: 2; }
  .svc-card::before,
  .svc-card.reverse::before {
    left: 0; right: 0;
    top: 0; bottom: auto;
    width: 100%; height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .svc-visual { min-height: 200px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .industries-inner,
  .process-inner { padding: 0 36px; }
  .services-wrap { padding: 50px 36px; }
  .intro-band { padding: 48px 36px; }
}
@media (max-width: 768px) {
  .svc-body { padding: 28px 24px; }
  .svc-features { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .industries-inner,
  .process-inner { padding: 0 20px; }
  .services-wrap { padding: 50px 20px; }
  .intro-band { padding: 44px 20px; }
}
