/*=================================================================*/
/*                    AI SERVICES - ORIGINAL PINK THEME            */
/*=================================================================*/

/* Keep the services section styling consistent with original theme */
#services {
  padding-top: 110px;
  position: relative;
}

#services .section-title {
  font-size: 36px;
  margin: 0;
  margin-left: 14px;
  position: relative;
  color: #454360;
}

#services .section-title:before {
  content: "";
  background-image: url(../images/dots-bg.svg);
  display: block;
  height: 37px;
  left: -14px;
  top: -14px;
  position: absolute;
  width: 37px;
}

/* Services Grid - Original Style */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* Responsive adjustments for services grid */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service Cards - Matching Original Portfolio Style */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 20px 0px rgba(255, 76, 96, 0.2);
}

/* Service Icon - Using Original Color Scheme */
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 76, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #ff4c60;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #ff4c60;
  color: #fff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #454360;
  margin-bottom: 15px;
}

.service-card p {
  color: #5e5c7f;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-size: 16px;
  color: #ff4c60;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-features li {
  padding: 8px 0;
  color: #5e5c7f;
  font-size: 14px;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff4c60;
  font-weight: 700;
}

/* CTA Buttons - Original Style */
.service-card .btn-default {
  color: #fff;
  background: #ff4c60;
  border-radius: 30px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  line-height: 1;
  padding: 12px 32px;
  display: inline-block;
  text-align: center;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: auto;
}

.service-card .btn-default:hover {
  animation: button-push 0.3s linear 1;
}

/* Featured Card */
.service-card.featured {
  border: 2px solid #ff4c60;
  transform: scale(1.02);
}

.service-card.featured .service-icon {
  background: #ff4c60;
  color: #fff;
}

/* CTA Banner - Original Style */
.cta-banner {
  background: linear-gradient(135deg, #FF6B7D 0%, #FF4C60 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 5px 20px 0px rgba(255, 76, 96, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.cta-banner h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-consultation {
  background: #fff;
  color: #ff4c60;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Trust Stats - Original Style */
.trust-section {
  background: #f9f9ff;
  padding: 70px 0;
  margin-top: 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-stat h4 {
  font-size: 36px;
  font-weight: 700;
  color: #ff4c60;
  margin-bottom: 10px;
}

.trust-stat p {
  color: #5e5c7f;
  font-size: 16px;
}

/* Testimonials - Original Style */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px 0px rgba(255, 76, 96, 0.2);
}

.testimonial-card::before {
  content: '"';
  font-size: 60px;
  color: #ff4c60;
  opacity: 0.1;
  position: absolute;
  top: 20px;
  left: 30px;
  font-weight: 700;
  font-family: Georgia, serif;
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.7;
  color: #5e5c7f;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: #454360;
  margin: 0 0 5px 0;
}

.testimonial-author-info p {
  color: #8b88b1;
  margin: 0;
  font-size: 14px;
}

/* Contact Form Updates - Original Style */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Form Select Styling */
.ios-form-group select.ios-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23454360' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-banner {
    padding: 40px 30px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .service-card {
    min-height: auto;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}