/* Modern Service Cards */
.service-card {
  height: 100%;
  background: #151515;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}



.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(67, 191, 227, 0.3);
}

.service-card-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-header::after {
  opacity: 1;
  animation: shimmer 2s infinite;
}

.service-card-header h3,
.service-card-header .h3,
.service-card-header .h5 {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card-body {
  padding: 2.5rem;
  text-align: center;
}

.service-card-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0 1.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-card-price .price-period {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.7;
  background: var(--text-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card-body > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.service-card-body ul {
  margin: 2rem 0;
  padding: 0;
}

.service-card-feature {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  text-align: left;
  color: var(--text-color);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: var(--transition);
}

/* .service-card-feature svg {
  /* width: 20px;
} */ */
.service-card:hover .service-card-feature {
  transform: translateX(4px);
}

.service-card-feature:nth-child(1) { transition-delay: 0.05s; }
.service-card-feature:nth-child(2) { transition-delay: 0.1s; }
.service-card-feature:nth-child(3) { transition-delay: 0.15s; }
.service-card-feature:nth-child(4) { transition-delay: 0.2s; }
.service-card-feature:nth-child(5) { transition-delay: 0.25s; }

.service-card-feature i {
  color: var(--light-blue);
  margin-right: 1rem;
  font-size: 1.125rem;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  font-weight: 600;
}


/* Modern Feature Cards */
.feature-card {
  background: #151515;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-slow);
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}



.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(67, 191, 227, 0.3);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(67, 191, 227, 0.12) 0%, rgba(67, 191, 227, 0.06) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--light-blue);
  transition: var(--transition);
}

.feature-icon-wrapper-md {
  width: 80px;
  height: 80px;
}

.feature-icon-wrapper-md i {
  font-size: 2.25rem;
}

.feature-icon {
  color: var(--light-blue);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.feature-title {
  color: #43bfe3;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Feature Box (for larger content blocks) */
.feature-box {
  background: #151515;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  border: 1px solid #333;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -16px;
  right: -16px;
  background: rgba(113, 128, 150, 0.3);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.4s ease-out;
  opacity: 0;
}

.transition-shadow:hover::before {
  transform: scale(50);
  opacity: 1;
  transition: all 1s ease-out;
}

.transition-shadow:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.transition-shadow:hover .feature-icon-wrapper {
  transform: rotate(-10deg) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  
}

 .transition-shadow:hover .feature-icon-wrapper i {
  color: #fff;
}

.transition-shadow:hover h3,
.transition-shadow:hover p {
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease-out;
}

.feature-box > * {
  position: relative;
  z-index: 1;
}

.feature-box h3 {
  color: #43bfe3;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.feature-box p {
  color: #a0aec0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-box p:last-child {
  margin-bottom: 0;
}

.feature-box img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-box .card-body {
  padding: 2.5rem;
}

.feature-box .row.g-0 {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

/* Features section styling */
.features-section {
  position: relative;
  margin-top: -2px;
  z-index: 10;
  background-color: #1f2830; 
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}


/* Modern Testimonial Cards */
.testimonial-card {
  background: #151515;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  transition: var(--transition-slow);
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(67, 191, 227, 0.08);
  line-height: 1;
  z-index: 0;
}



.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(67, 191, 227, 0.3);
}

.testimonial-text {
  color: var(--text-color);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-gray);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
  border-color: var(--light-blue);
  transform: scale(1.05);
}

.testimonial-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: 1.0625rem;
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* Rating stars */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
}

/* Review section styling */
.reviews-section {
  background: #1f2830;
  position: relative;
  z-index: 10;
  margin-top: -2px;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid #333;
}

.reviews-section img {
  transition: var(--transition);
  filter: grayscale(100%);
  opacity: 0.7;
}

.reviews-section img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


/* Popular badge for pricing tables */
.popular-plan {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 12px;
  background: #f8dc15;
  color: var(--white);
  font-size: 0.75rem; /* slightly smaller */
  font-weight: 700;
  padding: 0.35rem 0.6rem; /* reduce padding for smaller badge */
  border-radius: 0 0 8px 8px;
  z-index: 1;
  /* box-shadow: 0 4px 12px rgba(67, 191, 227, 0.3); */
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card,
  .feature-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }
  
  .service-card-header {
    padding: 2rem 1.5rem;
  }
  
  .service-card-body {
    padding: 2rem 1.5rem;
  }
  
  .feature-box {
    padding: 2rem;
  }
  
  .service-card-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .service-card-header {
    padding: 1.5rem 1rem;
  }
  
  .service-card-body {
    padding: 1.5rem 1rem;
  }
  
  .feature-box {
    padding: 1.5rem;
  }
  
  .popular-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .service-card-price {
    font-size: 2rem;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon-wrapper i {
    font-size: 2.25rem;
  }

}

.fa-solid.fa-shield-alt {
  font-size: 80px !important; /* of elke maat die je wilt */
}
