/**
 * Jaunt Studio - Services Page Styles
 * Services hub + service detail pages
 */

/* Services Hub Page */
.services-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 80px;
  background: var(--color-offwhite);
  position: relative;
  z-index: 10;
}

.services-hero-content {
  max-width: 1000px;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #000;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Hub Cards Grid */
.services-hub-section {
  padding: 40px 40px 120px;
  background: var(--color-offwhite);
}

.services-hub-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-hub-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.service-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-hub-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--color-orange);
}

.service-hub-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: #000;
}

.service-hub-description {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0 0 24px 0;
  flex: 1;
}

.service-hub-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.service-hub-timeline {
  font-size: 13px;
  color: var(--color-text-muted);
}

.service-hub-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-hub-link:hover {
  gap: 10px;
}

.service-hub-link::after {
  content: '→';
}

/* Service Detail Pages */
.service-detail-section {
  padding: 120px 40px;
  background: var(--color-offwhite);
}

.service-detail-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

.service-detail {
  position: relative;
  padding: 48px 0;
  border-top: 2px solid var(--color-border-light);
}

.service-detail:first-child {
  border-top: none;
  padding-top: 0;
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.service-detail-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px 0;
  color: #000;
}

.service-detail-description {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: #555;
  margin: 0 0 40px 0;
  max-width: 800px;
}

.service-detail-features {
  margin-bottom: 40px;
}

.service-features-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 16px 0;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.service-features-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.service-detail-approach {
  margin-top: 40px;
}

.service-approach-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 16px 0;
}

.service-approach-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
}

/* Why Jaunt Section */
.why-jaunt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-jaunt-item {
  text-align: center;
}

.why-jaunt-stat {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-orange);
  margin: 0 0 8px 0;
  line-height: 1;
}

.why-jaunt-label {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.why-jaunt-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Related Work */
.related-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-work-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-work-card:hover {
  transform: translateY(-4px);
}

.related-work-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.related-work-info {
  padding: 20px 0;
}

.related-work-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 8px;
  display: block;
}

.related-work-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.related-work-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-work-title a:hover {
  color: var(--color-orange);
}

/* ===========================
   RESPONSIVE - SERVICES
   =========================== */

@media (max-width: 768px) {
  .services-hero {
    padding: 140px 24px 60px;
  }

  .services-hero-subtitle {
    font-size: 16px;
  }

  .services-hub-section {
    padding: 40px 24px 100px;
  }

  .services-hub-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-section {
    padding: 80px 24px;
  }

  .service-detail-grid {
    gap: 60px;
  }

  .service-detail {
    padding: 32px 0;
  }

  .service-detail-description {
    margin-bottom: 32px;
  }

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

  .related-work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-hub-grid {
    grid-template-columns: 1fr;
  }

  .why-jaunt-grid {
    grid-template-columns: 1fr;
  }
}
