/* =========================================
   SERVICES PAGE STYLES
   ========================================= */

.services-page .page-hero {
  padding: 160px 0 100px;
}

/* Services Nav Pills */
.services-nav {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 68px;
  z-index: 100;
}

.services-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-nav-inner::-webkit-scrollbar { display: none; }

.service-pill {
  flex-shrink: 0;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-1);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.service-pill:hover { color: var(--white); }
.service-pill.active { color: var(--red); border-bottom-color: var(--red); }

/* Service Block */
.service-block {
  padding: 120px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-block:nth-child(even) { background: var(--dark-1); }
.service-block:nth-child(odd) { background: var(--black); }

.service-block-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-block:nth-child(even) .service-block-layout { direction: rtl; }
.service-block:nth-child(even) .service-block-text { direction: ltr; }
.service-block:nth-child(even) .service-block-visual { direction: ltr; }

.service-block-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

.service-visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-icon {
  font-family: var(--font-display);
  font-size: 140px;
  color: rgba(196,0,0,0.07);
  letter-spacing: 0;
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 20px;
}

.service-block .lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.service-feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-2);
}

.service-feature-tag::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(196,0,0,0.15);
  border: 1px solid rgba(196,0,0,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--red);
  flex-shrink: 0;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.specs-table th, .specs-table td {
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.specs-table th {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-1);
  background: rgba(255,255,255,0.02);
}

.specs-table td { color: var(--gray-2); }

.specs-table tr:hover td { color: var(--white); background: rgba(255,255,255,0.02); }

/* Finishing Options */
.finishing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.finishing-tag {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-2);
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.finishing-tag:hover {
  border-color: var(--red);
  color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .service-block-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-block:nth-child(even) .service-block-layout { direction: ltr; }
}

@media (max-width: 768px) {
  .service-features { grid-template-columns: 1fr; }
  .services-nav { top: 60px; }
}
