/* Services Page Specific Styles */

/* Container for services page */
.services-container {
  max-width: 1140px;
  margin: 40px auto;
  padding: 40px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.bar-link {
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  padding: 10px 20px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  background-color: white;
  white-space: nowrap;
}

.bar-link:hover {
  background-color: rgba(238, 126, 39, 0.1);
  transform: translateY(-2px);
}

.bar-link.active {
  background-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgba(238, 126, 39, 0.2);
}

/* Service Card */
.service-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.service-card .price {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card ul {
  padding-left: 0;
  margin: 15px 0 25px;
}

.service-card ul li {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.service-card ul li::before {
  content: '✓';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 16px;
}

/* Card Layout */
.card-header,
.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.card-header h4 {
  font-size: 1.4rem;
  color: var(--text-heading-color);
  margin: 0;
}

.card-info {
  color: #666;
  font-size: 0.95rem;
}

.card-info p:first-child {
  font-weight: 600;
}

.fw-semibold {
  font-weight: 600;
  color: var(--text-heading-color);
  margin-top: 25px;
  display: block;
  font-size: 1.1rem;
}

.card-actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Buttons */
.request-btn {
  border: 2px solid var(--accent-color);
  background-color: white;
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 15px;
  min-width: 160px;
}

.request-btn a {
  color: var(--accent-color);
  text-decoration: none;
}

.request-btn:hover {
  background-color: var(--accent-color);
  /* color: white; */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(238, 126, 39, 0.2);
}

.request-btn:hover a {
  color: white;
}

.whatsapp-btn {
  background-color: #25D366;
  border: none;
  padding: 12px 20px;
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn a {
  color: #fff;
  text-decoration: none;
}

.whatsapp-btn a i {
  color: #fff;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

/* Responsive for Services Page */
@media (max-width: 768px) {
  .services-container {
    padding: 40px 20px;
  }
  
  .filter-bar {
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .filter-bar::-webkit-scrollbar {
    height: 5px;
  }
  
  .filter-bar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .filter-bar::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
  }
  
  .card-header,
  .card-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .card-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .request-btn,
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
  
  .service-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 30px 15px;
  }
  
  .bar-link {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .card-header h4 {
    font-size: 1.2rem;
  }
  
  .service-card .price {
    font-size: 1.2rem;
  }
}