/**
 * Service Cards Styling
 */

/* Service Card Container */
.service-card {
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Card Header */
.service-card summary {
  padding: 1.25rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffff;
  text-align: center;
  cursor: pointer;
  list-style: none;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.service-card summary:hover {
  background: rgba(0, 255, 255, 0.1);
}

/* Card Body */
.service-card__body {
  padding: 1.5rem;
  text-align: center;
}

/* Card Text */
.summary-card {
  color: #0ff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Icon Container */
.service-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 0;
  transition: transform 0.3s ease;
}

/* Icon Image */
.service-card__icon img {
  width: auto;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
  transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover .service-card__icon img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 1));
}

/* Open State */
.service-card[open] {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.service-card[open] summary {
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    max-width: 90%;
  }
  
  .service-card summary {
    font-size: 1.25rem;
    padding: 1rem;
  }
  
  .service-card__body {
    padding: 1rem;
  }
  
  .summary-card {
    font-size: 1rem;
  }
  
  .service-card__icon img {
    height: 80px;
  }
}
