/* Homepage Benefits Styles */

/* Hero Section Enhancement */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero Trust Indicators */
.hero-trust-indicators {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-indicator {
  text-align: center;
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-indicator:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.trust-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Enhanced Buttons */
.btn.enhanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  min-height: 60px;
  justify-content: center;
}

.btn.enhanced .btn-text {
  font-weight: 600;
  font-size: 1rem;
}

.btn.enhanced .btn-subtext {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Advanced Care Access Section */
.advanced-care {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
}

.advanced-care::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.advanced-care .container {
  position: relative;
  z-index: 1;
}

.advanced-care .section-title {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.advanced-care .section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.care-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.care-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.care-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.care-item h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.care-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.care-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.benefit {
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.care-cta {
  text-align: center;
}

.care-disclaimer {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Patient Stories Section */
.patient-stories {
  background: var(--white);
  padding: 4rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.story-content {
  position: relative;
}

.story-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.story-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-author strong {
  color: var(--text-dark);
  font-weight: 600;
}

.story-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.stories-cta {
  text-align: center;
}

/* Benefits Cards */
.destination-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Ensure SVG icons show properly */
.destination-header .destination-icon {
  color: var(--primary);
}
.destination-icon img,
.destination-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  vertical-align: middle;
}

.destination-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.destination-card.premium {
  border: 2px solid var(--primary);
  position: relative;
}

.premium-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-trust-indicators {
    gap: 1rem;
  }
  
  .trust-indicator {
    padding: 0.75rem;
  }
  
  .trust-number {
    font-size: 1.25rem;
  }
  
  .savings-grid {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .btn.enhanced {
    min-height: 50px;
    padding: 0.75rem 1rem;
  }
  
  .btn.enhanced .btn-text {
    font-size: 0.875rem;
  }
  
  .btn.enhanced .btn-subtext {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .saving-item {
    padding: 1.5rem;
  }
  
  .story-card {
    padding: 1.5rem;
  }
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

/* Improve outline button contrast on dark gradient */
.final-cta .btn-outline {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background-color: transparent;
}

.final-cta .btn-outline:hover,
.final-cta .btn-outline:focus {
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: #ffffff;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.final-cta .btn-outline .btn-subtext {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-height: 70px;
}

.btn-lg .btn-text {
  font-weight: 600;
}

.btn-lg .btn-subtext {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-lg {
    width: 100%;
    max-width: 300px;
  }
} 