/* Landing Page Styles */

:root {
  --primary-color: #2e7d5a;
  --secondary-color: #4caf50;
  --accent-color: #f7b731;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #2e7d5a 0%, #4caf50 100%);
  --gradient-accent: linear-gradient(135deg, #f7b731 0%, #ff6b6b 100%);
}

/* Hero / Banner Section */
.banner-section {
  background: #f0faf5;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(46, 125, 90, 0.1);
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.banner-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-light);
}

.banner-section .btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
}

.banner-section .btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 90, 0.3);
}

.banner-section .btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
}

.banner-section .btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.banner-stats .stat-item {
  text-align: center;
}

.banner-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.banner-stats .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: var(--secondary-color);
}

.feature-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Featured Coaches Section */
.featured-coaches-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.coach-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.coach-image {
  margin-bottom: 1.5rem;
}

.coach-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.coach-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.coach-specialty {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.coach-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coach-stats {
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
}

.testimonial-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.step-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.step-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: #f0faf5;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(46, 125, 90, 0.1);
}

.cta-section .section-title {
  color: var(--text-dark);
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
}

.form-control {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 90, 0.25);
}

.form-select {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 90, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-title {
    font-size: 1.8rem;
  }

  .banner-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card,
  .step-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .step-card {
    padding: 2rem 1rem;
  }
}

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

.feature-card,
.step-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Badge Styles */
.bg-primary-light {
  background-color: rgba(46, 125, 90, 0.1) !important;
}

.banner-section .badge {
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  background-color: rgba(46, 125, 90, 0.1) !important;
  color: var(--primary-color) !important;
}

/* Lifestyle Issues */
.issue-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.issue-card:hover {
  transform: translateY(-3px);
}

.issue-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-pink { color: #e91e63 !important; }

/* Icon Styling Enhancement */
i.fas.text-info {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Offerings Section */
.offering-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.offering-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--bg-light);
  position: relative;
}

.how-it-works-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(46, 125, 90, 0.3);
}

.step-content h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Differentiation Section */
.difference-stat {
  text-align: center;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(46, 125, 90, 0.3);
}

.stat-circle .stat-number {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h6 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.author-info small {
  color: var(--text-light);
}

/* CTA Section (duplicate override removed) */

.bg-gradient-primary {
  background: #f0faf5;
}

/* Custom Bootstrap overrides */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-primary);
  filter: brightness(1.1);
}

.text-primary {
  color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2.5rem;
  }
  
  .offering-card,
  .issue-card {
    margin-bottom: 2rem;
  }
  
  .how-it-works-step {
    margin-bottom: 3rem;
  }
}
