/* Services Page Styles */

/* Intro Section */
.services-intro {
  background: url('../images/Building-Hero.png') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px 20px;
  position: relative;
}

.services-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 30, 78, 0.6); /* Dark Amethyst overlay */
}

.services-intro .container {
  position: relative;
  z-index: 1;
}

.services-intro h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffd046; /* Golden Pollen */
}

.services-intro p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Services Grid */
.services-grid {
  background: #eadaa2; /* Vanilla Custard */
  padding: 60px 20px;
}

.services-grid .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  max-height: 100px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 1.5rem;
  color: #241e4e; /* Dark Amethyst */
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #3a3a3a;
}

/* Industries Section */
.industries {
  background: #ce6c47; /* Burnt Peach */
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.industries h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd046; /* Golden Pollen */
}

.industries ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industries li {
  background: #241e4e;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
}

/* Process Section */
.process {
  background: #eadaa2;
  padding: 60px 20px;
  text-align: center;
}

.process h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #241e4e;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background: #241e4e;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd046;
  margin-bottom: 10px;
}

/* CTA Section */
.cta {
  background: url('../images/wood-kitchen.png') center center/cover no-repeat;
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(150, 2, 0, 0.6); /* Oxblood overlay */
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd046;
}

.cta .btn {
  background: #ce6c47;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background: #ffd046;
  color: #241e4e;
}