/* =====================================================
   ULTRA MODERN PRICING SECTION STYLES
   ===================================================== */

.ultra-pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e8f5ff 100%);
  position: relative;
  overflow: hidden;
}

.ultra-pricing-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 119, 190, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.ultra-pricing-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.pricing-container-ultra {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Ultra Modern Header */
.pricing-header-ultra {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.price-year-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pricing-main-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
}

.title-line-1 {
  display: block;
  background: linear-gradient(90deg, #0077BE 0%, #4A90E2 50%, #0077BE 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.title-line-2 {
  display: block;
  color: #2c3e50;
  font-size: 72px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 10px;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.header-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid #e3f2fd;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #0077BE;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.2);
  border-color: #0077BE;
}

/* Ultra Modern Pricing Cards */
.pricing-cards-ultra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card-ultra {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card-ultra:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card-ultra.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 119, 190, 0.25);
  border: 3px solid #0077BE;
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #DC3545, #FF6B6B);
  color: white;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
  z-index: 10;
}

/* Card Header */
.card-header-ultra {
  padding: 35px 30px;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
  border-bottom: 2px solid #e8f5ff;
}

.card-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #5a6c7d;
  margin-bottom: 15px;
}

.card-price-range {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.from-price {
  font-size: 42px;
  font-weight: 900;
  color: #0077BE;
  line-height: 1;
}

.emergency-card .from-price {
  color: #DC3545;
}

.price-label {
  font-size: 18px;
  color: #8795a1;
  font-weight: 600;
}

/* Services List */
.card-services-list {
  padding: 30px;
}

.service-item-ultra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f8ff;
  transition: all 0.3s ease;
}

.service-item-ultra:last-child {
  border-bottom: none;
}

.service-item-ultra:hover {
  background: linear-gradient(90deg, transparent 0%, #f8fbff 50%, transparent 100%);
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 8px;
}

.service-item-ultra.highlight {
  background: linear-gradient(90deg, #fff5f5 0%, #ffebee 100%);
  padding: 15px 10px;
  margin: 0 -10px;
  border-radius: 12px;
  border: 2px solid #ffcdd2;
}

.service-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.service-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  border-radius: 50%;
  flex-shrink: 0;
}

.emergency-card .service-dot {
  background: linear-gradient(135deg, #DC3545, #FF6B6B);
}

.service-dot.pulse {
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
}

.service-name {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.service-price-tag {
  font-size: 15px;
  font-weight: 700;
  color: #0077BE;
  white-space: nowrap;
}

.emergency-card .service-price-tag {
  color: #DC3545;
}

/* Emergency Note */
.emergency-note {
  margin: 0 30px 20px;
  padding: 12px;
  background: linear-gradient(135deg, #fff9e6, #fff3cd);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #856404;
  border: 2px solid #ffeaa7;
}

/* CTA Buttons */
.card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 60px);
  margin: 0 30px 30px;
  padding: 18px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

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

.card-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

.emergency-btn {
  background: linear-gradient(135deg, #DC3545, #FF6B6B);
  animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(220, 53, 69, 0.5);
  }
}

.arrow-icon,
.phone-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Info Strip */
.pricing-info-strip {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.info-strip-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.strip-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.strip-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.strip-text strong {
  font-size: 14px;
  color: #2c3e50;
}

.strip-text span {
  font-size: 12px;
  color: #8795a1;
}

.strip-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #e3f2fd, transparent);
}

/* CTA Banner */
.pricing-cta-banner {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(30, 60, 114, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-left h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.cta-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-phone-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: white;
  color: #1e3c72;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-phone-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: 0;
}

.cta-phone-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-phone-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-phone-button:hover .phone-number,
.cta-phone-button:hover .call-text {
  color: white;
}

.phone-number {
  font-size: 24px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.call-text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-cards-ultra {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-card-ultra.featured {
    transform: scale(1);
  }
  
  .title-line-2 {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .pricing-main-title {
    font-size: 36px;
  }
  
  .title-line-2 {
    font-size: 42px;
    letter-spacing: 2px;
  }
  
  .from-price {
    font-size: 32px;
  }
  
  .info-strip-content {
    flex-direction: column;
    text-align: center;
  }
  
  .strip-item {
    width: 100%;
    justify-content: center;
  }
  
  .strip-divider {
    display: none;
  }
  
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-left h3 {
    font-size: 24px;
  }
  
  .cta-left p {
    font-size: 16px;
  }
  
  .cta-phone-button {
    width: 100%;
    max-width: 280px;
  }
  
  .pricing-cta-banner {
    padding: 35px 25px;
  }
  
  .card-header-ultra {
    padding: 25px 20px;
  }
  
  .card-services-list {
    padding: 20px;
  }
  
  .service-name {
    font-size: 14px;
  }
  
  .service-price-tag {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pricing-header-ultra {
    margin-bottom: 40px;
  }
  
  .pricing-main-title {
    font-size: 28px;
  }
  
  .title-line-2 {
    font-size: 32px;
  }
  
  .header-features {
    gap: 15px;
  }
  
  .feature-tag {
    font-size: 12px;
    padding: 8px 15px;
  }
  
  .from-price {
    font-size: 28px;
  }
  
  .card-cta-btn {
    font-size: 14px;
    padding: 15px;
  }
  
  .phone-number {
    font-size: 20px;
  }
}