/* Services Page Specific Styles */

.page-header {
 background: linear-gradient(135deg, #ffecd2, #fcb69f);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}



.breadcrumb {
  margin-top: 1rem;
}

.breadcrumb a {

  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb a:hover {
color: white;
  opacity: 1;
}

/* Services Categories */
.services-categories {
  padding: 4rem 0;
  background: #f8f9fa;
}

.services-categories h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 3rem;
}

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

.category-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s;
}

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

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-card i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.category-card p {
  color: #666;
  margin-bottom: 1rem;
}

.service-count {
  background: #ff6b35;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Featured Services */
.featured-services {
  padding: 4rem 0;
}

.featured-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 3rem;
}

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

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-type {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6b35;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-info {
  padding: 1.5rem;
}

.service-info h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-provider {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.service-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.duration {
  color: #666;
  font-size: 0.9rem;
}

.duration i {
  color: #ff6b35;
  margin-right: 5px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.rating span {
  color: #666;
  font-size: 0.9rem;
  margin-left: 5px;
}

.service-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-price .current-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff6b35;
}

.service-price .original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.btn-book-service {
  width: 100%;
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-book-service:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background: #f8f9fa;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 3rem;
}

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

.step-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
    margin: 0 auto;
    max-width: 90%;
    text-align: center;
}

/* Become Provider */
.become-provider {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-align: center;
}

.provider-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.provider-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

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

.benefit {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

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

.benefit h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.benefit p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.become-provider .btn-primary {
  background: white;
  color: #ff6b35;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.become-provider .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

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

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

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

  .provider-benefits {
    grid-template-columns: 1fr;
  }

  .service-details {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .services-categories h2,
  .featured-services h2,
  .how-it-works h2 {
    font-size: 2rem;
  }

  .provider-content h2 {
    font-size: 2rem;
  }

  .service-card {
    margin: 0 10px;
  }
}
