/* style/support-live-chat.css */
.page-support-live-chat {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #1A202C; /* Dark background */
  line-height: 1.6;
}

.page-support-live-chat__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a414f 100%); /* Subtle gradient */
  gap: 30px;
}

.page-support-live-chat__hero-content {
  max-width: 900px;
}

.page-support-live-chat__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support-live-chat__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0; /* Slightly lighter white for description */
}

.page-support-live-chat__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  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-support-live-chat__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-support-live-chat__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support-live-chat__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-support-live-chat__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-support-live-chat__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-support-live-chat__section-intro {
  font-size: 1.05em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support-live-chat__channels-grid,
.page-support-live-chat__issues-grid,
.page-support-live-chat__why-choose-grid,
.page-support-live-chat__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support-live-chat__channel-card,
.page-support-live-chat__issue-card,
.page-support-live-chat__reason-card,
.page-support-live-chat__tip-card {
  background-color: #2a303c; /* Slightly lighter dark background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support-live-chat__channel-card:hover,
.page-support-live-chat__issue-card:hover,
.page-support-live-chat__reason-card:hover,
.page-support-live-chat__tip-card:hover {
  transform: translateY(-8px);
  background-color: #3a414f;
}

.page-support-live-chat__channel-icon,
.page-support-live-chat__issue-icon,
.page-support-live-chat__reason-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-support-live-chat__channel-title,
.page-support-live-chat__issue-title,
.page-support-live-chat__reason-title,
.page-support-live-chat__tip-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-support-live-chat__channel-card p,
.page-support-live-chat__issue-card p,
.page-support-live-chat__reason-card p,
.page-support-live-chat__tip-card p {
  color: #B0B0B0; /* Light gray for card text */
  font-size: 0.95em;
  flex-grow: 1;
}

.page-support-live-chat__channel-card strong {
  color: #FFD700;
}

.page-support-live-chat__channel-card a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support-live-chat__channel-card a:hover {
  color: #FFFFFF;
}

.page-support-live-chat__channel-button {
  margin-top: 20px;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support-live-chat__channel-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support-live-chat__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #1A202C, #4a515e); /* Another subtle gradient */
  gap: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support-live-chat__cta-content {
  max-width: 800px;
}

.page-support-live-chat__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support-live-chat__cta-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-support-live-chat__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support-live-chat__cta-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-support-live-chat__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-support-live-chat__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support-live-chat__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-support-live-chat__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-support-live-chat__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-support-live-chat__hero-content {
    text-align: left;
    margin-right: 50px;
  }

  .page-support-live-chat__hero-image-wrapper {
    max-width: 50%;
  }

  .page-support-live-chat__hero-title {
    font-size: 3.5em;
  }

  .page-support-live-chat__section-title {
    font-size: 2.8em;
  }

  .page-support-live-chat__cta-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-support-live-chat__cta-content {
    margin-right: 50px;
  }

  .page-support-live-chat__cta-image {
    max-width: 45%;
  }
}

@media (max-width: 767px) {
  .page-support-live-chat__hero-title {
    font-size: 2.2em;
  }

  .page-support-live-chat__section-title {
    font-size: 1.8em;
  }

  .page-support-live-chat__cta-title {
    font-size: 2em;
  }

  .page-support-live-chat__channels-grid,
  .page-support-live-chat__issues-grid,
  .page-support-live-chat__why-choose-grid,
  .page-support-live-chat__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-support-live-chat__cta-buttons {
    flex-direction: column;
  }
}