/* ============================================================
   GYANEDGE CONSULTING — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
  --primary:   #1a3c5e;
  --primary-dk:#0d2640;
  --accent:    #e8811a;
  --accent-lt: #fff4e6;
  --text:      #2d3748;
  --muted:     #718096;
  --border:    #e2e8f0;
  --bg:        #ffffff;
  --bg-soft:   #f8fafc;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--primary); }
.display-font { font-family: 'Playfair Display', serif; }

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  border: 1px solid rgba(232,129,26,.25);
  border-radius: 30px;
  padding: .28rem .9rem;
  margin-bottom: .9rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-divider {
  width: 44px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: .8rem 0 1.5rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── TOPBAR ── */
.topbar {
  background: var(--primary-dk);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  padding: .5rem 0;
}
.topbar a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .social-links a { margin-left: .6rem; }

/* ── NAVBAR ── */
.navbar {
  background: #fff !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,.05);
  padding: .75rem 0;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -.01em;
}
.navbar-brand span { color: var(--accent); }
.navbar-brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -4px;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: .45rem .8rem !important;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
  background: var(--accent-lt);
}
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: .45rem 1.2rem !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(232,129,26,.1);
}
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  text-decoration: none;
}
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.4); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 800;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,.75); max-width: 520px; }

/* ── CARDS ── */
.gec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.gec-card:hover {
  box-shadow: 0 12px 36px rgba(26,60,94,.1);
  transform: translateY(-3px);
  border-color: rgba(26,60,94,.15);
}
.gec-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.gec-icon.blue  { background: #e8f0fa; color: var(--primary); }
.gec-icon.amber { background: var(--accent-lt); color: var(--accent); }
.gec-icon.green { background: #f0fdf4; color: #16a34a; }
.gec-icon.purple{ background: #faf5ff; color: #7c3aed; }

/* ── FOOTER ── */
.site-footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.site-footer h6 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .86rem;
  text-decoration: none;
  margin-bottom: .45rem;
  transition: color .2s;
}
.site-footer a:hover { color: var(--accent); }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.footer-brand span { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  margin-top: 2.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.social-pill {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.6);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  margin-right: .35rem;
  transition: all .2s;
}
.social-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── BUTTONS ── */
.btn-primary-gec {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  padding: .65rem 1.6rem;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-gec:hover { background: var(--accent); transform: translateY(-2px); color: #fff; }
.btn-accent-gec {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  padding: .65rem 1.6rem;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-block;
}
.btn-accent-gec:hover { background: #cf7016; transform: translateY(-2px); color: #fff; }
.btn-outline-gec {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 7px;
  font-weight: 600;
  padding: .65rem 1.6rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}
.btn-outline-gec:hover { background: var(--primary); color: #fff; }

/* ── FORM ── */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  padding: .6rem .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
  outline: none;
}
.form-label { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }

/* ── MISC ── */
.text-accent { color: var(--accent); }
.text-primary-gec { color: var(--primary); }
.bg-soft { background: var(--bg-soft); }
.tag-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  margin: .25rem;
  transition: border-color .2s, color .2s, background .2s;
}
.tag-pill:hover { border-color: var(--accent); color: var(--primary); background: var(--accent-lt); }

@media (max-width: 768px) {
  .page-hero { padding: 3rem 0 2.5rem; }
}
