/* ============================================================
   SmartPath Data — Global Stylesheet
   ============================================================ */

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

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #122848;
  --navy-light:  #1A3A5C;
  --blue:        #1E6FBF;
  --blue-bright: #2E87E0;
  --accent:      #4AACF0;
  --gold:        #C9A84C;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --muted:       #8AA4C0;
  --text-dark:   #0B1F3A;
  --text-body:   #334E6B;
  --border:      #E2ECF5;
}

html  { scroll-behavior: smooth; }
body  {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
p  { line-height: 1.75; font-weight: 300; }
a  { color: var(--blue); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5vw; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78,172,240,0.12);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 0.5rem 1.2rem; border-radius: 4px;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--blue-bright); }

/* ── PAGE WRAPPER ── */
.page-body { padding-top: 68px; }

/* ── SECTION UTILITIES ── */
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}
.section-label::before {
  content: ''; display: block; width: 22px; height: 2px; background: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--navy); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-body);
  max-width: 560px; line-height: 1.7; font-weight: 300; margin-bottom: 3rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(30,111,191,0.22) 0%, transparent 70%),
    linear-gradient(150deg, #0B1F3A 0%, #0E2B4F 60%, #122848 100%);
  padding: 90px 5vw 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  border: 1px solid rgba(74,172,240,0.12); border-radius: 50%;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2rem; font-family: 'DM Sans', sans-serif;
}
.page-hero .eyebrow::before {
  content: ''; display: block; width: 22px; height: 2px; background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white); margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 560px; font-weight: 300; line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--blue);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-1px); color: var(--white); }

.btn-white {
  background: var(--white); color: var(--blue);
  padding: 1rem 2.5rem; border-radius: 4px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  display: inline-block; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
.site-footer {
  background: #07172C; color: rgba(255,255,255,0.4);
  text-align: center; padding: 2rem 5vw; font-size: 0.85rem;
}
.site-footer a { color: var(--accent); text-decoration: none; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem;
}
.service-card {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 2.2rem 2rem;
  background: var(--white); transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: rgba(30,111,191,0.3); box-shadow: 0 8px 32px rgba(11,31,58,0.10); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 52px; height: 52px; background: rgba(30,111,191,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.4rem;
}
.service-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.7rem; }
.service-card p  { font-size: 0.93rem; color: var(--text-body); }
.service-card ul { padding-left: 1.2rem; margin-top: 0.8rem; }
.service-card ul li { font-size: 0.88rem; color: var(--text-body); margin-bottom: 0.4rem; line-height: 1.5; font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1.2rem; font-size: 0.88rem; font-weight: 600;
  color: var(--blue); text-decoration: none; transition: gap 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.service-link:hover { gap: 0.6rem; }

/* ── PILLAR / WHY CARDS ── */
.pillars { display: flex; flex-direction: column; gap: 1.2rem; }
.pillar {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem 1.6rem; border: 1px solid rgba(74,172,240,0.15);
  border-radius: 10px; background: rgba(255,255,255,0.04); transition: border-color 0.3s;
}
.pillar:hover { border-color: rgba(74,172,240,0.4); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; }
.pillar p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 300; }

/* ── STEPS ── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 0; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--blue) 70%, transparent);
  opacity: 0.25;
}
.step { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 52px; height: 52px; background: var(--blue); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.3rem;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
  box-shadow: 0 4px 18px rgba(30,111,191,0.35);
}
.step h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; }
.step p   { font-size: 0.88rem; color: var(--text-body); }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, #0E4FA0 100%);
  text-align: center; padding: 90px 5vw;
}
.cta-strip h2  { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-strip p   { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; font-weight: 300; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 1.6rem; border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 1rem; transition: border-color 0.3s;
}
.contact-detail:hover { border-color: rgba(30,111,191,0.4); }
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; }
.contact-detail a, .contact-detail p { font-size: 0.95rem; color: var(--text-dark); font-weight: 400; text-decoration: none; }
.contact-detail a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 2.5rem;
}
.contact-form-wrap h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-wrap .sub { font-size: 0.93rem; color: var(--text-body); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; font-family: 'DM Sans', sans-serif; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--text-dark);
  background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 0.9rem; background: var(--blue); color: var(--white);
  border: none; border-radius: 4px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--blue-bright); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.about-photo {
  border-radius: 12px; overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: 0 12px 40px rgba(11,31,58,0.12);
}
.about-photo img { width: 100%; display: block; }
.about-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(30,111,191,0.08); border: 1px solid rgba(30,111,191,0.2);
  padding: 0.4rem 0.9rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--blue);
  margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif;
}
.about-body h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: var(--navy); margin-bottom: 1.2rem; }
.about-body p  { color: var(--text-body); margin-bottom: 1.2rem; font-size: 1.02rem; }
.about-skills  { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }
.skill-tag {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: 20px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-body);
  font-family: 'DM Sans', sans-serif;
}
.about-values { margin-top: 3rem; }
.about-values h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card {
  padding: 1.2rem 1.4rem; border: 1.5px solid var(--border);
  border-radius: 10px; transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: rgba(30,111,191,0.3); transform: translateY(-2px); }
.value-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.value-card p  { font-size: 0.85rem; color: var(--text-body); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .contact-grid, .about-grid, .values-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ── BLOG POST CONTENT ── */
.post-content { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; }
.post-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.post-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--navy); margin: 2rem 0 0.8rem;
}
.post-content p { margin-bottom: 1.3rem; font-weight: 300; }
.post-content ul, .post-content ol {
  padding-left: 1.4rem; margin-bottom: 1.3rem;
  list-style: disc;
}
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; color: var(--text-body); font-weight: 300; }
.post-content strong { font-weight: 600; color: var(--navy); }
.post-content em { font-style: italic; }
.post-content a { color: var(--blue); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(30,111,191,0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-body);
}
.post-content code {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 0.15em 0.45em; border-radius: 4px;
  font-size: 0.88em; font-family: 'Courier New', monospace;
  color: var(--navy);
}
.post-content pre {
  background: var(--navy); color: #e2e8f0;
  padding: 1.5rem; border-radius: 8px; overflow-x: auto;
  margin-bottom: 1.5rem;
}
.post-content pre code { background: none; border: none; color: inherit; padding: 0; }
