/* ================================================
   SERVICES PAGE STYLES (services.html)
   ================================================ */

/* Pricing Section */
.pricing {
  max-width: 100%;
  margin: 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing__card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing__card--featured {
  border-color: #4854D0;
  background: white;
  transform: scale(1.02);
}

.pricing__card--featured .pricing__features {
  font-weight: 500;
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #4854D0;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.pricing__header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: #2c2c2c;
}

.pricing__subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.75rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.pricing__amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4854D0;
}

.pricing__period {
  color: #888;
  font-size: 0.95rem;
}

.pricing__description {
  color: #666;
  font-size: 0.95rem;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.pricing__features {
  list-style: none;
  padding: 0.75rem 0;
  margin: 0.75rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.pricing__features li {
  padding: 0.4rem 0;
  color: #555;
  font-size: 0.95rem;
}

.pricing__features li::before {
  content: "✓ ";
  color: #6FBE57;
  font-weight: bold;
  margin-right: 0.5rem;
}

.pricing__note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
  text-align: center;
}

.btn--block {
  width: 100%;
  padding: 0.85rem 1rem;
  font-weight: bold;
  text-align: center;
  margin-top: auto;
  font-size: 1.05rem;
}

/* Inclusions Section */
.inclusions {
  padding: 4rem 0;
}

.inclusions h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.inclusions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.inclusion__card {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.inclusion__card:hover {
  transform: translateY(-3px);
}

.inclusion__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.inclusion__card h3 {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.inclusion__card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 4rem 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.process>p {
  text-align: center;
  color: #888;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step__number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #4854D0;
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 1rem 0;
  color: #2c2c2c;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, #4854D0, #6FBE57);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.services-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.services-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card--featured {
    transform: scale(1);
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .hero--sm h1 {
    font-size: 1.5rem;
  }

  .hero--sm p {
    font-size: 1rem;
  }
}