/* ============================================
   VERITECH MECHANICAL — SERVICES PAGE STYLES
   ============================================ */

.services-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(105deg, rgba(14,31,43,0.92) 0%, rgba(14,31,43,0.78) 45%, rgba(14,31,43,0.50) 100%),
    url('../images/shop-wide.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.services-hero-lines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(237,130,35,0.04) 39px,
    rgba(237,130,35,0.04) 40px
  );
  pointer-events: none;
}

/* --- Service Sections --- */
.svc-section {
  padding: 100px 0;
  background: var(--black);
}

.svc-section--alt {
  background: var(--navy);
}

.svc-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-section-layout--rev {
  direction: rtl;
}

.svc-section-layout--rev > * {
  direction: ltr;
}

.svc-section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 12px 0 28px;
}

.svc-section-title span { color: var(--orange); }

.svc-section-desc {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- Service List --- */
.svc-section-list {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--orange);
  padding: 40px;
}

.svc-list-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}

.check {
  color: var(--orange);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}

/* --- Divider --- */
.svc-divider {
  padding: 0 32px;
}

.svc-divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(237,130,35,0.3) 20%, rgba(237,130,35,0.3) 80%, transparent);
  max-width: var(--container);
  margin: 0 auto;
}

/* --- Why Section --- */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.why-header {
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  padding: 36px 32px;
  background: rgba(14,31,43,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.why-card:hover {
  background: rgba(14,31,43,0.9);
}

.why-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(237,130,35,0.06);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}

.why-card:hover .why-num {
  color: rgba(237,130,35,0.12);
}

.why-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(237,130,35,0.2);
}

.why-desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.75;
  margin-top: 12px;
}

/* --- CTA band (reused from home) --- */
.cta-band {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(237,130,35,0.15);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-top: 12px;
}
.cta-heading span { color: var(--orange); }

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .svc-section-layout,
  .svc-section-layout--rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}


