/* Services Page Enhancements */

.services-title {
  text-align: center;
  color: var(--cyan);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.services-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.95;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 0 auto 3.5rem auto;
  max-width: 900px;
}

.service-card {
  background: var(--blue-mid);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid transparent;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  display: block;
}
.service-card h3 {
  color: var(--cyan);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.service-sub {
  color: var(--white);
  opacity: 0.7;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.service-card p {
  color: var(--white);
  opacity: 0.92;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Why Choose Us Block */
.services-extra {
  background: var(--blue-mid);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}
.services-extra h3 {
  color: var(--cyan);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.services-why {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}
.services-why li {
  color: var(--white);
  opacity: 0.92;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
  justify-content: flex-start;
}
.services-why li span {
  font-size: 1.3em;
  display: inline-block;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
} 