/* =========================================================
   ICARUS FASTONE — BUCOR Cashless System Remittance Guide
   Brand colors: Navy #0B2545 / Gold #F2B200
   ========================================================= */

:root {
  --navy: #0B2545;
  --navy-light: #13315C;
  --gold: #F2B200;
  --gold-dark: #D9A100;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --gray-border: #E2E8F0;
  --text: #2D3748;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(11, 37, 69, 0.08);
  --font: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); object-fit: cover; padding: 2px;
}
.brand-text { color: var(--white); line-height: 1.2; }
.brand-text strong { display: block; font-size: 1rem; letter-spacing: 0.5px; }
.brand-text small { font-size: 0.62rem; color: var(--gold); }

.site-nav { display: flex; gap: 6px; }
.site-nav a {
  color: var(--white); text-decoration: none; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 6px; transition: background 0.2s;
}
.site-nav a:hover { background: var(--navy-light); color: var(--gold); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--gold); border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); text-align: center; padding: 70px 0 80px;
}
.hero-logo {
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--white); object-fit: cover; padding: 6px;
  margin-bottom: 24px; box-shadow: 0 4px 24px rgba(242, 178, 0, 0.35);
}
.hero h1 { font-size: 2.2rem; line-height: 1.25; margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero-tagline { max-width: 640px; margin: 0 auto 30px; font-size: 1.08rem; color: #DCE6F2; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 14px 32px; border-radius: 50px; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(242,178,0,0.4); }

/* ===== Sections ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--gray-bg); }
.section-title {
  color: var(--navy); font-size: 1.9rem; text-align: center; margin-bottom: 16px;
}
.section-title::after {
  content: ""; display: block; width: 64px; height: 4px;
  background: var(--gold); margin: 12px auto 0; border-radius: 2px;
}
.section-lead { text-align: center; max-width: 760px; margin: 0 auto 28px; font-size: 1.05rem; }
.section p { max-width: 760px; margin: 0 auto 16px; }

.draft-note {
  font-size: 0.85rem; font-style: italic; color: #8A94A6;
  border-left: 3px solid var(--gold); padding-left: 12px;
}

/* ===== Cards ===== */
.card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}

.checklist { max-width: 760px; margin: 0 auto 36px; }
.checklist h3 { color: var(--navy); margin-bottom: 14px; }
.checklist ul { padding-left: 22px; margin-bottom: 14px; }
.checklist li { margin-bottom: 6px; }

.remit-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px; margin-bottom: 30px;
}
.option-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.25rem; }
.option-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; margin-right: 8px; vertical-align: middle;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.steps { padding-left: 20px; }
.steps li { margin-bottom: 12px; }

.account-box {
  background: var(--gray-bg); border: 1px dashed var(--gold);
  border-radius: 8px; padding: 14px 18px; margin-top: 8px;
}
.account-box p { margin: 4px 0; max-width: none; font-size: 0.95rem; }
.account-box em { color: #8A94A6; font-size: 0.82rem; }

.fee-note {
  margin-top: 14px; max-width: none !important;
  background: #FFF8E1; border: 1px dashed var(--gold);
  border-radius: 8px; padding: 10px 14px; font-size: 0.92rem;
}

.alert-box {
  background: #FFF8E1; border: 1px solid var(--gold); border-left: 6px solid var(--gold);
  border-radius: var(--radius); padding: 20px 24px; max-width: 900px; margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--navy);
  list-style: none; position: relative;
}
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px;
  color: var(--gold); font-size: 1.3rem; font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 20px 16px; max-width: none; margin: 0; }

/* ===== Contact ===== */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; max-width: 900px; margin: 0 auto 20px;
}
.contact-card { text-align: center; }
.contact-card h3 { color: var(--navy); margin-bottom: 8px; }
.contact-card p { margin: 0; max-width: none; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #C7D4E4; padding: 32px 0; text-align: center; }
.footer-inner p { margin-bottom: 6px; }
.footer-nav { margin-top: 10px; font-size: 0.9rem; }
.footer-nav a { color: var(--gold); text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 10px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; }
  .brand-text small { display: none; }
  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-logo { width: 110px; height: 110px; }
  .section { padding: 44px 0; }
}
