/*--------------------------------------------------------------
# Service Pages Styles
--------------------------------------------------------------*/

/* Hero Banner */
.service-hero {
  background: linear-gradient(rgba(0, 95, 136, 0.8), rgba(0, 95, 136, 0.8)), url('../img/slide/slide-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}

.service-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.service-hero p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 32px;
  }
  .service-hero p {
    font-size: 16px;
  }
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-body {
  padding: 25px;
}

.product-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #005F88;
  margin-bottom: 15px;
}

.product-card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Button */
.btn-read-more {
  background: #005F88;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-read-more:hover {
  background: #F09143;
  color: #fff;
  transform: translateY(-2px);
}

/* Expanded Content */
.product-card-expanded {
  display: none;
  padding: 0 25px 25px;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-expanded.active {
  display: block;
}

.expanded-section {
  margin-bottom: 20px;
}

.expanded-section h5 {
  font-size: 18px;
  font-weight: 600;
  color: #005F88;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F09143;
}

.expanded-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expanded-section ul li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.expanded-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #005F88;
  font-weight: bold;
}

/* Enquiry/Quote Button */
.btn-enquiry {
  background: #F09143;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn-enquiry:hover {
  background: #005F88;
  color: #fff;
  transform: translateY(-2px);
}

/* Large Cards for Ceilings and PVC pages */
.large-card {
  min-height: 400px;
}

.large-card img {
  height: 300px;
}

/* Breadcrumb */
.breadcrumb-custom {
  background: #f6f6f6;
  padding: 15px 0;
  margin-top: 90px;
}

.breadcrumb-custom .breadcrumb-item a {
  color: #005F88;
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: #666;
}

/* Service Page Section */
.service-page-section {
  padding: 60px 0;
}

.service-page-section .section-title h2 {
  color: #005F88;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .product-card img {
    height: 200px;
  }
  
  .large-card img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .product-card img {
    height: 180px;
  }
  
  .product-card-body {
    padding: 20px;
  }
  
  .product-card-title {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.faq-section .section-title h2 {
  color: #005F88;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #005F88;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  padding: 15px 20px;
}

.faq-section .accordion-button:not(.collapsed) {
  background: #005F88;
  color: #fff;
  border-color: #005F88;
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 95, 136, 0.25);
}

.faq-section .accordion-body {
  color: #555;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.faq-section .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Reviews Section
--------------------------------------------------------------*/
.reviews-section {
  padding: 60px 0;
}

.reviews-section .section-title h2 {
  color: #005F88;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-rating {
  color: #FFD700;
  font-size: 24px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.review-name {
  font-size: 18px;
  font-weight: 600;
  color: #005F88;
  margin-bottom: 5px;
}

.review-location {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.review-location i {
  margin-right: 5px;
  color: #F09143;
}

.review-comment {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .faq-section .section-title h2,
  .reviews-section .section-title h2 {
    font-size: 28px;
  }
  
  .review-card {
    padding: 20px;
  }
}
