/* style/th-thao.css */
.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #0A2239;
  line-height: 1.6;
  background-color: #F5F5DC; /* Background color */
}

.page-th-thao .section-padding {
  padding: 60px 0;
}

.page-th-thao .bg-dark {
  background-color: #0A2239;
  color: #F5F5DC;
}

.page-th-thao .text-light {
  color: #F5F5DC;
}

.page-th-thao .text-center {
  text-align: center;
}

.page-th-thao__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-th-thao__section-title {
  font-size: 2.8em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-th-thao__section-title.text-light {
  color: #F5F5DC;
}

.page-th-thao__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-th-thao__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-th-thao__text-content.text-light {
  color: #F5F5DC;
}

.page-th-thao__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-th-thao__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-th-thao__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-th-thao__hero-content {
  position: relative;
  z-index: 2;
  color: #F5F5DC;
  max-width: 800px;
  padding: 20px;
}

.page-th-thao__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F5F5DC;
}

.page-th-thao__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F5F5DC;
}

.page-th-thao__hero-btn,
.page-th-thao__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2239;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-th-thao__hero-btn:hover,
.page-th-thao__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-th-thao__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-th-thao__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-th-thao__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-th-thao__feature-item:hover {
  transform: translateY(-5px);
}

.page-th-thao__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-th-thao__feature-description {
  font-size: 1em;
  color: #F5F5DC;
}

.page-th-thao__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-th-thao__guide-list li {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px; /* Space for custom counter */
}

.page-th-thao__guide-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FFD700;
  color: #0A2239;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-th-thao__guide-list h3 {
  font-size: 1.6em;
  color: #0A2239;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-th-thao__guide-list p {
  font-size: 1em;
  color: #333;
}

.page-th-thao__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao__promo-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-th-thao__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-th-thao__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-th-thao__promo-description {
  font-size: 1em;
  color: #F5F5DC;
}

.page-th-thao__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 1.1em;
  color: #0A2239;
}

.page-th-thao__advantage-list li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.page-th-thao__list-icon {
  position: absolute;
  left: 0;
  color: #0A2239;
  font-weight: bold;
  font-size: 1.2em;
}

.page-th-thao__contact-cta .page-th-thao__cta-btn.primary {
  background-color: #FFD700;
  color: #0A2239;
  margin-right: 15px;
}

.page-th-thao__contact-cta .page-th-thao__cta-btn.primary:hover {
  background-color: #e6c200;
}

.page-th-thao__contact-cta .page-th-thao__cta-btn.secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-th-thao__contact-cta .page-th-thao__cta-btn.secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-th-thao__button-group {
  margin-top: 30px;
}

.page-th-thao .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-th-thao__hero-title {
    font-size: 3em;
  }
  .page-th-thao__hero-subtitle {
    font-size: 1.3em;
  }
  .page-th-thao__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero {
    height: 400px;
  }
  .page-th-thao__hero-title {
    font-size: 2.5em;
  }
  .page-th-thao__hero-subtitle {
    font-size: 1.1em;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
  }
  .page-th-thao__feature-grid, .page-th-thao__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-th-thao__guide-list li {
    padding-left: 20px;
  }
  .page-th-thao__guide-list li::before {
    position: static;
    margin-bottom: 10px;
  }
  .page-th-thao__button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-th-thao__contact-cta .page-th-thao__cta-btn.primary {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-th-thao__hero {
    height: 300px;
  }
  .page-th-thao__hero-title {
    font-size: 2em;
  }
  .page-th-thao__hero-subtitle {
    font-size: 1em;
  }
  .page-th-thao__hero-btn, .page-th-thao__cta-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-th-thao__section-title {
    font-size: 1.5em;
  }
  .page-th-thao__text-content {
    font-size: 0.95em;
  }
}