/* Services Page */

.services-container {
  text-align: center;
}

.services-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00caff;
}

.services-container .intro {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-bubble {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 202, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #111;
  display: flex;
  flex-direction: column;
}

.service-bubble .image-container {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-bubble h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #00caff;
  font-size: 1.4rem;
  margin: 0;
}

.service-bubble .details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  background: #000;
  padding: 0 1rem;
}

.service-bubble.active .details {
  max-height: 500px;
  opacity: 1;
  padding: 1rem;
}

/* Contact link (CTA) */
.service-bubble .contact-link {
  display: inline-block;
  margin-top: 1rem;
  color: #a259ff;  /* purple instead of cyan */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-bubble .contact-link:hover {
  color: #d3a6ff; /* lighter purple on hover */
  text-decoration: underline;
}

/* Service bullets */
.service-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}

.service-bullets li {
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  color: #ddd;
  font-size: 0.95rem;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a259ff;
}
