/* Services Page Styles */

/* Hero Section */
.services-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.90)), 
              url('/images/construction-services.jpg') no-repeat center center/cover;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 160, 59, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.min-vh-70 {
  min-height: 70vh;
}

/* Service Detail Cards */
.service-detail-card {
  background: #fff;
  padding: 3rem;
  border-radius: 0;
  border-left: 6px solid #C7A03B;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-left-width: 10px;
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(199, 160, 59, 0.1);
  line-height: 1;
}

.service-icon-large {
  width: 90px;
  height: 90px;
  background: rgba(199, 160, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-icon-large i {
  font-size: 2.5rem;
  color: #C7A03B;
}

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

.service-detail-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #666;
  font-size: 1.05rem;
}

.service-detail-list i {
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Process Section */
.service-process {
  position: relative;
  overflow: hidden;
}

.process-step {
  position: relative;
  padding: 2rem;
}

.process-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(199, 160, 59, 0.15);
  line-height: 1;
  z-index: 0;
}

.process-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(199, 160, 59, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-icon-wrapper i {
  font-size: 2rem;
  color: #C7A03B;
}

.process-step:hover .process-icon-wrapper {
  background: #C7A03B;
  transform: scale(1.1);
}

.process-step:hover .process-icon-wrapper i {
  color: #000;
}

.process-step h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.process-step p {
  color: #adb5bd;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .services-hero {
    min-height: 60vh;
    padding: 120px 0 60px;
  }

  .service-detail-card {
    padding: 2rem;
  }

  .service-number {
    font-size: 3.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 50px;
  }

  .service-detail-card {
    margin-bottom: 2rem;
  }

  .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .service-icon-large i {
    font-size: 2rem;
  }

  .process-number {
    font-size: 3rem;
  }

  .process-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .process-icon-wrapper i {
    font-size: 1.75rem;
  }
}