/* ==========================================================================
   Finance Choice Way — Custom Stylesheet
   Palette: Deep Emerald Green · Warm Gold · Cream
   ========================================================================== */

:root {
  --fcw-green-950: #06231b;
  --fcw-green-900: #0a2e24;
  --fcw-green-800: #0f3d2f;
  --fcw-green-700: #145240;
  --fcw-green-600: #1b6b53;
  --fcw-gold-600: #b8860b;
  --fcw-gold-500: #d4a017;
  --fcw-gold-400: #e3b93f;
  --fcw-gold-100: #faf0d4;
  --fcw-cream: #faf6ee;
  --fcw-cream-dark: #f1ead9;
  --fcw-ink: #17251f;
  --fcw-muted: #5d6f67;
  --fcw-white: #ffffff;
  --fcw-radius: 18px;
  --fcw-shadow: 0 18px 45px rgba(10, 46, 36, 0.12);
  --fcw-shadow-sm: 0 8px 24px rgba(10, 46, 36, 0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--fcw-ink);
  background-color: var(--fcw-cream);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, .fcw-heading {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--fcw-green-900);
}

a { text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; }

::selection { background: var(--fcw-gold-400); color: var(--fcw-green-950); }

/* ---------- Topbar ---------- */
.fcw-topbar {
  background: var(--fcw-green-950);
  color: #cfe3da;
  font-size: 0.82rem;
  padding: 8px 0;
}
.fcw-topbar a { color: #cfe3da; }
.fcw-topbar a:hover { color: var(--fcw-gold-400); }
.fcw-topbar i { color: var(--fcw-gold-400); margin-right: 6px; }

/* ---------- Navbar ---------- */
.fcw-navbar {
  background: var(--fcw-green-900);
  padding: 14px 0;
  box-shadow: 0 6px 24px rgba(6, 35, 27, 0.35);
}
.fcw-navbar .navbar-brand { color: #fff; font-family: "Playfair Display", serif; font-weight: 700; }
.fcw-navbar .navbar-brand .brand-accent { color: var(--fcw-gold-400); }
.fcw-navbar .navbar-nav .nav-link {
  color: #e7f0ec;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 6px;
  position: relative;
}
.fcw-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 2px;
  height: 2px;
  background: var(--fcw-gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.fcw-navbar .navbar-nav .nav-link:hover::after,
.fcw-navbar .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.fcw-navbar .navbar-nav .nav-link.active { color: var(--fcw-gold-400); }
.fcw-navbar .navbar-toggler {
  border: 1px solid rgba(227, 185, 63, 0.6);
  color: var(--fcw-gold-400);
}
.fcw-navbar .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(227, 185, 63, 0.3); }
.brand-logo { width: 42px; height: 42px; margin-right: 10px; }

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--fcw-gold-400), var(--fcw-gold-600));
  color: var(--fcw-green-950);
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.35);
}
.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(135deg, var(--fcw-gold-500), var(--fcw-gold-600));
  color: var(--fcw-green-950);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 134, 11, 0.45);
}
.btn-outline-cream {
  border: 2px solid rgba(250, 246, 238, 0.85);
  color: #fff;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 50px;
  background: transparent;
}
.btn-outline-cream:hover { background: #fff; color: var(--fcw-green-900); }
.btn-green {
  background: var(--fcw-green-800);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
}
.btn-green:hover { background: var(--fcw-green-950); color: var(--fcw-gold-400); transform: translateY(-2px); }

/* ---------- Section helpers ---------- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-cream-dark { background: var(--fcw-cream-dark); }
.section-white { background: var(--fcw-white); }
.section-green { background: linear-gradient(160deg, var(--fcw-green-900), var(--fcw-green-800) 60%, var(--fcw-green-700)); color: #eaf3ef; }
.section-green h1, .section-green h2, .section-green h3, .section-green h4 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fcw-gold-600);
  background: var(--fcw-gold-100);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-green .eyebrow { background: rgba(227, 185, 63, 0.16); color: var(--fcw-gold-400); }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.section-lead { color: var(--fcw-muted); max-width: 640px; }
.section-green .section-lead { color: #c9dcd3; }

/* ---------- Hero ---------- */
.fcw-hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(212, 160, 23, 0.22), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(27, 107, 83, 0.55), transparent 60%),
    linear-gradient(150deg, var(--fcw-green-950) 0%, var(--fcw-green-900) 55%, var(--fcw-green-800) 100%);
  color: #f2f7f4;
  padding: 110px 0 95px;
  position: relative;
  overflow: hidden;
}
.fcw-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.15;
}
.fcw-hero .gold-text { color: var(--fcw-gold-400); }
.fcw-hero p.lead-text { color: #cfe0d8; font-size: 1.08rem; max-width: 540px; }
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--fcw-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge i { font-size: 1.6rem; color: var(--fcw-gold-600); }
.hero-badge .hb-title { font-weight: 800; color: var(--fcw-green-900); line-height: 1.2; font-size: 0.95rem; }
.hero-badge .hb-sub { font-size: 0.78rem; color: var(--fcw-muted); }
.hero-badge-1 { left: -18px; bottom: 26px; }
.hero-badge-2 { right: -10px; top: -22px; }

/* ---------- Stats ---------- */
.fcw-stats { background: var(--fcw-white); }
.stat-box {
  text-align: center;
  padding: 34px 18px;
  border-radius: var(--fcw-radius);
  background: var(--fcw-cream);
  border: 1px solid #eee4cd;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fcw-green-800);
  line-height: 1;
}
.stat-suffix { color: var(--fcw-gold-600); font-size: 1.6rem; font-weight: 800; }
.stat-label { color: var(--fcw-muted); font-weight: 600; margin-top: 8px; font-size: 0.92rem; }

/* ---------- Service cards ---------- */
.service-card {
  background: #fff;
  border-radius: var(--fcw-radius);
  overflow: hidden;
  box-shadow: var(--fcw-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0e8d6;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--fcw-shadow); }
.service-card img { height: 210px; width: 100%; object-fit: cover; }
.service-card .card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-card p { color: var(--fcw-muted); font-size: 0.95rem; flex: 1; }
.service-card .btn { align-self: flex-start; }
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fcw-gold-600);
  margin-bottom: 8px;
}

/* ---------- Steps ---------- */
.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(227, 185, 63, 0.25);
  border-radius: var(--fcw-radius);
  padding: 34px 28px;
  height: 100%;
}
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fcw-gold-400), var(--fcw-gold-600));
  color: var(--fcw-green-950);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35);
}
.step-card h3 { font-size: 1.2rem; color: #fff; }
.step-card p { color: #c9dcd3; font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Feature list ---------- */
.feature-item { display: flex; gap: 16px; margin-bottom: 26px; }
.feature-icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--fcw-gold-100);
  color: var(--fcw-gold-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-item h4 { font-size: 1.08rem; margin-bottom: 4px; }
.feature-item p { color: var(--fcw-muted); font-size: 0.93rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--fcw-radius);
  box-shadow: var(--fcw-shadow-sm);
  padding: 44px 8%;
  text-align: center;
  border-top: 5px solid var(--fcw-gold-500);
}
.testimonial-card .quote-icon { font-size: 2.6rem; color: var(--fcw-gold-400); line-height: 1; }
.testimonial-card blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.22rem;
  color: var(--fcw-ink);
  font-style: italic;
  margin: 18px 0 22px;
}
.testimonial-card .client-name { font-weight: 800; color: var(--fcw-green-800); letter-spacing: 0.04em; }
.testimonial-stars { color: var(--fcw-gold-500); letter-spacing: 4px; }
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: var(--fcw-gold-500);
  border: none; opacity: 0.4;
}
.carousel-indicators .active { opacity: 1; }
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: var(--fcw-green-800);
  border-radius: 50%;
  background-size: 45%;
  width: 44px; height: 44px;
}

/* ---------- CTA banner ---------- */
.fcw-cta {
  background:
    radial-gradient(700px 300px at 10% 120%, rgba(212, 160, 23, 0.25), transparent 60%),
    linear-gradient(135deg, var(--fcw-green-950), var(--fcw-green-800));
  border-radius: 26px;
  padding: 56px 48px;
  color: #fff;
}
.fcw-cta h2 { color: #fff; }
.fcw-cta p { color: #cfe0d8; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 380px at 90% -20%, rgba(212, 160, 23, 0.25), transparent 60%),
    linear-gradient(150deg, var(--fcw-green-950), var(--fcw-green-800));
  color: #fff;
  padding: 74px 0 64px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { justify-content: center; margin: 14px 0 0; font-size: 0.9rem; }
.page-hero .breadcrumb a { color: var(--fcw-gold-400); }
.page-hero .breadcrumb-item.active { color: #cfe0d8; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #cfe0d8; }

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border-radius: var(--fcw-radius);
  overflow: hidden;
  box-shadow: var(--fcw-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0e8d6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--fcw-shadow); }
.blog-card img { height: 220px; width: 100%; object-fit: cover; }
.blog-card .card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.25rem; }
.blog-card h3 a { color: var(--fcw-green-900); }
.blog-card h3 a:hover { color: var(--fcw-gold-600); }
.blog-card p { color: var(--fcw-muted); font-size: 0.95rem; flex: 1; }

.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article img.article-hero {
  border-radius: 22px;
  box-shadow: var(--fcw-shadow-sm);
  margin-bottom: 34px;
  width: 100%;
}
.blog-article h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.blog-article p { margin-bottom: 20px; color: #33413b; font-size: 1.02rem; }
.blog-article .lead-para { font-size: 1.15rem; color: var(--fcw-green-800); font-weight: 500; }
.article-cta {
  background: var(--fcw-gold-100);
  border-left: 5px solid var(--fcw-gold-500);
  border-radius: 14px;
  padding: 28px 30px;
  margin: 36px 0;
}
.article-cta h4 { margin-bottom: 8px; }

/* ---------- Forms ---------- */
.fcw-form-card {
  background: #fff;
  border-radius: var(--fcw-radius);
  box-shadow: var(--fcw-shadow);
  padding: 44px;
  border-top: 6px solid var(--fcw-gold-500);
}
.form-label { font-weight: 700; color: var(--fcw-green-900); font-size: 0.9rem; }
.form-control, .form-select {
  border-radius: 12px;
  border: 1.5px solid #e3dccb;
  padding: 12px 16px;
  background: #fdfcf8;
}
.form-control:focus, .form-select:focus {
  border-color: var(--fcw-gold-500);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
  background: #fff;
}
.form-check-input:checked { background-color: var(--fcw-green-800); border-color: var(--fcw-green-800); }
.form-note { font-size: 0.83rem; color: var(--fcw-muted); }

.contact-info-card {
  background: linear-gradient(160deg, var(--fcw-green-900), var(--fcw-green-800));
  color: #e7f0ec;
  border-radius: var(--fcw-radius);
  padding: 44px 38px;
  height: 100%;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-card .info-icon {
  flex: 0 0 48px;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(227, 185, 63, 0.15);
  color: var(--fcw-gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.contact-info-card a { color: #e7f0ec; }
.contact-info-card a:hover { color: var(--fcw-gold-400); }
.contact-info-card .info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fcw-gold-400); font-weight: 800; }

.map-wrap { border-radius: var(--fcw-radius); overflow: hidden; box-shadow: var(--fcw-shadow-sm); border: 6px solid #fff; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Misc ---------- */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: #33413b; }
.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--fcw-gold-100);
  color: var(--fcw-gold-600);
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.section-green .check-list li { color: #dcebe3; }
.section-green .check-list li::before { background: rgba(227,185,63,0.18); color: var(--fcw-gold-400); }

.value-card {
  background: #fff;
  border-radius: var(--fcw-radius);
  padding: 32px 26px;
  box-shadow: var(--fcw-shadow-sm);
  height: 100%;
  border-bottom: 4px solid var(--fcw-gold-500);
}
.value-card i { font-size: 2rem; color: var(--fcw-green-700); }
.value-card h4 { margin: 14px 0 8px; font-size: 1.1rem; }
.value-card p { color: var(--fcw-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Legal pages ---------- */
.legal-content { background: #fff; border-radius: var(--fcw-radius); box-shadow: var(--fcw-shadow-sm); padding: 56px; }
.legal-content h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #33413b; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-updated { color: var(--fcw-muted); font-size: 0.9rem; font-style: italic; }

/* ---------- Footer ---------- */
.fcw-footer {
  background: var(--fcw-green-950);
  color: #b9cdc3;
  padding: 70px 0 0;
  font-size: 0.93rem;
}
.fcw-footer h5 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.fcw-footer a { color: #b9cdc3; }
.fcw-footer a:hover { color: var(--fcw-gold-400); }
.fcw-footer ul { list-style: none; padding: 0; margin: 0; }
.fcw-footer ul li { margin-bottom: 10px; }
.footer-brand { color: #fff; font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 700; }
.footer-brand .brand-accent { color: var(--fcw-gold-400); }
.footer-contact li { display: flex; gap: 12px; }
.footer-contact i { color: var(--fcw-gold-400); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 54px;
  padding: 22px 0;
  font-size: 0.85rem;
}

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fcw-gold-400), var(--fcw-gold-600));
  color: var(--fcw-green-950);
  border: none;
  font-size: 1.2rem;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.4);
  z-index: 1050;
}
#backToTop.show { display: flex; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .fcw-navbar .navbar-collapse { margin-top: 14px; }
  .fcw-navbar .navbar-nav .nav-link { margin: 4px 0; }
  .hero-badge-1 { left: 8px; }
  .hero-badge-2 { right: 8px; }
  .fcw-cta { padding: 44px 30px; }
  .fcw-form-card { padding: 32px 24px; }
  .legal-content { padding: 36px 24px; }
  .section { padding: 64px 0; }
}
