/* Products Page Specific Styles */

/* Category Badge */
.category-badge {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(26, 53, 91, 0.1);
  color: #1a355b;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Product Lists */
.product-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 53, 91, 0.1);
  transition: all 0.3s ease;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li i {
  color: #1a355b;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.product-list li:hover {
  transform: translateX(5px);
  color: #1a355b;
}

/* Feature List */
.feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.feature-list li {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.feature-list li i {
  color: #1a355b;
  margin-right: 10px;
}

/* Therapeutic Cards */
.therapeutic-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.therapeutic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.therapeutic-icon {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.therapeutic-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.1));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.therapeutic-card:hover .therapeutic-icon::before {
  opacity: 1;
}

.therapeutic-card:hover .therapeutic-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.therapeutic-icon i {
  font-size: 32px;
  /* Removed default color to allow inline colors to work */
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.therapeutic-card:hover .therapeutic-icon i {
  font-size: 36px;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.9);
}

.therapeutic-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a355b;
}

/* Lead Text Styling */
.lead-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

.lead-text p.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a355b;
}

/* Button Styling */
.btn-primary {
  background-color: #1a355b;
  border-color: #1a355b;
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #122540;
  border-color: #122540;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: #1a355b;
  border-color: #1a355b;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1a355b;
  color: #ffffff;
  transform: translateY(-2px);
}

/* CTA Section Enhancements */
.call-to-action {
  background: linear-gradient(rgba(26, 53, 91, 0.9), rgba(26, 53, 91, 0.9)), url('../img/hero-bg.png') center center/cover no-repeat;
  padding: 80px 0;
}

.call-to-action h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #ffffff;
  opacity: 0.9;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.call-to-action .btn-primary,
.call-to-action .btn-secondary {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.call-to-action .btn-primary {
  background-color: #ffffff;
  color: #1a355b;
  border: none;
}

.call-to-action .btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.call-to-action .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.call-to-action .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Show More Button */
#show-more-segments {
  background-color: transparent;
  border: 1px solid #1a355b;
  color: #1a355b;
  transition: all 0.3s ease;
}

#show-more-segments:hover {
  background-color: rgba(26, 53, 91, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .therapeutic-card {
    padding: 20px;
  }
  
  .lead-text p {
    font-size: 1rem;
  }
  
  .lead-text p.lead {
    font-size: 1.1rem;
  }
  
  .call-to-action h2 {
    font-size: 1.8rem;
  }
  
  .call-to-action p {
    font-size: 1rem;
  }
  
  .call-to-action .btn-primary,
  .call-to-action .btn-secondary {
    margin: 5px;
    display: inline-block;
  }
}
