/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero */
.services-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--dusty-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.services-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 74, 74, 0.3) 0%, rgba(212, 165, 165, 0.2) 100%);
}

.services-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  z-index: 10;
}

.services-hero-content .kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.services-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  margin: 0 0 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.services-hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Overview / Quick Links */
.services-overview {
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 20;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  border-radius: 16px;
  background: var(--cream);
  text-decoration: none;
  color: var(--dark-gray);
  transition: all 0.3s ease;
  text-align: center;
}

.service-quick-link:hover {
  background: var(--dusty-pink);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.4);
}

.service-quick-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dusty-pink);
  transition: all 0.3s ease;
}

.service-quick-link:hover .service-quick-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

.service-quick-link span {
  font-weight: 600;
  font-size: 14px;
}

/* Services Container */
.services-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

/* Service Section */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--cream);
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-section.alt-bg {
  background: var(--cream);
  margin: 0 -24px;
  padding: 80px 24px;
  border-radius: 30px;
}

/* Service Header */
.service-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.service-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dusty-pink);
  background: rgba(212, 165, 165, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.service-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 16px;
  color: var(--dark-gray);
}

.service-header p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Service Content */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse>* {
  direction: ltr;
}

/* Service Media */
.service-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-media img,
.service-media video {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

.service-media-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-media-badge i {
  color: var(--dusty-pink);
}

/* Service Details */
.service-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-section.alt-bg .service-item {
  background: white;
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.service-item h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--dark-gray);
}

.service-price {
  font-weight: 600;
  color: var(--dusty-pink);
  font-size: 1rem;
  background: rgba(212, 165, 165, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
}

.service-item p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
}

.service-includes li i {
  color: var(--dusty-pink);
  font-size: 11px;
}

/* Service Gallery */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, var(--beige) 0%, var(--dusty-pink) 100%);
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.services-cta-content {
  position: relative;
  z-index: 10;
}

.services-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
  margin: 0 0 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.services-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  margin: 0 0 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta .btn-primary {
  background: white;
  color: var(--dark-gray);
  padding: 16px 32px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.services-cta .btn-primary:hover {
  background: var(--dark-gray);
  color: white;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-content.reverse {
    direction: ltr;
  }

  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: auto;
    min-height: 300px;
    padding: 100px 20px 80px;
  }

  .services-overview {
    margin-top: -30px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 16px;
    gap: 12px;
  }

  .service-quick-link {
    padding: 16px 12px;
  }

  .service-quick-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .service-quick-link span {
    font-size: 12px;
  }

  .services-container {
    margin: 60px auto;
  }

  .service-section {
    padding: 60px 0;
  }

  .service-section.alt-bg {
    padding: 60px 20px;
    margin: 0 -24px;
    border-radius: 20px;
  }

  .service-header {
    margin-bottom: 40px;
  }

  .service-media img,
  .service-media video {
    height: 300px;
  }

  .service-item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-gallery img {
    height: 140px;
  }

  .services-cta {
    padding: 60px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 90px 16px 70px;
  }

  .services-overview {
    margin-top: -20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    padding: 20px;
  }

  .service-includes {
    flex-direction: column;
    gap: 8px;
  }

  .service-includes li {
    width: fit-content;
  }

  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-cta .btn-primary,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}