/*
 * welthflow-supplement.css
 * Additional styles for PHP public pages (not in original welthflow.css)
 */

/* ── Common Utilities ─────────────────────────────────── */
.c-w { color: #fff; }
.wf-highlight { color: #c9a227; }

.wf-link-arrow {
  color: #062f6d;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.wf-link-arrow:hover { color: #3eda99; }

.wf-btn-outline {
  display: inline-block;
  border: 2px solid #062f6d;
  color: #062f6d;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.wf-btn-outline:hover {
  background: #062f6d;
  color: #fff;
}

.wf-feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f4ff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #062f6d;
}
.wf-feature-chip i { color: #3eda99; font-size: 16px; }

/* ── About Page ───────────────────────────────────────── */
.wf-about-img-grid {
  position: relative;
  padding-bottom: 28px;
}
.wf-about-img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.wf-about-img-lg {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.wf-about-img-sm {
  width: 55%;
  max-height: 220px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
}

.wf-value-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.wf-value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.wf-value-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #062f6d, #1a5fab);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.wf-value-icon i { color: #3eda99; font-size: 22px; }
.wf-value-title { font-size: 16px; font-weight: 700; color: #01123c; margin-bottom: 10px; }
.wf-value-desc { font-size: 14px; color: #718096; margin: 0; line-height: 1.7; }

.wf-team-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}
.wf-team-card:hover { transform: translateY(-4px); }
.wf-team-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3eda99;
  margin-bottom: 14px;
}
.wf-team-name { font-size: 16px; font-weight: 700; color: #01123c; margin-bottom: 4px; }
.wf-team-role { font-size: 13px; color: #1a5fab; font-weight: 600; margin-bottom: 10px; }
.wf-team-bio { font-size: 13px; color: #718096; margin: 0; }

/* ── FAQ Page ─────────────────────────────────────────── */
.wf-accordion { display: flex; flex-direction: column; gap: 12px; }
.wf-accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.wf-accordion-item.open { border-color: #062f6d; }
.wf-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #01123c;
}
.wf-accordion-btn:hover { background: #f8fafc; }
.wf-accordion-item.open .wf-accordion-btn { color: #062f6d; }
.wf-accordion-btn i { color: #062f6d; font-size: 14px; flex-shrink: 0; }
.wf-accordion-body { padding: 0 24px 20px; }
.wf-accordion-body p { font-size: 15px; color: #4a5568; margin: 0; line-height: 1.8; }

.wf-faq-cta-card {
  background: #01123c;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
}
.wf-faq-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #3eda99, #1dbfc8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.wf-faq-icon i { color: #fff; font-size: 24px; }
.wf-faq-cta-card h4 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.wf-faq-cta-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }

.wf-faq-stat-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wf-faq-stat { text-align: center; }
.wf-faq-num { display: block; font-family: 'Lora', serif; font-size: 28px; font-weight: 700; color: #062f6d; }
.wf-faq-stat span:last-child { font-size: 12px; color: #718096; }

/* ── Investment Steps ─────────────────────────────────── */
.wf-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
}
.wf-step-num {
  font-size: 48px;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: rgba(6,47,109,0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.wf-step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #062f6d, #1a5fab);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.wf-step-icon i { color: #3eda99; font-size: 20px; }
.wf-step-title { font-size: 16px; font-weight: 700; color: #01123c; margin-bottom: 10px; }
.wf-step-desc { font-size: 14px; color: #718096; margin: 0; }

/* ── Forex Page ───────────────────────────────────────── */
.wf-forex-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}
.wf-forex-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #062f6d, #1a5fab);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.wf-forex-icon i { color: #3eda99; font-size: 16px; }
.wf-forex-title { font-size: 15px; font-weight: 700; color: #01123c; margin-bottom: 8px; }
.wf-forex-desc { font-size: 13px; color: #718096; margin: 0; line-height: 1.7; }

/* ── Affiliates Tier Cards ────────────────────────────── */
.wf-tier-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
}
.wf-tier-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wf-tier-plan { font-size: 17px; font-weight: 700; color: #01123c; margin-bottom: 6px; }
.wf-tier-range { font-size: 14px; color: #718096; margin-bottom: 16px; }
.wf-tier-bonus {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 700;
  color: #062f6d;
  line-height: 1;
  margin-bottom: 4px;
}
.wf-tier-bonus span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: #718096;
  margin-top: 4px;
  margin-bottom: 12px;
}

/* ── Loan Page ────────────────────────────────────────── */
.wf-loan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.wf-loan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #4a5568;
}
.wf-loan-feature i { color: #3eda99; font-size: 16px; flex-shrink: 0; }

.wf-loan-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
}
.wf-loan-card.featured {
  background: #01123c;
  color: #fff;
}
.wf-loan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #c9a227;
  color: #fff;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}
.wf-loan-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.wf-loan-card-header i { font-size: 24px; color: #3eda99; }
.wf-loan-card-header h3 { font-size: 20px; font-weight: 700; margin: 0; }
.wf-loan-card h3 { color: #01123c; }
.wf-loan-card.featured h3 { color: #fff; }
.wf-loan-amount {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 700;
  color: #062f6d;
  margin-bottom: 20px;
}
.wf-loan-card.featured .wf-loan-amount { color: #3eda99; }
.wf-loan-list { list-style: none; padding: 0; margin-bottom: 28px; }
.wf-loan-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f4ff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4a5568;
}
.wf-loan-card.featured .wf-loan-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.wf-loan-list li i { color: #3eda99; flex-shrink: 0; }

.wf-eligibility-box {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #dce6ff;
}
.wf-eligibility-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #062f6d;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wf-eligibility-box h4 i { color: #1a5fab; }
.wf-eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4a5568;
}
.wf-eligibility-item i { color: #3eda99; margin-top: 2px; flex-shrink: 0; }

.wf-ffd-benefits { display: flex; flex-direction: column; gap: 20px; }
.wf-ffd-benefit { display: flex; align-items: flex-start; gap: 16px; }
.wf-ffd-benefit-icon {
  width: 44px; height: 44px;
  background: rgba(62,218,153,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wf-ffd-benefit-icon i { color: #3eda99; font-size: 18px; }

/* ── Terms Page ───────────────────────────────────────── */
.wf-terms-sidebar {
  position: sticky;
  top: 90px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
}
.wf-terms-sidebar-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #718096;
  margin-bottom: 12px;
}
.wf-terms-sidebar-link {
  display: block;
  font-size: 13px;
  color: #4a5568;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.4;
}
.wf-terms-sidebar-link:hover { color: #062f6d; }
.wf-terms-intro {
  background: #f0f4ff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
}
.wf-terms-intro a { color: #062f6d; }
.wf-terms-intro-icon { font-size: 28px; color: #062f6d; flex-shrink: 0; }
.wf-terms-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #e2e8f0; }
.wf-terms-section:last-child { border-bottom: none; }
.wf-terms-heading { font-size: 18px; font-weight: 700; color: #01123c; margin-bottom: 14px; }

/* ── Home Page Extra ──────────────────────────────────── */
.wf-grow-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
@media (max-width: 575px) { .wf-grow-badge { left: 0; bottom: -20px; } }

.wf-opportunity-list { display: flex; flex-direction: column; gap: 12px; }
.wf-opp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.wf-opp-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #062f6d, #1a5fab);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wf-opp-icon i { color: #3eda99; font-size: 16px; }
.wf-opp-title { font-size: 14px; font-weight: 700; color: #01123c; }
.wf-opp-desc { font-size: 12px; color: #718096; margin: 0; }

.wf-product-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.wf-product-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #062f6d, #1a5fab);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.wf-product-icon i { color: #3eda99; font-size: 20px; }
.wf-product-title { font-size: 17px; font-weight: 700; color: #01123c; margin-bottom: 10px; }
.wf-product-desc { font-size: 14px; color: #718096; line-height: 1.7; margin-bottom: 16px; }
.wf-product-link {
  font-size: 14px;
  font-weight: 600;
  color: #062f6d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wf-product-link:hover { color: #3eda99; }

/* ── Security Card Icon ───────────────────────────────── */
.wf-security-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #062f6d, #1a5fab);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.wf-security-icon-wrap i { color: #3eda99; font-size: 22px; }

/* Wallet Section */
.wf-wallet-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #01123c 0%, #062f6d 100%);
}
.wf-wallet-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wf-wallet-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.wf-btn-connect {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #3eda99, #1dbfc8);
  color: #01123c;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-btn-connect:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(62,218,153,0.4); }

.wf-wallet-mockup {
  background: linear-gradient(145deg, #0a1f4e, #0d2a6b);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  width: 100%;
  max-width: 340px;
}
.wf-wallet-mock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wf-wallet-mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.wf-wallet-mock-dot.r { background: #ff5f57; }
.wf-wallet-mock-dot.y { background: #ffbd2e; }
.wf-wallet-mock-dot.g { background: #28c840; }
.wf-wallet-mock-label { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.wf-wallet-mock-balance {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.wf-wallet-mock-balance span { font-size: 24px; color: rgba(255,255,255,0.6); }
.wf-wallet-mock-change { color: #3eda99; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.wf-wallet-mock-coins { display: flex; flex-direction: column; gap: 8px; }
.wf-wallet-mock-coin {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 14px;
}
.wf-wallet-mock-sym { font-weight: 700; color: #fff; font-size: 14px; width: 40px; }
.wf-wallet-mock-cname { color: rgba(255,255,255,0.6); font-size: 13px; flex: 1; }
.wf-wallet-mock-pct { color: #3eda99; font-size: 13px; font-weight: 600; }

/* Account Cards */
.wf-account-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
  transition: transform 0.2s;
}
.wf-account-card:hover { transform: translateY(-4px); }
.wf-account-card.featured {
  background: linear-gradient(145deg, #01123c, #062f6d);
  color: #fff;
}
.wf-account-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a227;
  color: #fff;
  padding: 4px 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.wf-account-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #01123c; }
.wf-account-card.featured .wf-account-name { color: #fff; }
.wf-account-desc { font-size: 14px; color: #718096; margin-bottom: 24px; line-height: 1.7; }
.wf-account-card.featured .wf-account-desc { color: rgba(255,255,255,0.7); }
.wf-account-stats {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid #f0f4ff;
  border-bottom: 1px solid #f0f4ff;
}
.wf-account-card.featured .wf-account-stats { border-color: rgba(255,255,255,0.1); }
.wf-account-stat-val { display: block; font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: #062f6d; }
.wf-account-card.featured .wf-account-stat-val { color: #3eda99; }
.wf-account-stat-label { font-size: 11px; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; }

/* Fixed Deposit Stats Grid */
.wf-ffd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wf-ffd-stat {
  background: rgba(6,47,109,0.05);
  border: 1px solid rgba(6,47,109,0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.wf-ffd-stat-val { font-family: 'Lora', serif; font-size: 28px; font-weight: 700; color: #062f6d; display: block; }
.wf-ffd-stat-label { font-size: 12px; color: #718096; margin-top: 4px; }

/* ── Navbar Fix ───────────────────────────────────────── */
@media (max-width: 991px) {
  .wf-nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #01123c;
    padding: 16px 20px 24px;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .wf-nav-links.open li { padding: 8px 0; }
}

/* ── Footer Fixes ─────────────────────────────────────── */
.wf-footer-list { list-style: none; padding: 0; margin: 0; }
.wf-footer-list li { margin-bottom: 8px; }
.wf-footer-list li a { color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.wf-footer-list li a:hover { color: #3eda99; }
.wf-footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.wf-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.wf-footer-contact li i { color: #3eda99; margin-top: 2px; flex-shrink: 0; }
.wf-footer-contact li a { color: rgba(255,255,255,0.65); text-decoration: none; }
.wf-footer-contact li a:hover { color: #3eda99; }
