/* ============================================
   SERVICES PAGE — Gwennato Epoxy
   ============================================ */

/* --- Services Detail Section --- */
.services-detail-section {
  padding: 120px 50px;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Service Detail Block --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

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

/* Alternate layout: even items reverse order */
.service-detail:nth-child(even) {
  direction: rtl;
}
.service-detail:nth-child(even) > * {
  direction: ltr;
}

/* --- Service Image Placeholder --- */
.service-detail-image {
  aspect-ratio: 4/3;
  background: #161616;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.service-detail-image .swatch {
  width: 100%;
  height: 100%;
  border-radius: 0;
  filter: blur(0.5px);
}

/* --- Service Label --- */
.service-detail-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-detail-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* --- Service Title --- */
.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.service-detail-title em {
  font-style: italic;
  color: var(--gold);
}

/* --- Service Text --- */
.service-detail-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

/* --- Service Features List --- */
.service-detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.service-detail-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.service-detail-features li::before {
  content: '\25C8';
  color: var(--gold);
  margin-right: 12px;
  font-size: 0.7rem;
}

/* --- Service CTA Link --- */
.service-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.service-detail-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-detail-section {
    padding: 80px 30px;
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .services-detail-section {
    padding: 60px 24px;
  }
  .service-detail {
    gap: 30px;
    margin-bottom: 60px;
  }
}
