/* style/resources-hello88-introduction.css */

/* Base styles for the page content */
.page-resources-hello88-introduction {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #0A2239; /* Main background color */
  line-height: 1.6;
}

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

/* Section spacing */
.page-resources-hello88-introduction section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-introduction section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

/* Headings */
.page-resources-hello88-introduction .section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-resources-hello88-introduction .section-description {
  font-size: 1.2em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-hello88-introduction h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-hello88-introduction h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-hello88-introduction p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

/* Buttons */
.page-resources-hello88-introduction .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-resources-hello88-introduction .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-resources-hello88-introduction .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-resources-hello88-introduction .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-resources-hello88-introduction .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-resources-hello88-introduction .large-btn {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-resources-hello88-introduction .hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #304D6B 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-introduction .hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-hello88-introduction .hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-hello88-introduction .hero-cta-group {
  margin-top: 40px;
}

.page-resources-hello88-introduction .hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

/* Content Blocks with Image */
.page-resources-hello88-introduction .content-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

.page-resources-hello88-introduction .content-block .text-content {
  flex: 1;
}

.page-resources-hello88-introduction .content-block .content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-resources-hello88-introduction .content-block.reverse-layout {
  flex-direction: row-reverse;
}

/* Value List */
.page-resources-hello88-introduction .value-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-hello88-introduction .value-list li {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-hello88-introduction .value-list li h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.5em;
}

.page-resources-hello88-introduction .value-list li p {
  color: #E0E0E0;
  margin-bottom: 0;
}

/* Offerings Grid */
.page-resources-hello88-introduction .grid-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-hello88-introduction .offering-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-hello88-introduction .offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.page-resources-hello88-introduction .offering-card .card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-resources-hello88-introduction .offering-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
}

.page-resources-hello88-introduction .offering-card p {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-resources-hello88-introduction .cta-center {
  text-align: center;
  margin-top: 60px;
}

/* Vision Section specific */
.page-resources-hello88-introduction .vision-section {
  text-align: center;
  padding-bottom: 0; /* Image at bottom */
}

.page-resources-hello88-introduction .vision-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Fixed CTA Menu */
.page-resources-hello88-introduction .fixed-cta-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-resources-hello88-introduction .fixed-cta-menu .menu-item {
  background-color: #DC143C; /* Red for action */
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-resources-hello88-introduction .fixed-cta-menu .menu-item:hover {
  background-color: #c01030;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-hello88-introduction .section-title {
    font-size: 2.2em;
  }

  .page-resources-hello88-introduction .hero-title {
    font-size: 3em;
  }

  .page-resources-hello88-introduction .hero-subtitle {
    font-size: 1.3em;
  }

  .page-resources-hello88-introduction .content-block {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-hello88-introduction .content-block .content-image {
    max-width: 80%;
  }

  .page-resources-hello88-introduction .content-block.reverse-layout {
    flex-direction: column;
  }

  .page-resources-hello88-introduction .grid-offerings {
    grid-template-columns: 1fr;
  }

  .page-resources-hello88-introduction .fixed-cta-menu {
    flex-direction: row;
    bottom: 10px;
    right: 10px;
    left: 10px;
    justify-content: space-around;
    background-color: rgba(10, 34, 57, 0.9);
    padding: 10px;
    border-radius: 10px;
  }

  .page-resources-hello88-introduction .fixed-cta-menu .menu-item {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-resources-hello88-introduction section {
    padding: 60px 0;
  }

  .page-resources-hello88-introduction .hero-title {
    font-size: 2.5em;
  }

  .page-resources-hello88-introduction .hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-hello88-introduction .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-hello88-introduction .btn-secondary {
    margin-left: 0;
  }

  .page-resources-hello88-introduction .section-title {
    font-size: 2em;
  }

  .page-resources-hello88-introduction h3 {
    font-size: 1.4em;
  }

  .page-resources-hello88-introduction .value-list li h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-resources-hello88-introduction .hero-title {
    font-size: 2em;
  }

  .page-resources-hello88-introduction .hero-subtitle {
    font-size: 1em;
  }

  .page-resources-hello88-introduction .section-title {
    font-size: 1.8em;
  }

  .page-resources-hello88-introduction .btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-hello88-introduction .large-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-resources-hello88-introduction .fixed-cta-menu {
    gap: 5px;
  }

  .page-resources-hello88-introduction .fixed-cta-menu .menu-item {
    padding: 8px 12px;
    font-size: 0.85em;
  }
}