/* style/index-why-choose-hi88.css */
.page-index-why-choose-hi88 {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-index-why-choose-hi88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-why-choose-hi88__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a4a75 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-index-why-choose-hi88__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for hero title */
}

.page-index-why-choose-hi88__hero-title .highlight {
  color: #FFFFFF; /* White for keyword highlight */
}

.page-index-why-choose-hi88__hero-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0; /* Light gray for subtitle */
}

.page-index-why-choose-hi88__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-why-choose-hi88__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-why-choose-hi88__intro-section {
  padding: 60px 0;
  text-align: center;
  background-color: #1a2c47; /* Slightly lighter dark blue for contrast */
}

.page-index-why-choose-hi88__intro-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #C0C0C0; /* Lighter gray for intro text */
}

.page-index-why-choose-hi88__intro-text .highlight {
  color: #FFD700; /* Gold highlight in intro */
  font-weight: bold;
}

.page-index-why-choose-hi88__image-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.page-index-why-choose-hi88__intro-image,
.page-index-why-choose-hi88__reason-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-why-choose-hi88__reasons-section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-index-why-choose-hi88__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 60px;
  color: #FFD700; /* Gold for section titles */
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-why-choose-hi88__reason-item {
  background-color: #1a2c47;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-why-choose-hi88__reason-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-why-choose-hi88__reason-title {
  font-size: 2em;
  color: #FFD700; /* Gold for reason titles */
  margin-bottom: 25px;
  text-align: center;
}

.page-index-why-choose-hi88__reason-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-why-choose-hi88__reason-content.reverse-order {
  flex-direction: row-reverse;
}

.page-index-why-choose-hi88__text-content {
  flex: 1;
  color: #E0E0E0; /* Light gray for reason text */
}

.page-index-why-choose-hi88__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-index-why-choose-hi88__text-content .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-index-why-choose-hi88__reason-image {
  flex: 0 0 400px; /* Fixed width for images */
  height: 250px;
  object-fit: cover;
}

.page-index-why-choose-hi88__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: underline;
  font-weight: bold;
}

.page-index-why-choose-hi88__inline-link:hover {
  color: #FFFFFF; /* White on hover */
}

.page-index-why-choose-hi88__cta-bottom {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #FFD700;
}

.page-index-why-choose-hi88__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-why-choose-hi88__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-why-choose-hi88__cta-description .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-index-why-choose-hi88__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-why-choose-hi88__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-why-choose-hi88__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-index-why-choose-hi88__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-why-choose-hi88__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-why-choose-hi88__hero-title {
    font-size: 2.8em;
  }

  .page-index-why-choose-hi88__hero-subtitle {
    font-size: 1.3em;
  }

  .page-index-why-choose-hi88__section-title {
    font-size: 2.2em;
  }

  .page-index-why-choose-hi88__reason-title {
    font-size: 1.8em;
  }

  .page-index-why-choose-hi88__reason-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index-why-choose-hi88__reason-content.reverse-order {
    flex-direction: column;
  }

  .page-index-why-choose-hi88__reason-image {
    flex: none;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .page-index-why-choose-hi88__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-why-choose-hi88__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-index-why-choose-hi88__hero {
    padding: 80px 0;
  }

  .page-index-why-choose-hi88__hero-title {
    font-size: 2.2em;
  }

  .page-index-why-choose-hi88__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-why-choose-hi88__intro-section {
    padding: 40px 0;
  }

  .page-index-why-choose-hi88__reasons-section {
    padding: 60px 0;
  }

  .page-index-why-choose-hi88__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-index-why-choose-hi88__reason-item {
    padding: 30px;
  }

  .page-index-why-choose-hi88__reason-title {
    font-size: 1.5em;
  }

  .page-index-why-choose-hi88__cta-title {
    font-size: 2em;
  }

  .page-index-why-choose-hi88__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-why-choose-hi88__hero {
    padding: 60px 0;
  }

  .page-index-why-choose-hi88__hero-title {
    font-size: 1.8em;
  }

  .page-index-why-choose-hi88__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-why-choose-hi88__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-index-why-choose-hi88__intro-section {
    padding: 30px 0;
  }

  .page-index-why-choose-hi88__reasons-section {
    padding: 40px 0;
  }

  .page-index-why-choose-hi88__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-index-why-choose-hi88__reason-item {
    padding: 20px;
    margin-bottom: 25px;
  }

  .page-index-why-choose-hi88__reason-title {
    font-size: 1.3em;
  }

  .page-index-why-choose-hi88__cta-title {
    font-size: 1.6em;
  }

  .page-index-why-choose-hi88__cta-description {
    font-size: 0.9em;
  }

  .page-index-why-choose-hi88__cta-button {
    width: 90%;
  }
}