@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════
   PAGE Consultancy Group — Main Stylesheet
   Palette: Navy #0f2240 | Accent #8fa8c8 | Gold #c9a84c
   Font: Montserrat | Framework: Bootstrap 4.6
═══════════════════════════════════════════════════════ */

:root {
  --navy:        #0f2240;
  --navy-mid:    #162d52;
  --blue-accent: #8fa8c8;
  --slate:       #6b8ab0;
  --gold:        #c9a84c;
  --gold-dark:   #b8963e;
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --mid-grey:    #e2e6ec;
  --dark-grey:   #2a3540;
  --text-dark:   #1a2535;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border:      #dde3ea;
  --shadow:      0 4px 24px rgba(15,34,64,0.08);
  --shadow-lg:   0 8px 48px rgba(15,34,64,0.14);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { text-decoration: none; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* ════════════════════════════════
   UTILITIES
════════════════════════════════ */
.text-gold    { color: var(--gold) !important; }
.text-accent  { color: var(--blue-accent) !important; }
.text-navy    { color: var(--navy) !important; }
.bg-navy      { background: var(--navy) !important; }
.bg-offwhite  { background: var(--off-white) !important; }
.bg-dark-grey { background: var(--dark-grey) !important; }

.section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.divider-line {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0.75rem 0 1.5rem;
  display: block;
}

/* ─── Buttons ─── */
.btn-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-white-outline:hover { border-color: var(--white); color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); border-color: var(--navy-mid); }

.btn-navy-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-navy-outline:hover { background: var(--navy); color: var(--white); }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar-page {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(15,34,64,0.35);
}

.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-mark { width: 38px; flex-shrink: 0; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.14em;
  line-height: 1;
}

.logo-sub {
  font-size: 8px;
  font-weight: 500;
  color: var(--blue-accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

.logo-tag {
  font-size: 6.5px;
  font-weight: 300;
  color: rgba(143,168,200,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  height: 68px;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-cta-link { display: flex; align-items: center; }

.nav-cta-link a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 10px 20px !important;
  height: auto !important;
  font-weight: 700 !important;
  margin-left: 12px;
  border-bottom: none !important;
}

.nav-cta-link a:hover { background: var(--gold-dark) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  align-self: center;
}

/* ════════════════════════════════
   HERO — HOME
════════════════════════════════ */
.hero-home {
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 45%, rgba(143,168,200,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.06) 0%, transparent 45%);
}

.hero-bg-mark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  width: 55vw;
  max-width: 700px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  width: 100%;
}

.hero-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.75rem;
}

.hero-label-row::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-label-row span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-home h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 740px;
  line-height: 1.12;
}

.hero-home h1 em { color: var(--blue-accent); font-style: normal; }

.hero-text {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════
   HERO — INNER PAGES
════════════════════════════════ */
.hero-inner-page {
  background: var(--navy);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner-page::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue-accent) 100%);
}

.hero-inner-page .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-page {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.breadcrumb-page a { color: rgba(255,255,255,0.38); }
.breadcrumb-page a:hover { color: var(--blue-accent); }
.breadcrumb-page .sep { margin: 0 8px; }

.hero-inner-page h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-inner-page .hero-sub {
  color: var(--blue-accent);
  font-size: 0.925rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  max-width: 600px;
  margin: 0;
}

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.container-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .divider-line { margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.75rem; }

.lead-text { font-size: 0.975rem; color: var(--text-mid); max-width: 580px; line-height: 1.8; }
.centered .lead-text { margin: 0 auto; }

/* ─── Stats Bar ─── */
.stats-bar { background: var(--navy-mid); }

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 38px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── Service Cards (home teasers) ─── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.service-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .service-icon { background: var(--navy); color: var(--gold); }

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.865rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.75; }

.card-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.card-link:hover { color: var(--gold); }

/* ─── Why Choose section ─── */
.why-item { display: flex; gap: 18px; margin-bottom: 28px; }

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--navy);
  margin-top: 2px;
  flex-shrink: 0;
}

.why-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.why-item p { font-size: 0.845rem; margin: 0; }

.img-block { position: relative; }

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder i { font-size: 80px; color: rgba(255,255,255,0.07); }

.img-block .accent-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.float-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.float-badge .badge-num { font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
.float-badge .badge-text { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

/* ─── Blog Cards ─── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-img-wrap {
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  overflow: hidden;
  position: relative;
}

.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }

.blog-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.07);
}

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.blog-body { padding: 24px; }
.blog-meta { font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-size: 0.975rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.84rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.65; }

.read-more {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover { color: var(--gold); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.cta-inner { position: relative; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 34px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.sfc-icon {
  width: 58px;
  height: 58px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 22px;
}

.service-full-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.service-full-card p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 18px; }

.sfc-list { list-style: none; padding: 0; margin: 0; }

.sfc-list li {
  font-size: 0.845rem;
  color: var(--text-mid);
  padding: 5px 0 5px 18px;
  position: relative;
}

.sfc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Process */
.process-strip { background: var(--off-white); }

.process-step { text-align: center; padding: 40px 20px; }

.step-num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.process-step h4 { font-size: 0.975rem; margin-bottom: 8px; }
.process-step p { font-size: 0.845rem; margin: 0 auto; max-width: 200px; }

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  height: 100%;
  transition: box-shadow 0.2s;
}

.value-card:hover { box-shadow: var(--shadow); }

.value-num { font-size: 3rem; font-weight: 800; color: var(--off-white); line-height: 1; margin-bottom: 10px; display: block; }
.value-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.845rem; margin: 0; }

/* Team */
.team-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s; }
.team-card:hover { box-shadow: var(--shadow-lg); }

.team-photo { aspect-ratio: 3/4; max-height: 300px; background: var(--navy-mid); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
}

.team-photo-placeholder i { font-size: 80px; color: rgba(255,255,255,0.1); }

.team-body { padding: 20px 24px; border-top: 3px solid var(--gold); }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: 10px; display: block; }
.team-bio { font-size: 0.835rem; color: var(--text-mid); margin-bottom: 12px; line-height: 1.6; }
.team-links a { color: var(--text-light); font-size: 15px; margin-right: 10px; }
.team-links a:hover { color: var(--navy); }

/* Accreditations */
.accred-bar { background: var(--off-white); padding: 48px 0; }

.accred-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }

.accred-item { text-align: center; opacity: 0.45; transition: opacity 0.2s; }
.accred-item:hover { opacity: 0.8; }
.accred-item i { font-size: 30px; color: var(--navy); margin-bottom: 6px; display: block; }
.accred-item span { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-info-panel {
  background: var(--navy);
  padding: 48px 40px;
  height: 100%;
}

.contact-info-panel h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.contact-info-panel .ci-intro { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 32px; }

.ci-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }

.ci-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
}

.ci-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); display: block; margin-bottom: 2px; }
.ci-value { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.ci-value a { color: var(--white); }
.ci-value a:hover { color: var(--gold); }

.contact-social { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-social p { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Contact Form */
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 44px;
}

.contact-form-panel h3 { font-size: 1.1rem; margin-bottom: 28px; }

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

.form-group-page { margin-bottom: 22px; }

.form-group-page label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
  display: block;
}

.form-group-page input,
.form-group-page textarea,
.form-group-page select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group-page input:focus,
.form-group-page textarea:focus,
.form-group-page select:focus { border-color: var(--navy); }

.form-group-page textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 8px; }

/* ════════════════════════════════
   BLOG PAGE
════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ════════════════════════════════
   ARTICLE PAGE
════════════════════════════════ */
.article-cat-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.article-header-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.article-back:hover { color: var(--gold); }

.prose h2 { font-size: 1.2rem; color: var(--navy); margin-top: 2.25rem; margin-bottom: 0.9rem; }
.prose p { font-size: 0.965rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.prose li { font-size: 0.965rem; color: var(--text-mid); margin-bottom: 0.5rem; line-height: 1.7; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--off-white);
  margin: 2rem 0;
}
.prose blockquote p { margin: 0; font-style: italic; font-size: 1rem; color: var(--navy); }

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 26px;
  margin-bottom: 24px;
}
.sidebar-card h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sidebar-card p, .sidebar-card li { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }
.related-post-link {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.855rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.related-post-link:last-child { border-bottom: none; padding-bottom: 0; }
.related-post-link:hover { color: var(--gold); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--dark-grey); }

.footer-main { padding: 60px 0 44px; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-brand { margin-bottom: 20px; }
.footer-brand p { font-size: 0.845rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 270px; margin: 14px 0 0; }

.footer-heading { font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }

.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.855rem; color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  font-size: 0.845rem; color: rgba(255,255,255,0.45);
  margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start;
}

.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.45); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.copy { font-size: 10.5px; color: rgba(255,255,255,0.28); }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.45);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 991px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-links.is-open { display: flex; }

  .nav-links li a {
    height: auto;
    padding: 13px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    border-left-color: var(--gold);
    border-bottom: none;
    background: rgba(255,255,255,0.04);
  }

  .nav-cta-link { padding: 12px 24px; display: block; }
  .nav-cta-link a { margin-left: 0 !important; display: inline-block; }

  .float-badge { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }

  .blog-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .contact-form-panel { padding: 32px 24px; }
  .contact-info-panel { padding: 36px 28px; }
  .section { padding: 60px 0; }
}

@media (max-width: 576px) {
  .logo-tag { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}
