/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo h2 {
  color: #e74c3c;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
  margin-left: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: #e74c3c;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1001;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: #e74c3c;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.btn-primary:hover {
  background: #c0392b;
  border-color: #c0392b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #e74c3c;
  border-color: #e74c3c;
}

.btn-outline:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 80px 0;
}

/* Features */
.features {
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

/* About Preview */
.about-preview {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.about-text p {
  margin-bottom: 1rem;
  color: #666;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Services Preview */
.services-preview {
  background: #f8f9fa;
  padding: 80px 0;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: #333;
}

.service-card p {
  padding: 0 1.5rem;
  color: #666;
  margin-bottom: 1rem;
}

.service-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #e74c3c;
}

.footer-section p,
.footer-section li {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e74c3c;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #e74c3c;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  opacity: 0.8;
}

/* Motivation Page Styles */
.motivation-quotes {
  padding: 80px 0;
  background: #f8f9fa;
}

.motivation-quotes h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quote-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote-card i {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.quote-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.quote-card span {
  font-weight: bold;
  color: #e74c3c;
}

/* Success Stories */
.success-stories {
  padding: 80px 0;
}

.success-stories h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.story-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 1.5rem;
}

.story-content h3 {
  margin-bottom: 1rem;
  color: #333;
}

.story-content p {
  color: #666;
  margin-bottom: 1rem;
}

.story-stats {
  display: flex;
  gap: 1rem;
}

.story-stats span {
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

/* Tips */
.motivation-tips {
  padding: 80px 0;
  background: #f8f9fa;
}

.motivation-tips h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.tip-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.tip-card p {
  color: #666;
}

/* Program Overview */
.program-overview {
  padding: 80px 0;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.overview-text p {
  margin-bottom: 1.5rem;
  color: #666;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-list i {
  color: #e74c3c;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Plans */
.plans {
  padding: 80px 0;
  background: #f8f9fa;
}

.plans h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured {
  border: 3px solid #e74c3c;
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.plan-card h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
}

/* Workout Preview */
.workout-preview {
  padding: 80px 0;
}

.workout-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.workout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.workout-day {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.workout-day h3 {
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
  background: #e74c3c;
  color: white;
  padding: 1rem;
  border-radius: 5px;
}

.exercise-list {
  list-style: none;
}

.exercise-list li {
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 5px;
}

/* Nutrition Tips */
.nutrition-tips {
  padding: 80px 0;
  background: #f8f9fa;
}

.nutrition-tips h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

/* Success Metrics */
.success-metrics {
  padding: 80px 0;
}

.success-metrics h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.metric-card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.metric-card p {
  color: #666;
}

/* About Page Styles */
.founder-section {
  padding: 80px 0;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.founder-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.founder-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.founder-text h3 {
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.founder-text p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.credentials {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.credentials h4 {
  margin-bottom: 1rem;
  color: #333;
}

.credentials ul {
  list-style: none;
}

.credentials li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.credentials li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mv-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.mv-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.mv-card p {
  color: #666;
  line-height: 1.8;
}

/* Our Story */
.our-story {
  padding: 80px 0;
}

.our-story h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.story-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  align-items: center;
  gap: 2rem;
}

.timeline-year {
  background: #e74c3c;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.timeline-content p {
  color: #666;
}

/* Statistics */
.statistics {
  padding: 80px 0;
  background: #f8f9fa;
}

.statistics h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reason-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.reason-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.reason-card p {
  color: #666;
  line-height: 1.8;
}

/* Team Page Styles */
.team-leader {
  padding: 80px 0;
}

.leader-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.leader-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.leader-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.leader-text h3 {
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.leader-text p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.leader-specialties {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.specialty {
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

/* Team Members */
.team-members {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-members h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.team-info h4 {
  color: #e74c3c;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-info p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-specialties {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.team-specialties span {
  background: #f8f9fa;
  color: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  color: #666;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: #e74c3c;
}

/* Team Values */
.team-values {
  padding: 80px 0;
}

.team-values h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.value-card p {
  color: #666;
  line-height: 1.8;
}

/* Join Team */
.join-team {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.join-team h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #333;
}

.join-team p {
  margin-bottom: 2rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Pricing Page Styles */
.pricing-plans {
  padding: 80px 0;
}

.pricing-plans h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 3px solid #e74c3c;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.pricing-card h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.price {
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 1.5rem;
  color: #e74c3c;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
}

.period {
  font-size: 1rem;
  color: #666;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.features li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.features li i.fa-check {
  color: #27ae60;
}

.features li i.fa-times {
  color: #e74c3c;
}

/* Annual Plans */
.annual-plans {
  padding: 80px 0;
  background: #f8f9fa;
}

.annual-plans h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #333;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.1rem;
}

.annual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.annual-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.annual-card:hover {
  transform: translateY(-5px);
}

.annual-card.featured {
  border: 3px solid #e74c3c;
  transform: scale(1.05);
}

.best-value {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #27ae60;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.annual-card h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.annual-price {
  margin-bottom: 1rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  display: block;
}

.discounted-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e74c3c;
  display: block;
}

.savings {
  background: #27ae60;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.annual-card p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* Add-on Services */
.addon-services {
  padding: 80px 0;
}

.addon-services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.addon-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
}

.addon-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.addon-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.addon-card p {
  color: #666;
}

/* Special Offers */
.special-offers {
  padding: 80px 0;
  background: #f8f9fa;
}

.special-offers h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.offer-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f39c12;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.offer-card h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.3rem;
}

.offer-card p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
}

.offer-code {
  background: #2c3e50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-family: monospace;
  font-weight: bold;
}

/* FAQ */
.pricing-faq {
  padding: 80px 0;
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: #333;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Mentorship Page Styles */
.mentorship-overview {
  padding: 80px 0;
}

.mentorship-packages {
  padding: 80px 0;
  background: #f8f9fa;
}

.mentorship-packages h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.featured {
  border: 3px solid #e74c3c;
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.package-card h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.package-duration {
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.package-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

/* Mentor Profiles */
.mentor-profiles {
  padding: 80px 0;
}

.mentor-profiles h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mentor-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

.mentor-card.featured-mentor {
  border: 3px solid #e74c3c;
}

.mentor-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.mentor-info {
  padding: 1.5rem;
}

.mentor-info h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.mentor-info h4 {
  color: #e74c3c;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.mentor-info p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mentor-specialties {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mentor-specialties span {
  background: #f8f9fa;
  color: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.mentor-rate {
  font-weight: bold;
  color: #e74c3c;
  font-size: 1.1rem;
}

/* What's Included */
.whats-included {
  padding: 80px 0;
  background: #f8f9fa;
}

.whats-included h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.included-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.included-item:hover {
  transform: translateY(-5px);
}

.included-item i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.included-item h3 {
  margin-bottom: 1rem;
  color: #333;
}

.included-item p {
  color: #666;
  line-height: 1.8;
}

/* Mentorship Success */
.mentorship-success {
  padding: 80px 0;
}

.mentorship-success h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.success-story {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.success-story:hover {
  transform: translateY(-5px);
}

.success-story img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.story-content h3 {
  margin-bottom: 1rem;
  color: #333;
}

.story-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.story-author {
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.story-results {
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  display: inline-block;
}

/* Application Process */
.application-process {
  padding: 80px 0;
  background: #f8f9fa;
}

.application-process h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step h3 {
  margin-bottom: 1rem;
  color: #333;
  margin-top: 1rem;
}

.step p {
  color: #666;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 2rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #e74c3c;
  margin-top: 0.2rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-item p {
  margin-bottom: 0.3rem;
  color: #333;
  font-weight: 500;
}

.contact-item span {
  color: #666;
  font-size: 0.9rem;
}

.social-contact h3 {
  margin-bottom: 1rem;
  color: #333;
}

.social-contact .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #333;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #f8f9fa;
  color: #e74c3c;
}

.social-link i {
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  position: relative;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Quick Contact */
.quick-contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.quick-contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.quick-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quick-option {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.quick-option:hover {
  transform: translateY(-5px);
}

.quick-option i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.quick-option h3 {
  margin-bottom: 1rem;
  color: #333;
}

.quick-option p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Contact FAQ */
.contact-faq {
  padding: 80px 0;
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
  font-size: 4rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  margin-bottom: 1rem;
  color: #333;
}

.map-placeholder > p {
  margin-bottom: 2rem;
  color: #666;
}

.map-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: left;
}

.map-detail {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
}

.map-detail strong {
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content,
  .overview-content,
  .founder-content,
  .leader-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid,
  .services-grid,
  .plans-grid,
  .tips-grid,
  .team-grid,
  .pricing-grid,
  .packages-grid,
  .mentors-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .success-story {
    flex-direction: column;
    text-align: center;
  }

  .success-story img {
    width: 100px;
    height: 100px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .map-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .plan-card.featured,
  .pricing-card.featured,
  .package-card.featured,
  .annual-card.featured {
    transform: none;
  }

  .stats-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
