/* Bsonline site polish — trust, typography, FAQ, legal, CTAs */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

body {
  font-family: "Plus Jakarta Sans", Segoe UI, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.section-title {
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--brand-blue-dark, #011848);
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #032c7c, #2c7d17);
}

.section-title--left::after {
  margin-left: 0;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: -28px auto 8px;
  padding: 0 max(var(--layout-gutter, 16px), env(safe-area-inset-left, 0px));
  position: relative;
  z-index: 4;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(3, 44, 124, 0.1);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(1, 24, 72, 0.08);
}

.trust-item i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #032c7c, #2c7d17);
  color: #fff;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  color: #011848;
}

.trust-item span {
  display: block;
  font-size: 12px;
  color: #5c6b7a;
  margin-top: 2px;
}

/* Hero CTAs */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-hero--primary {
  background: linear-gradient(135deg, #032c7c 0%, #2c7d17 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(3, 44, 124, 0.35);
}

.btn-hero--primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

/* Closing CTA band */
.cta-band {
  margin: 48px 0 0;
  padding: 48px 20px;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(44, 125, 23, 0.25), transparent 55%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(3, 44, 124, 0.35), transparent 55%),
    linear-gradient(135deg, #011848 0%, #032c7c 45%, #1f5c10 100%);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
}

.cta-band p {
  margin: 0 auto 22px;
  max-width: 560px;
  opacity: 0.92;
  font-size: 15px;
  line-height: 1.5;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: #032c7c;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-cta-light:hover {
  transform: translateY(-2px);
  color: #011848;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.btn-cta-wa:hover {
  filter: brightness(1.05);
  color: #fff;
}

/* Product cards polish */
.product-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  border: 1px solid rgba(3, 44, 124, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(1, 24, 72, 0.1);
  border-color: rgba(44, 125, 23, 0.28);
}

.product-card a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(3, 44, 124, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(1, 24, 72, 0.04);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: #011848;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: #2c7d17;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] {
  border-color: rgba(44, 125, 23, 0.3);
}

.faq-answer {
  padding: 0 18px 16px;
  color: #5c6b7a;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer a {
  color: #032c7c;
  font-weight: 600;
}

/* Legal pages */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(3, 44, 124, 0.08);
  border-radius: 16px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 10px 30px rgba(1, 24, 72, 0.05);
  line-height: 1.7;
  color: #334155;
}

.legal-content h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  color: #011848;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 14px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(3, 44, 124, 0.06);
  color: #032c7c;
  font-size: 12px;
  font-weight: 700;
}

.page-hero--legal {
  background: linear-gradient(135deg, #032c7c 0%, #022468 50%, #1f5c10 100%);
}

/* Contact quick actions */
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-quick a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-quick .cq-call {
  background: rgba(3, 44, 124, 0.08);
  color: #032c7c;
}

.contact-quick .cq-mail {
  background: rgba(44, 125, 23, 0.1);
  color: #1f5c10;
}

.contact-quick .cq-wa {
  background: #25d366;
  color: #fff;
}

.info-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(1, 24, 72, 0.08);
}

.info-card a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

/* Bank page hero note */
.bank-secure-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(3, 44, 124, 0.06), rgba(44, 125, 23, 0.08));
  border: 1px solid rgba(3, 44, 124, 0.12);
  color: #011848;
  font-size: 14px;
  line-height: 1.5;
}

.bank-secure-banner i {
  color: #2c7d17;
  margin-top: 2px;
}

/* Fixed departure empty state polish */
.fd-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

/* Services grid polish */
.services-grid .info-card--soft {
  border: 1px solid rgba(3, 44, 124, 0.08);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

/* Footer payment pills */
.footer-payments .payment-pill i.fa-building-columns,
.footer-payments .payment-pill .fa-qrcode {
  color: #fff;
}

@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -18px;
  }
}

@media (max-width: 560px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero {
    justify-content: center;
  }
}

.avatar i { font-size: 18px; }
.page-hero .btn-primary {
  background: #fff;
  color: #032c7c;
  border-radius: 999px;
  padding: 12px 22px;
}
.page-hero .btn-primary:hover { color: #011848; }
