/* Services Page Specific Styles */

/* Services Hero Section */
.banner-section-two {
  background: linear-gradient(135deg, rgba(231, 163, 145, 0.1) 0%, rgba(231, 163, 145, 0.05) 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 80px !important;
  margin-bottom: 40px;
}

.banner-section-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(231,163,145,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.banner-section-two .banner-two__content {
  position: relative;
  z-index: 1;
  padding-top: 250px;
  padding-bottom: 60px;
}

.banner-section-two .banner-two__content .title span:first-child {
  color: #9B59B6 !important;
  font-weight: 700;
}

/* Service Pricing Card */
.service-pricing-card {
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(231, 163, 145, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid rgba(231, 163, 145, 0.2);
}

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

.service-pricing-card:hover::after {
  left: 100%;
}

.service-pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(231, 163, 145, 0.35);
  border-color: var(--theme-color-secondary);
  background: linear-gradient(to bottom, #ffffff 0%, #fff5f2 100%);
}

.service-pricing-card.featured {
  border: 3px solid var(--theme-color1);
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, rgba(231, 163, 145, 0.02) 100%);
}

.service-pricing-card.featured::before {
  content: '⭐ Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--theme-color1), var(--theme-color-secondary));
  color: var(--theme-color-white);
  padding: 8px 45px;
  font-size: 13px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(231, 163, 145, 0.4);
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-pricing-card.featured::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--theme-color1), var(--theme-color-secondary), var(--theme-color1));
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderGlow 3s infinite;
}

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

.service-pricing-card.featured:hover::after {
  opacity: 0.8;
}

/* Service Pricing Header */
.service-pricing-header {
  background: linear-gradient(135deg, #C97A6A 0%, #7A3A8E 100%) !important;
  padding: 45px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-pricing-card.featured .service-pricing-header {
  background: linear-gradient(135deg, #7A3A8E 0%, #C97A6A 100%) !important;
}

.service-pricing-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.15;
  z-index: 0;
}

.service-pricing-header .icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 25px;
  background: #ffffff !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(231, 163, 145, 0.4);
  border: 5px solid rgba(255, 255, 255, 1);
}

.service-pricing-header .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(231, 163, 145, 0.15), rgba(155, 89, 182, 0.15));
  z-index: 0;
}

.service-pricing-card:hover .service-pricing-header .icon-wrapper {
  background: #ffffff !important;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(231, 163, 145, 0.4);
  border-color: #ffffff;
}

.service-pricing-header .icon-wrapper i {
  font-size: 48px !important;
  color: #E7A391 !important;
  position: relative;
  z-index: 2;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1 !important;
}

.service-pricing-header .title,
.service-pricing-header h3.title,
.service-pricing-header h3 {
  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.7) !important;
  letter-spacing: 1px;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  line-height: 1.3 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Service Pricing Body */
.service-pricing-body {
  padding: 40px 30px;
  flex-grow: 1;
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  position: relative;
  min-height: 300px;
}

.service-pricing-body * {
  visibility: visible !important;
  opacity: 1 !important;
}

.service-pricing-body .service-list {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.service-pricing-body .service-list li {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.service-pricing-body .service-list li .service-name,
.service-pricing-body .service-list li .service-price {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
}

.service-pricing-body .offer-badge {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
  color: #ffffff !important;
}

.service-pricing-body .offer-badge {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
}

.service-pricing-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--theme-color-secondary-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  min-height: 200px;
}

.service-list li {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 50px;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 10px;
  margin-bottom: 5px;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, var(--theme-color1), var(--theme-color-secondary));
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.service-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-list li:hover {
  background: linear-gradient(135deg, rgba(231, 163, 145, 0.05) 0%, rgba(231, 163, 145, 0.02) 100%);
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(231, 163, 145, 0.1);
  transform: translateX(5px);
}

.service-list li:hover::before {
  height: 60%;
}

.service-name {
  font-size: 16px !important;
  color: #222 !important;
  font-weight: 600 !important;
  flex: 1;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 30px;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  line-height: 1.5 !important;
}

.service-list li::after {
  content: '✓';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-color-secondary);
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease;
  background: rgba(231, 163, 145, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-list li:hover::after {
  opacity: 1;
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: translateY(-50%) scale(1.1);
}

.service-list li:hover .service-name {
  color: var(--theme-color1);
  padding-left: 35px;
  font-weight: 700;
}

.service-price {
  font-size: 20px !important;
  color: #E7A391 !important;
  font-weight: 800 !important;
  white-space: nowrap;
  margin-left: 15px;
  position: relative;
  transition: all 0.3s ease;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-price::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--theme-color-secondary);
  transition: width 0.3s ease;
}

.service-list li:hover .service-price {
  transform: scale(1.1);
  color: var(--theme-color-secondary);
}

.service-list li:hover .service-price::before {
  width: 100%;
}

/* Offer Badge */
.offer-badge {
  background: linear-gradient(135deg, #E7A391 0%, #9B59B6 100%) !important;
  color: #ffffff !important;
  padding: 14px 25px !important;
  border-radius: 30px;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-align: center;
  display: inline-block !important;
  width: 100%;
  box-shadow: 0 6px 25px rgba(231, 163, 145, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1.5 !important;
}

.offer-badge::before {
  content: '🎁';
  margin-right: 10px;
  font-size: 18px;
  display: inline-block !important;
  vertical-align: middle;
  opacity: 1 !important;
  visibility: visible !important;
}

.offer-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: left 0.5s ease;
}

.offer-badge:hover::after {
  left: 100%;
}

.offer-badge.highlight {
  background: linear-gradient(135deg, #9B59B6 0%, #E7A391 100%) !important;
  font-size: 15px !important;
  padding: 16px 25px !important;
  box-shadow: 0 8px 30px rgba(231, 163, 145, 0.5) !important;
  animation: pulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(231, 163, 145, 0.4);
  }
  50% {
    box-shadow: 0 6px 35px rgba(231, 163, 145, 0.6);
  }
}

/* Service Pricing Footer */
.service-pricing-footer {
  padding: 0 30px 30px;
  background: linear-gradient(to top, #fafafa 0%, #ffffff 100%);
}

.service-pricing-footer .btn-two {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 16px 30px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-pricing-footer .btn-two::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.service-pricing-footer .btn-two:hover::before {
  width: 300px;
  height: 300px;
}

.service-pricing-footer .btn-two:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 163, 145, 0.4);
}

/* Section Title Enhancements */
.service-section .section-title {
  position: relative;
  margin-bottom: 70px;
}

.service-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--theme-color1), transparent);
  border-radius: 2px;
}

.service-section .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* Services Page Responsive Styles */
@media (max-width: 991px) {
  .service-pricing-header {
    padding: 25px 15px;
  }
  
  .service-pricing-header .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .service-pricing-header .icon-wrapper i {
    font-size: 32px;
  }
  
  .service-pricing-header .title {
    font-size: 22px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
  }
  
  .service-pricing-body {
    padding: 25px 20px;
  }
  
  .service-list li {
    padding: 12px 0;
  }
  
  .service-name {
    font-size: 14px;
  }
  
  .service-price {
    font-size: 15px;
  }
  
  .offer-badge {
    font-size: 12px;
    padding: 8px 15px;
  }
}

@media (max-width: 767px) {
  .service-pricing-card {
    margin-bottom: 25px;
  }
  
  .service-pricing-header {
    padding: 30px 15px;
  }
  
  .service-pricing-header .icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .service-pricing-header .icon-wrapper i {
    font-size: 36px;
  }
  
  .offer-badge {
    font-size: 12px;
    padding: 12px 20px;
  }
  
  .offer-badge::before {
    font-size: 16px;
    margin-right: 8px;
  }
  
  .service-pricing-header .title {
    font-size: 20px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
  }
  
  .service-pricing-body {
    padding: 20px 15px;
  }
  
  .service-list li {
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-price {
    margin-left: 0;
    margin-top: 5px;
  }
  
  .service-name {
    font-size: 15px;
    padding-left: 0px;
  }
  
  .service-price {
    font-size: 16px;
  }
  
  .service-pricing-footer {
    padding: 0 15px 20px;
  }
  
  .service-pricing-card.featured::before {
    top: 10px;
    right: -25px;
    padding: 4px 35px;
    font-size: 11px;
  }
}
