/* Healthcare Landing Page Specific Styles */

:root {
  --healthcare-primary: #2c7da0;
  --healthcare-secondary: #61a5c2;
  --healthcare-accent: #a9d6e5;
  --healthcare-success: #52b788;
  --healthcare-dark: #264653;
  --healthcare-light: #f1faee;
}

/* Enhanced button styling for healthcare theme */
.btn-get-started {
  background: linear-gradient(45deg, var(--healthcare-primary), var(--healthcare-secondary));
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 125, 160, 0.3);
}

/* Service items styling */
.service-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--healthcare-primary);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 125, 160, 0.15);
}

.service-item .icon {
  background: linear-gradient(135deg, var(--healthcare-primary), var(--healthcare-secondary));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

/* Portfolio filters styling */
.portfolio-filters li {
  background: var(--healthcare-light);
  color: var(--healthcare-dark);
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  background: var(--healthcare-primary);
  color: white;
  border-color: var(--healthcare-primary);
}

/* Stats section enhancement */
.stats-item {
  background: white;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-top: 4px solid var(--healthcare-primary);
}

.stats-item .purecounter {
  color: var(--healthcare-primary);
  font-weight: 700;
  font-size: 3rem;
}

/* Testimonials styling */
.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--healthcare-success);
}

.testimonial-img {
  border: 4px solid var(--healthcare-accent);
}

/* Team member cards */
.member {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 125, 160, 0.15);
}

.member-info {
  background: var(--healthcare-light);
  padding: 20px;
  text-align: center;
}

.member-info h4 {
  color: var(--healthcare-dark);
  margin-bottom: 5px;
}

.member-info span {
  color: var(--healthcare-primary);
  font-weight: 500;
}

/* FAQ section styling */
.accordion-button {
  background: var(--healthcare-light);
  color: var(--healthcare-dark);
  border: none;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--healthcare-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(44, 125, 160, 0.25);
}

/* Contact section enhancement */
.info-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 125, 160, 0.15);
}

.info-item i {
  font-size: 48px;
  color: var(--healthcare-primary);
  margin-bottom: 15px;
}

/* Hero section enhancements */
.hero h1 {
  color: var(--healthcare-dark);
  line-height: 1.2;
}

.hero p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Navigation enhancements */
.navbar-nav .btn-primary {
  background: var(--healthcare-primary);
  border-color: var(--healthcare-primary);
  padding: 8px 20px;
  border-radius: 25px;
}

.navbar-nav .btn-primary:hover {
  background: var(--healthcare-secondary);
  border-color: var(--healthcare-secondary);
  transform: translateY(-1px);
}

/* Section titles */
.section-title h2 {
  color: var(--healthcare-dark);
}

.section-title span {
  color: var(--healthcare-primary);
  font-weight: 600;
}

/* Footer styling */
.footer {
  background: var(--healthcare-dark);
  color: var(--healthcare-light);
}

.footer .sitename {
  color: white;
  font-weight: 700;
}

.footer a {
  color: var(--healthcare-accent);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.social-links a {
  background: var(--healthcare-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--healthcare-secondary);
  transform: translateY(-2px);
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .service-item {
    margin-bottom: 20px;
  }
  
  .stats-item .purecounter {
    font-size: 2.5rem;
  }
}

/* Loading animation for better UX */
.service-item,
.stats-item,
.member,
.testimonial-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay animations for staggered effect */
.service-item:nth-child(2) { animation-delay: 0.1s; }
.service-item:nth-child(3) { animation-delay: 0.2s; }
.stats-item:nth-child(2) { animation-delay: 0.1s; }
.stats-item:nth-child(3) { animation-delay: 0.2s; }
.stats-item:nth-child(4) { animation-delay: 0.3s; } 