/* Pricing & Services Styles */

.pricing {
  margin-bottom: 60px;
}

.pricing-title {
  color: var(--white-2);
  margin-bottom: 40px;
  text-align: center;
  font-size: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: linear-gradient(145deg, 
    rgba(20, 20, 25, 0.95) 0%,
    rgba(30, 30, 35, 0.9) 30%,
    rgba(25, 25, 30, 0.95) 70%,
    rgba(35, 35, 40, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 8px 25px rgba(255, 215, 0, 0.15);
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 215, 0, 0.08) 0%,
    rgba(255, 193, 7, 0.06) 30%,
    rgba(255, 235, 59, 0.08) 70%,
    rgba(255, 183, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
    #ffd700 0%,
    #ffb700 25%,
    #ffc107 50%,
    #ff8f00 75%,
    #ffd700 100%);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.3; }
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 15px 40px rgba(255, 215, 0, 0.3),
    0 8px 25px rgba(255, 193, 7, 0.2),
    inset 0 3px 0 rgba(255, 255, 255, 0.2),
    inset 0 -3px 0 rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover::after {
  opacity: 0.6;
}

.pricing-card.premium {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 12px 35px rgba(255, 215, 0, 0.25),
    0 6px 20px rgba(255, 193, 7, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  background: linear-gradient(145deg,
    rgba(25, 25, 30, 0.98) 0%,
    rgba(35, 35, 40, 0.95) 30%,
    rgba(30, 30, 35, 0.98) 70%,
    rgba(40, 40, 45, 0.95) 100%);
}

.pricing-card.premium::before {
  opacity: 0.8;
}

.pricing-card.premium::after {
  opacity: 0.4;
  animation: borderGlow 2s ease-in-out infinite;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, 
    #ffd700 0%, 
    #ffb700 50%, 
    #ff8f00 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  }
}

.card-header {
  margin-bottom: 30px;
}

.card-title {
  color: var(--white-2);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f0f0f0 50%, 
    #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.currency {
  background: linear-gradient(135deg, 
    #ffd700 0%, 
    #ffb700 50%, 
    #ff8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.amount {
  background: linear-gradient(135deg,
    #ffffff 0%,
    #f8f9fa 30%,
    #ffffff 70%,
    #e9ecef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 56px;
  font-weight: 900;
  margin-left: 8px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.card-subtitle {
  color: var(--light-gray);
  font-size: 14px;
}

.features-list {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: white;
  transform: translateX(5px);
}

.feature-item ion-icon {
  background: linear-gradient(135deg, 
    #ffd700 0%, 
    #ffb700 50%, 
    #ff8f00 100%);
  color: white;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, 
    #ffd700 0%, 
    #ffb700 50%, 
    #ff8f00 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 16px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(255, 215, 0, 0.4),
    0 8px 25px rgba(255, 193, 7, 0.3),
    inset 0 3px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.01);
}

.premium-btn {
  background: linear-gradient(135deg, 
    #ff8f00 0%, 
    #ffc107 50%, 
    #ffd700 100%);
  box-shadow: 
    0 10px 30px rgba(255, 143, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.premium-btn:hover {
  box-shadow: 
    0 18px 45px rgba(255, 143, 0, 0.5),
    0 10px 30px rgba(255, 193, 7, 0.3),
    inset 0 3px 0 rgba(255, 255, 255, 0.3);
}

/* Additional Services */
.additional-services {
  margin-top: 60px;
}

.services-title {
  color: var(--white-2);
  margin-bottom: 40px;
  text-align: center;
  font-size: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, 
    rgba(30, 30, 30, 0.95) 0%,
    rgba(40, 40, 40, 0.9) 50%,
    rgba(35, 35, 35, 0.95) 100%);
  border: 2px solid rgba(255, 183, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(255, 183, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 183, 0, 0.05) 0%,
    transparent 50%,
    rgba(255, 183, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--orange-yellow-crayola);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(255, 183, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    #ffd700 0%, 
    #ffb700 50%, 
    #ff8f00 100%);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  pointer-events: none;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(255, 215, 0, 0.4),
    inset 0 3px 0 rgba(255, 255, 255, 0.3);
}

.service-icon ion-icon {
  font-size: 36px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.service-title {
  color: var(--white-2);
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.service-price {
  background: linear-gradient(135deg, var(--orange-yellow-crayola), var(--vegas-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-weight: 700;
  text-shadow: none;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 183, 0, 0.3);
  backdrop-filter: blur(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .pricing-card {
    animation: none;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card.premium {
    transform: none;
  }
  
  .pricing-card {
    min-height: auto;
    padding: 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .amount {
    font-size: 36px;
  }
  
  .pricing-title,
  .services-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 20px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .amount {
    font-size: 32px;
  }
}

/* Premium animations */
@keyframes serviceCardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.service-card:nth-child(odd) {
  animation: serviceCardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(even) {
  animation: serviceCardFloat 6s ease-in-out infinite reverse;
}

.service-card:hover {
  animation: none;
}

/* Premium pricing card animations */
@keyframes pricingCardFloat {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(2deg);
  }
}

.pricing-card:nth-child(1) {
  animation: pricingCardFloat 8s ease-in-out infinite;
}

.pricing-card:nth-child(2) {
  animation: pricingCardFloat 8s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.pricing-card:nth-child(3) {
  animation: pricingCardFloat 8s ease-in-out infinite;
  animation-delay: -4s;
}

.pricing-card:nth-child(4) {
  animation: pricingCardFloat 8s ease-in-out infinite reverse;
  animation-delay: -6s;
}

.pricing-card:hover {
  animation: none;
}

/* Premium glow effects */
@keyframes priceGlow {
  0%, 100% {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  50% {
    text-shadow: 
      0 4px 8px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 215, 0, 0.4),
      0 0 40px rgba(255, 193, 7, 0.2);
  }
}

.pricing-card:hover .amount {
  animation: priceGlow 2s ease-in-out infinite;
}