/* ========================================
   BEEMYE - Services Page Styles
   ======================================== */

/* Intro Section */
.services-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 40px;
  text-align: center;
}

.services-intro-icon {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.services-intro-icon svg {
  width: 60px;
  height: 60px;
  stroke: #d4a574;
  fill: none;
}

.services-intro-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 12px;
}

.services-intro-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* Video Call Section */
.video-call-section {
  background: #f5f5f5;
  padding: 24px;
  margin: 0 24px 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 4px;
}

.video-call-title {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

.video-call-locations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #555;
}

.video-call-locations span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Service Cards Grid */
.service-cards-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.service-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-cards-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 750px;
  margin: 0 auto 40px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.service-card-label {
  text-align: center;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2744;
}

/* Service List */
.service-list {
  padding: 0 16px 20px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7c5cbc;
  font-weight: bold;
}

/* Price CTA */
.price-cta {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 40px 0;
}

.price-cta-text {
  font-size: 1.1rem;
  color: #e67e22;
  margin-bottom: 8px;
}

.price-cta-text span {
  font-size: 0.9rem;
}

.price-cta-price {
  font-size: 1rem;
  color: #333;
}

/* Bottom Note */
.services-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.services-note-text {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 20px;
}

.services-note-contact {
  font-size: 1rem;
  color: #1a2744;
  font-weight: 500;
}

.services-note-contact span {
  color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-cards-row-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-call-locations {
    flex-direction: column;
    gap: 8px;
  }
}
