/* ==========================================================================
   VIJAY INDUSTRIES - SERVICES PAGE SPECIFIC STYLES
   ========================================================================== */

/* 1. Services Hero */
.services-hero {
  padding: 180px 0 100px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 400px;
  height: 400px;
  background-color: rgba(139, 94, 60, 0.02);
  filter: blur(100px);
  pointer-events: none;
}

#services-hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #services-hero-title {
    font-size: 2.8rem;
  }
}

/* 2. Services Detail Layout */
.services-detail-section {
  padding: 100px 0;
}

.service-block {
  margin-bottom: 100px;
  scroll-margin-top: 100px; /* offset for sticky header when scrolling to anchor */
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.service-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.service-block-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .service-block-header h2 {
    font-size: 1.6rem;
  }
  .service-number {
    font-size: 2rem;
  }
}

.service-block-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

@media (max-width: 1024px) {
  .service-block-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Description Column */
.service-desc-column > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.service-process-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px;
}

.service-process-box h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.service-process-list {
  list-style: none;
  counter-reset: process-counter;
}

.service-process-list li {
  counter-increment: process-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-process-list li:last-child {
  margin-bottom: 0;
}

.service-process-list li::before {
  content: "0" counter(process-counter);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-process-list li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

/* Benefits Column */
.service-benefits-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.service-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.service-benefits-list li:last-child {
  margin-bottom: 0;
}

.service-benefits-list svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-benefits-list li div {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-benefits-list li strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* Separator Line */
.service-separator {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin: 100px 0;
}

@media (max-width: 1024px) {
  .service-separator {
    margin: 60px 0;
  }
}


