/* ============================================================
   DocsOutNotary.com — Site Stylesheet
   ============================================================ */

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

:root {
  --navy:    #1b2d55;
  --navy-dk: #111e3a;
  --gold:    #c9a84c;
  --gold-lt: #e2c97e;
  --white:   #ffffff;
  --off:     #f7f8fa;
  --text:    #2e3545;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --radius:  8px;
  --max-w:   900px;
  --shadow:  0 4px 24px rgba(27,45,85,.10);
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

/* ── Typography ── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.8rem,4vw,2.6rem); }
h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; padding-bottom: .4rem; border-bottom: 2px solid var(--gold); display: inline-block; }
h3 { font-size: 1.1rem; margin: 1.25rem 0 .4rem; color: var(--navy); }
p  { margin-bottom: 1rem; color: var(--text); }
a  { color: var(--gold); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }
ul,ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }
strong { color: var(--navy); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.page-wrap  { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ── Header / Nav ── */
.site-header {
  background: var(--navy-dk);
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy-dk); font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.logo-text span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold); text-decoration: none; }

/* ── Hero band ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 52px 0 46px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero .hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 0;
}

.page-hero .hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dk);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Content card ── */
.content-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 48px 52px;
  margin: 40px 0;
  border: 1px solid var(--border);
}

/* ── Info box ── */
.info-box {
  background: #f0f4ff;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  margin: 1.5rem 0;
  font-size: .95rem;
}

.info-box.gold { background: #fdf8ee; border-left-color: var(--gold); }

/* ── Contact form ── */
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,45,85,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}

.btn-submit:hover { background: var(--gold); color: var(--navy-dk); transform: translateY(-1px); text-decoration: none; }

/* ── Contact info cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.contact-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
}

.contact-item .ci-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-item .ci-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-item .ci-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Home hero ── */
.home-hero {
  background: linear-gradient(150deg, var(--navy-dk) 0%, var(--navy) 60%, #2a4080 100%);
  padding: 90px 0 80px;
  text-align: center;
  color: var(--white);
}

.home-hero h1 { color: var(--white); font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 1rem; }
.home-hero .hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2rem; }
.home-hero .btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dk);
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  text-decoration: none;
  transition: opacity .15s;
}
.home-hero .btn-cta:hover { opacity: .9; text-decoration: none; }

.home-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-card .fc-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; margin: 0 0 8px; }
.feature-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-dk);
  border-top: 3px solid var(--gold);
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  padding: 36px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
}

.footer-brand span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Last updated pill ── */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── Section divider ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .content-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
