/* Premium Services Cards - Advanced Design */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.service-card-advanced {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(31, 122, 90, 0.12);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border: 1px solid rgba(31, 122, 90, 0.08);
}

.service-card-advanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 122, 90, 0.03) 0%, rgba(201, 162, 77, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card-advanced:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(31, 122, 90, 0.2);
  border-color: rgba(31, 122, 90, 0.2);
}

.service-card-advanced:hover::before {
  opacity: 1;
}

.service-image-advanced {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image-advanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-advanced:hover .service-image-advanced img {
  transform: scale(1.12);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 122, 90, 0.85) 0%, rgba(201, 162, 77, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

.service-card-advanced:hover .service-overlay {
  opacity: 1;
}

.service-overlay h4 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.service-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.service-card-advanced:hover .service-overlay h4,
.service-card-advanced:hover .service-overlay p {
  transform: translateY(0);
}

.service-content-advanced {
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: white;
}

.service-content-advanced h3 {
  color: #1F7A5A;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-card-advanced:hover .service-content-advanced h3 {
  color: #C9A24D;
}

.service-description-advanced {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 122, 90, 0.1);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #C9A24D;
  background: linear-gradient(135deg, #C9A24D 0%, #B89244 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-cta {
  background: linear-gradient(135deg, #1F7A5A 0%, #1A634A 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 122, 90, 0.2);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 122, 90, 0.3);
  background: linear-gradient(135deg, #1A634A 0%, #16523A 100%);
}

/* Premium Carousel for Mobile */
@media (max-width: 768px) {
  .services-grid-premium {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.5rem 2rem;
  }
  
  .service-card-advanced {
    flex: 0 0 90%;
    scroll-snap-align: start;
    min-width: 300px;
  }
  
  .service-image-advanced {
    height: 200px;
  }
  
  .service-content-advanced {
    padding: 1.5rem;
  }
  
  .service-content-advanced h3 {
    font-size: 1.3rem;
  }
  
  .service-description-advanced {
    font-size: 1rem;
    min-height: 70px;
  }
}

/* Premium Loading States */
.service-card-loading {
  position: relative;
  overflow: hidden;
}

.service-card-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Premium Badges */
.service-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #C9A24D 0%, #B89244 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.service-badge.popular {
  background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
}

.service-badge.new {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

/* Premium Hover Effects */
.service-card-advanced .shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
  z-index: 2;
}

.service-card-advanced:hover .shine-effect {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* Premium Service Details Page */
.service-detail-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 3rem;
}

.service-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 122, 90, 0.7) 0%, rgba(201, 162, 77, 0.5) 100%);
}

.service-detail-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 3rem;
  text-align: center;
}

.service-detail-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.service-detail-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Features List */
.premium-features {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

.premium-features h3 {
  color: #1F7A5A;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(31, 122, 90, 0.03);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(31, 122, 90, 0.08);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1F7A5A 0%, #C9A24D 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.2rem;
}

.feature-text h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Premium Pricing Card */
.pricing-card-premium {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(31, 122, 90, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.pricing-card-premium:hover {
  transform: translateY(-10px);
  border-color: #1F7A5A;
  box-shadow: 0 20px 45px rgba(31, 122, 90, 0.25);
}

.pricing-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1F7A5A 0%, #C9A24D 100%);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #C9A24D;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #C9A24D 0%, #B89244 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Premium Contact Buttons */
.premium-contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.premium-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.premium-contact-btn.phone {
  background: linear-gradient(135deg, #1F7A5A 0%, #1A634A 100%);
  color: white;
}

.premium-contact-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.premium-contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}