/* ── Shelander Financial Solutions — Faithful Replica ─────────────────── */

:root {
  --charcoal: #2E2E2E;
  --charcoal-dark: #1a1a1a;
  --gold: #DAC287;
  --gold-dark: #9F8952;
  --white: #FFFFFF;
  --light-gray: #F2F2F2;
  --mid-gray: #54595F;
  --text: #2E2E2E;
  --text-light: #8B8B8B;
  --border: #E0E0E0;
  --shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Roboto", "Arial", sans-serif; color: var(--text); background: #fff; line-height: 1.6; }

h1, h2, h3, h4 { font-family: "Georgia", serif; }
a { text-decoration: none; color: var(--gold-dark); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.nav-logo img { height: 50px; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex-wrap: nowrap;
}
.nav-menu li a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu li a:hover { color: var(--gold); }
.nav-menu li a.active { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-top: 2px solid var(--gold);
  z-index: 300;
}
.dropdown a {
  color: var(--charcoal) !important;
  font-size: 13px !important;
  padding: 10px 16px !important;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}
.dropdown a:hover { background: var(--light-gray) !important; color: var(--gold-dark) !important; }
.has-dropdown:hover .dropdown { display: block; }

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.nav-contact a {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.nav-contact a:hover { color: var(--gold-dark); }

.nav-cta {
  background: var(--gold-dark);
  color: #fff !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: inline-block;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }

.nav-toggle { display: none; background: none; border: none; color: white; font-size: 28px; cursor: pointer; padding: 8px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--charcoal-dark); flex-direction: column; padding: 12px 0; gap: 0; }
  .nav-menu.open { display: flex; }
  .dropdown { position: static; box-shadow: none; border-top: none; background: rgba(255,255,255,0.05); }
  .dropdown a { color: rgba(255,255,255,0.8) !important; }
  .nav-contact { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #000 url("wp-content/uploads/2024/05/Shelander-Financial-Solutions-Hero.jpg") center center / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-logo { width: 220px; margin: 0 auto 30px; display: block; }
.hero h2 {
  font-family: "Georgia", serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero-sub {
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
}
.btn-hero {
  display: inline-block;
  background: var(--gold-dark);
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 36px;
  border-bottom: 2px solid transparent;
  transition: background 0.2s;
  text-decoration: none;
  margin-bottom: 40px;
}
.btn-hero:hover { background: var(--gold); color: var(--charcoal); }
.hero-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.hero-badges img { max-height: 80px; width: auto; }

/* ── Section base ────────────────────────────────────────────────────── */
.section { padding: 70px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  font-family: "Georgia", serif;
  font-size: 23px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: "Georgia", serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 400;
  color: var(--gold-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.section-title-dark {
  font-family: "Georgia", serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-body { font-family: "Arial", sans-serif; font-size: 16px; color: #54595F; line-height: 1.75; }
.section-body strong { color: var(--charcoal); }

/* ── Two-col layouts ─────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } .two-col.reverse { direction: ltr; } }

/* ── Welcome ─────────────────────────────────────────────────────────── */
.welcome-section { background: #fff; }
.welcome-section img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }

/* ── Why Choose (charcoal bg) ────────────────────────────────────────── */
.why-choose {
  background: var(--charcoal);
  color: #fff;
}
.why-choose .section-title {
  font-family: "Georgia", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1em;
  color: #fff;
  text-transform: none;
  margin-bottom: 8px;
}
.why-choose p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 20px; }
.why-choose img { width: 100%; border-radius: 4px; }

/* ── Services ────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.service-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card-body { padding: 24px; text-align: center; }
.service-card h3 {
  font-family: "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.service-card a {
  display: inline-block;
  background: var(--gold-dark);
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  transition: background 0.2s;
}
.service-card a:hover { background: var(--gold); color: var(--charcoal); }

/* ── What To Expect ──────────────────────────────────────────────────── */
.what-to-expect { background: var(--light-gray); }
.expect-text h3 {
  font-family: "Georgia", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.expect-text p { font-size: 15px; color: #54595F; margin-bottom: 24px; line-height: 1.7; }
.what-to-expect img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }

/* ── Features strip (Optimized / Humanized / Customized) ─────────────── */
.features-strip { background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-item { text-align: center; padding: 20px; }
.feature-item img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; display: block; }
.feature-item h3 {
  font-family: "Georgia", serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.feature-item p { font-size: 15px; color: #54595F; line-height: 1.6; }

/* ── CTA Get Started ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 680px; margin: 0 auto 32px; line-height: 1.7; }
.btn-cta {
  display: inline-block;
  background: var(--gold-dark);
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 40px;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--gold); color: var(--charcoal); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal-dark); color: rgba(255,255,255,0.7); padding: 32px 24px; }
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 13px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ── Page hero (interior pages) ──────────────────────────────────────── */
.page-hero {
  background: var(--charcoal) url("wp-content/uploads/2024/05/Inner-Page-Background-City.jpg") center center / cover no-repeat;
  position: relative;
  padding: 72px 24px;
  text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold); }
.page-hero h1 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--gold-dark);
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }

/* ── Form ────────────────────────────────────────────────────────────── */
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; font-family: "Arial", sans-serif; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--charcoal);
  background: #fff;
  font-family: "Arial", sans-serif;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold-dark); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-group { margin-bottom: 18px; }

/* ── Utils ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.bg-light { background: var(--light-gray); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-48 { margin-bottom: 48px; }
