.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-bg img.active {
  opacity: 1;
}

.hero-content {
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 900px;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-text h1 span {
  color: #1FA6A8;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero-subtitle {
  margin: 2rem 0;
}

.hero-subtitle h3 {
  font-size: 1.8rem;
  color: #1FA6A8;
  margin-bottom: 0.5rem;
}

.hero-subtitle p {
  font-size: 1.2rem;
  color: var(--white);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #7B3CB4, #3C4DB3);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Packages Banner */
.packages-banner {
  background: linear-gradient(135deg, var(--med-indigo) 0%, var(--med-purple) 100%);
  padding: 5rem 2rem;
  color: var(--white);
  position: relative;
}

.package-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.package-container h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.package-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--med-teal);
  font-weight: 600;
}

.packages-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1100px;
  visibility: visible !important;
  opacity: 1 !important;
}

.package-box {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border-top: 5px solid #1FA6A8;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

.package-box.featured {
  border-top-color: var(--med-purple);
  transform: scale(1.05);
}

.package-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(31, 166, 168, 0.4);
}

.package-box.featured:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(123, 60, 180, 0.5);
}

.package-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--med-indigo);
  font-weight: 900;
  text-transform: uppercase;
}

.package-box.featured h3 {
  color: var(--med-purple);
}

.package-box p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #333;
  line-height: 1.7;
}

.package-price {
  background: linear-gradient(135deg, var(--med-teal), var(--med-blue));
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 900;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(31, 166, 168, 0.3);
}

.package-price:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(31, 166, 168, 0.5);
}

.package-price.featured-price {
  background: linear-gradient(135deg, var(--med-purple), var(--med-indigo));
  box-shadow: 0 5px 20px rgba(123, 60, 180, 0.3);
}

.package-price.featured-price:hover {
  box-shadow: 0 8px 30px rgba(123, 60, 180, 0.5);
}

.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.phone-numbers {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: #1FA6A8;
  margin-top: 1rem !important;
}

/* Leader's Message Section */
.leader-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #E6EDF0 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.leader-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 166, 168, 0.1), transparent);
  border-radius: 50%;
}

.leader-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.leader-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-left: 5px solid #1FA6A8;
}

.leader-content h2 {
  color: #1F5DAA;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.leader-greeting {
  color: #1FA6A8;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.leader-content p {
  color: var(--dark-text);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.leader-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #E6EDF0;
  color: #1F5DAA;
  font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #E6EDF0 0%, #FFFFFF 100%);;
  padding: 3rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1FA6A8, #1F5DAA);
  border-radius: 15px;
  min-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(31, 166, 168, 0.2);
}

.stat-box:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(31, 166, 168, 0.4);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-plus {
  display: inline;
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* Package Benefits */
.package-benefits {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1F5DAA;
  margin-bottom: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.benefits-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.benefit-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 280px;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 2px solid transparent;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1FA6A8, #7B3CB4);
  transition: left 0.5s;
}

.benefit-card:hover::before {
  left: 0;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(31, 166, 168, 0.3);
  border-color: #1FA6A8;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1F5DAA, #1FA6A8);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
  fill: white;
}

.benefit-card h3 {
  color: #1F5DAA;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.benefit-card p {
  color: var(--dark-text);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #3C4DB3, #7B3CB4);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

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

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

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

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-subtitle h3 {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .package-container h2 {
    font-size: 2rem;
  }

  .packages-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .package-box.featured {
    transform: scale(1);
  }

  .package-box:hover,
  .package-box.featured:hover {
    transform: translateY(-5px);
  }

  .stats-container {
    flex-direction: column;
  }

  .stat-number {
    font-size: 3rem;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    max-width: 100%;
  }

  .services-grid {
    flex-direction: column;
    overflow-x: visible;
  }

  .service-card {
    min-width: 100%;
  }
}