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

/* Page Hero */
.page-hero {
  position: relative;
  padding: calc(var(--space-32) + 80px) var(--space-6) var(--space-12);
  background-color: var(--color-text-primary);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,37,0.3) 0%, rgba(44,40,37,0.7) 100%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
}

.page-hero .breadcrumb {
  justify-content: center;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-6);
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumb a:hover {
  color: var(--color-gold);
}

.page-hero .section-label {
  color: var(--color-gold);
}

.page-hero-title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Detail - Compact Layout */
.service-detail {
  padding: var(--space-32) var(--space-6);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  background-color: var(--color-cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.service-detail--reverse .service-detail-grid {
  direction: rtl;
}

.service-detail--reverse .service-detail-grid > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-beige);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.service-detail:hover .service-detail-image img {
  transform: scale(1.03);
}

.service-detail-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  pointer-events: none;
}

.service-detail-content {
  padding: var(--space-8) 0;
}

.service-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  background-size: 200% 200%;
  animation: gold-shimmer 3s ease-in-out infinite;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.service-detail-content .section-label {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  background: var(--gradient-gold-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}

.service-detail-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
}

.service-detail-content p {
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.service-benefits {
  margin: var(--space-8) 0;
}

.service-benefits h3 {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.service-benefits ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.service-benefits li svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.service-meta {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: var(--space-8) 0;
}

.service-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.service-meta-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-text-muted);
}

.service-meta-value {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-gold);
  font-weight: var(--weight-medium);
}

.service-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.service-actions .btn {
  flex: 1;
}

/* Services CTA */
.services-cta {
  padding: var(--space-20) var(--space-6);
  background-color: var(--color-text-primary);
  text-align: center;
}

.services-cta h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.services-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
