/* --- INFO PAGES (USER GUIDE, CONTACT US, LEGAL) --- */
.boh-info-page {
  display: flex;
  flex-direction: column;
  background-color: var(--boh-semantic-background);
  color: var(--boh-semantic-text-primary);
  min-height: 100%;
  font-family: var(--boh-font-sans);
}

.boh-info-page__main {
  flex: 1;
  padding: 1rem var(--boh-space-screen);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.boh-info-page__main::-webkit-scrollbar {
  display: none;
}

.boh-info-page__main > * + * {
  margin-top: 0.75rem; /* space-y-3 */
}

/* Accordion and Static Cards */
.boh-info-accordion-card,
.boh-info-card {
  background-color: var(--boh-color-surface);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(38, 86, 77, 0.03);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--boh-color-border) 4%, transparent);
}

.boh-info-card {
  padding: 1.25rem;
}

.boh-info-card--column {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.boh-info-card__row {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.boh-info-card__row--center {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.boh-info-card__body {
  flex: 1;
}

/* Shared Header styles for help pages */
.boh-info-header {
  padding: 2.5rem 0.5rem 0.625rem;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.boh-info-header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.boh-info-header__back {
  padding: 0.5rem;
  margin-left: -0.5rem;
  color: var(--boh-color-primary);
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.boh-info-header__back:active {
  opacity: 0.7;
}

.boh-info-header__title {
  font-family: var(--boh-font-sans);
  font-weight: var(--boh-font-weight-700);
  color: var(--boh-color-primary);
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
}

/* Info Banner styles */
.boh-info-banner {
  background-color: var(--boh-info-bg-color);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
  border-radius: 20px;
}

.boh-info-banner__content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.boh-info-banner__icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--boh-color-surface);
}

.boh-info-banner__title {
  font-family: var(--boh-font-serif);
  color: var(--boh-color-surface);
  font-size: 18px;
  font-weight: var(--boh-font-weight-600);
  margin: 0 0 0.125rem 0;
  line-height: 1.2;
}

.boh-info-banner__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}

.boh-info-banner__circle-blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(30%, -30%);
  filter: blur(24px);
}

/* Accordion Buttons */
.boh-info-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.boh-info-accordion-btn:active {
  background-color: color-mix(in srgb, var(--boh-color-surface) 95%, black);
}

.boh-info-accordion-btn[aria-expanded="true"] .boh-info-accordion-chevron {
  transform: rotate(180deg);
}

.boh-info-accordion-chevron {
  transition: transform 0.2s ease;
  color: color-mix(in srgb, var(--boh-color-muted) 50%, transparent);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.boh-info-accordion-content {
  display: none;
  padding: 0 1rem 1rem 1rem;
  border-top: 1px solid color-mix(in srgb, var(--boh-color-border) 10%, transparent);
}

.boh-info-accordion-btn__container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.boh-info-accordion-btn__icon-wrap,
.boh-info-card__icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.boh-info-card__icon-wrap {
  color: var(--boh-color-primary);
}

.boh-info-accordion-btn__text {
  flex: 1;
  min-width: 0;
}

.boh-info-accordion-btn__title,
.boh-info-card__label {
  font-family: var(--boh-font-sans);
  color: var(--boh-color-primary);
  font-size: 15px;
  font-weight: var(--boh-font-weight-700);
  margin: 0 0 0.125rem 0;
  line-height: 1.2;
}

.boh-info-card__label {
  font-size: 10px;
  color: color-mix(in srgb, var(--boh-color-muted) 50%, transparent);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.boh-info-card__label--no-margin {
  font-size: 10px;
  color: color-mix(in srgb, var(--boh-color-muted) 50%, transparent);
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.boh-info-card__label--small-margin {
  font-size: 10px;
  color: color-mix(in srgb, var(--boh-color-muted) 50%, transparent);
  text-transform: uppercase;
  margin-bottom: 0.125rem;
  letter-spacing: 0.05em;
}

.boh-info-accordion-btn__summary {
  color: color-mix(in srgb, var(--boh-color-muted) 60%, transparent);
  font-size: 12px;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* User Guide steps styles */
.boh-guide-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.boh-guide-step-item {
  display: flex;
  gap: 0.75rem;
}

.boh-guide-step-num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--boh-color-primary);
  color: var(--boh-color-surface);
  font-size: 12px;
  font-weight: var(--boh-font-weight-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.boh-guide-step-text,
.boh-info-card__text {
  color: color-mix(in srgb, var(--boh-color-muted) 80%, transparent);
  font-size: 13px;
  line-height: 1.5;
}

.boh-info-card__text {
  color: var(--boh-color-primary);
  font-size: 14px;
  font-weight: var(--boh-font-weight-500);
  line-height: 1.4;
  margin: 0;
}

.boh-guide-step-text {
  padding-top: 0.125rem;
}

.boh-contact-email-text {
  color: var(--boh-color-primary);
  font-weight: var(--boh-font-weight-700);
  font-size: 15px;
  margin: 0;
}

.boh-contact-phone-row__number {
  color: var(--boh-color-primary);
  font-weight: var(--boh-font-weight-700);
  font-size: 15px;
}

.boh-contact-phone-row__action {
  color: var(--boh-accent-color, #D4AF37);
  font-weight: var(--boh-font-weight-700);
  font-size: 12px;
}

/* Legal text paragraphs */
.boh-legal-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 0.75rem;
}

.boh-legal-paragraph {
  color: color-mix(in srgb, var(--boh-color-muted) 80%, transparent);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Legal Banner Intro */
.boh-info-banner-intro {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

.boh-info-banner-intro__text {
  color: color-mix(in srgb, var(--boh-color-muted) 70%, transparent);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

/* Contact cards specific */
.boh-contact-hero-banner {
  height: 10rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(38, 86, 77, 0.03);
}

.boh-contact-hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boh-contact-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 52, 46, 0.3);
}

.boh-contact-hero-banner__content {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
}

.boh-contact-hero-banner__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: var(--boh-font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.125rem 0;
}

.boh-contact-hero-banner__title {
  font-family: var(--boh-font-serif);
  color: var(--boh-color-surface);
  font-size: 18px;
  font-weight: var(--boh-font-weight-600);
  margin: 0;
  line-height: 1.2;
}

.boh-contact-phone-list {
  display: flex;
  flex-direction: column;
  padding-left: 0.25rem;
}

.boh-contact-phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--boh-color-border) 10%, transparent);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.boh-contact-phone-row:last-child {
  border-bottom: none;
}

.boh-contact-phone-row:active {
  opacity: 0.7;
}

.boh-info-card__link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--boh-accent-color, #D4AF37);
  font-weight: var(--boh-font-weight-700);
  font-size: 13px;
  text-decoration: none;
}

/* Page footer text */
.boh-info-page__footer-text {
  text-align: center;
  color: color-mix(in srgb, var(--boh-color-muted) 40%, transparent);
  font-size: 11px;
  margin-top: 0.75rem;
}
