/* HELP CENTER PAGE */

/* Hero Section */
.help-hero {
  background: #f8f9fc;
  padding: 60px 0;
  text-align: center;
}

.help-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0 0 12px;
}

.help-hero > p {
  font-size: 16px;
  color: #4c5f76;
  margin: 0 0 30px;
}

.search-box-help {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border: 2px solid #e5e9f2;
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-box-help input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #0b2f59;
}

.search-box-help input::placeholder {
  color: #9ca3af;
}

/* Popular Topics */
.popular-topics {
  padding: 50px 0 40px;
  background: white;
}

.popular-topics h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0 0 20px;
}

.topic-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border: 1px solid #e5e9f2;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.topic-card:hover {
  border-color: #e6a01b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.topic-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #fef3e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topic-text {
  flex: 1;
}

.topic-text h3 {
  font-size: 15px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0 0 4px;
}

.topic-text p {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

.topic-arrow {
  font-size: 24px;
  color: #0b2f59;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
}

.topic-card:hover .topic-arrow {
  color: #e6a01b;
}

/* Video Tutorials + Still Need Help Section */
.video-help-section {
  padding: 50px 0 60px;
  background: #f8f9fc;
}

.video-help-section .row {
  align-items: flex-start;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header-flex h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0;
}

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: #0a3c72;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: #e6a01b;
}

.video-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0a3c72;
  overflow: hidden;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.video-info {
  padding: 14px 16px;
}

.video-info h3 {
  font-size: 14px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0 0 3px;
}

.video-info p {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
}

/* Still Need Help Sidebar */
.help-sidebar {
  background: white;
  border-radius: 8px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.help-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.help-icon-shield {
  flex-shrink: 0;
}

.help-icon-shield svg {
  width: 45px;
  height: 45px;
}

.help-header-text {
  flex: 1;
  text-align: left;
}

.help-header-text h3 {
  font-size: 16px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0 0 3px;
  line-height: 1.2;
}

.help-header-text p {
  font-size: 11px;
  color: #6c757d;
  margin: 0;
  line-height: 1.3;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  flex: 1;
}

.contact-item-sidebar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 8px;
  background: #f8f9fc;
  border-radius: 6px;
}

.contact-icon-sidebar {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-icon-sidebar svg {
  width: 16px;
  height: 16px;
}

.contact-text-sidebar h4 {
  font-size: 12px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0 0 2px;
}

.contact-text-sidebar p {
  font-size: 10px;
  color: #6c757d;
  margin: 0;
  line-height: 1.3;
}

.btn-contact-support {
  background: linear-gradient(135deg, #e2a02b, #cf8507);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(230, 160, 27, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.btn-contact-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 13px rgba(230, 160, 27, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .help-hero {
    padding: 50px 0;
  }

  .help-hero h1 {
    font-size: 36px;
  }

  .popular-topics {
    padding: 50px 0;
  }

  .popular-topics h2 {
    font-size: 26px;
  }

  .video-help-section {
    padding: 50px 0;
  }

  .section-header-flex h2 {
    font-size: 26px;
  }

  .help-sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .help-hero {
    padding: 40px 0;
  }

  .help-hero h1 {
    font-size: 32px;
  }

  .help-hero > p {
    font-size: 15px;
  }

  .search-box-help {
    padding: 12px 16px;
  }

  .popular-topics {
    padding: 45px 0;
  }

  .popular-topics h2 {
    font-size: 24px;
  }

  .topic-card {
    padding: 20px;
  }

  .topic-text h3 {
    font-size: 15px;
  }

  .topic-text p {
    font-size: 12px;
  }

  .video-help-section {
    padding: 45px 0;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-header-flex h2 {
    font-size: 24px;
  }

  .help-sidebar {
    margin-top: 30px;
  }

  .help-header-text h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .help-hero h1 {
    font-size: 28px;
  }

  .help-hero > p {
    font-size: 14px;
  }

  .popular-topics h2 {
    font-size: 22px;
  }

  .topic-card {
    flex-direction: column;
    text-align: center;
  }

  .topic-arrow {
    display: none;
  }

  .section-header-flex h2 {
    font-size: 22px;
  }

  .help-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .help-header-text {
    text-align: center;
  }

  .help-header-text h3 {
    font-size: 20px;
  }

  .contact-item-sidebar {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-text-sidebar {
    text-align: center;
  }
}
