/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1752052935
Updated: 2025-07-09 09:22:15

*/

/* Style the Service Categories List */
.service-categories {
  background: #6ec1e4;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease-in-out;
}
.service-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-categories li {
  margin-bottom: 12px;
  padding: 8px 12px;
  transition: background 0.3s ease;
  border-radius: 6px;
}
.service-categories li:hover {
  background: #eaf5ff;
}
.service-categories li:hover a {
  color: #0077cc;
}
.service-categories a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.service-categories a:hover {
  color: #0077cc;
}

.custom-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0;
}

/* Service Card Styling */
.custom-service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Label badge */
.badge-populaire {
  background: #f97316;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 8px;
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  z-index: 10;
}

.custom-service-thumbnail img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Card Body */
.custom-service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Badge + Rating row */
.badge-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
	gap:10px;
}

.badge-category {
  background: #e0e7ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
	max-width:65%;
}

.star-rating {
  font-size: 14px;
  color: #fbbf24;
}

/* Title & excerpt */
.service-title {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
}

.service-excerpt {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}

/* Meta fields */
.service-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
}

/* Price row */
.price-unit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin: 10px 0;
  color: #1f2937;
}

.price-unit {
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
}

.service-provider {
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
}

/* Chat Button */
.tawk-chat-button {
  background-color: #6ec1e4;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  transition: background 0.3s ease;
}

.tawk-chat-button:hover {
  background-color: #1d4ed8;
}
.service-cat-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-cat-title .icon {
  font-size: 22px;
  color: #ffffff;
}	
.custom-service-header {
  margin-bottom: 30px;
  text-align: left;
}

.services-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.services-subtitle {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
  .custom-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .custom-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .custom-service-thumbnail img {
    height: 160px;
  }

  .service-title {
    font-size: 16px;
  }
}


/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .service-categories {
    margin-bottom: 20px;
  }
  .service-card {
    padding: 15px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 13px;
  }
}
