/* ==========================================================================
   Areivir Consulting — Main Stylesheet
   Brand: True Blue #1B5BB5 | Azure #00AEEF | Dark #231F20 | Grey #808080
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', Calibri, sans-serif;
  color: #231F20;
  background: #ffffff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #1B5BB5; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- CSS Variables ---------- */
:root {
  --true-blue: #1B5BB5;
  --azure:     #00AEEF;
  --dark:      #231F20;
  --grey:      #808080;
  --light-bg:  #F4F8FD;
  --white:     #FFFFFF;
  --card-bg:   #FFFFFF;
  --border:    #E0E8F4;
  --shadow:    0 4px 24px rgba(27,91,181,0.10);
  --radius:    8px;
  --max-width: 1140px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Bahnschrift', 'Arial', sans-serif;
  color: #1B5BB5;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.8;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--alt { background: var(--light-bg); }
.section--dark {
  background: var(--true-blue);
  color: var(--white);
}
.section--dark h2,
.section--dark h3,
.section--dark p { color: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 12px;
}
.section--dark .section-label { color: #7dd3fc; }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

.rule-blue {
  width: 56px;
  height: 3px;
  background: var(--azure);
  margin-top: 16px;
  border-radius: 2px;
}
.section-header--center .rule-blue { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
  text-decoration: none;
}

.btn-primary {
  background: var(--azure);
  color: var(--white);
  border-color: var(--azure);
}
.btn-primary:hover {
  background: #0099d6;
  border-color: #0099d6;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,174,239,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--true-blue);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--true-blue);
  color: var(--white);
  border-color: var(--true-blue);
}
.btn-blue:hover {
  background: #154e9f;
  border-color: #154e9f;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,91,181,0.35);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27,91,181,0.08);
}

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

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 52px; width: auto; }

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

.nav-link {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--true-blue);
  background: var(--light-bg);
  text-decoration: none;
}

.nav-cta {
  background: var(--true-blue);
  color: var(--white) !important;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--azure) !important;
  color: var(--white) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--true-blue);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

/* Geometric background shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0,174,239,0.12);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,0.2);
  border: 1px solid rgba(0,174,239,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azure);
}

.hero-company-name {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero-company-name span {
  color: var(--azure);
}

.hero h1 {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero stats card */
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 380px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--azure);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.3;
}

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 24px;
}

.hero-feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero-feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--azure);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Trusted Band ---------- */
.trust-band {
  background: var(--light-bg);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azure);
  flex-shrink: 0;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--true-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(27,91,181,0.2);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--true-blue);
}
.service-card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Bahnschrift', Arial, sans-serif;
  color: var(--true-blue);
  text-decoration: none;
}
.service-link:hover { color: var(--azure); text-decoration: none; }
.service-link::after { content: '→'; }

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-visual {
  position: relative;
}

.about-accent-card {
  background: var(--true-blue);
  border-radius: 16px;
  padding: 40px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-accent-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0,174,239,0.15);
}

.about-accent-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.about-accent-card .sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.about-fact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.fact-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--azure);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-content { }
.about-content p { color: #374151; }

.methodology-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--azure);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 24px;
  font-size: 0.9rem;
}
.methodology-badge strong {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-weight: 700;
  color: var(--true-blue);
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--true-blue));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--true-blue);
  color: var(--white);
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(27,91,181,0.25);
  flex-shrink: 0;
}

.process-step:nth-child(even) .step-number { background: var(--azure); }

.process-step h4 {
  font-size: 0.95rem;
  color: var(--true-blue);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Differentiator Strip ---------- */
.diff-strip {
  background: linear-gradient(135deg, var(--true-blue) 0%, #0d3d8a 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.diff-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,174,239,0.1);
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.diff-content h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 12px; }
.diff-content p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0; }
.diff-actions { flex-shrink: 0; }

/* ---------- Why Areivir ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,91,181,0.07);
  border: 1px solid var(--border);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--true-blue), var(--azure));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pillar-icon svg { width: 28px; height: 28px; }

.pillar-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.pillar-card p { font-size: 0.88rem; color: #4a5568; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--light-bg);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: #4a5568; max-width: 540px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--true-blue) 0%, #0d3d8a 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(0,174,239,0.1);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 580px; position: relative; z-index: 1; }

/* ---------- Services Detail (services.html) ---------- */
.service-detail {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--light-bg); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--true-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-detail-icon svg { width: 28px; height: 28px; }

.service-detail h2 { font-size: 1.75rem; margin-bottom: 16px; }
.service-detail p { color: #374151; }

.detail-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.detail-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: #374151; line-height: 1.55;
}
.detail-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--azure);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* Visual card for service detail */
.service-detail-visual {
  background: linear-gradient(135deg, var(--true-blue) 0%, #0d3d8a 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-detail-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(0,174,239,0.12);
}
.service-detail-visual h3 { color: var(--white); margin-bottom: 20px; }
.visual-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.visual-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5;
}
.visual-list li .check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(0,174,239,0.3);
  border: 1px solid rgba(0,174,239,0.5);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300AEEF'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-family: 'Lato', Calibri, sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--true-blue);
  box-shadow: 0 0 0 3px rgba(27,91,181,0.12);
}
textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-submit { margin-top: 8px; }

.form-note {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 12px;
}

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 16px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-text .label {
  font-size: 0.75rem;
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2px;
}
.contact-detail-text .value {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}
.contact-detail-text a { color: var(--true-blue); }
.contact-detail-text a:hover { color: var(--azure); }

.govt-assurance {
  background: linear-gradient(135deg, var(--true-blue), #0d3d8a);
  border-radius: 12px;
  padding: 28px 24px;
  color: var(--white);
}
.govt-assurance h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.govt-assurance p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin: 0; }

/* Success / Error message */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}
.form-message.success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; display: block; }
.form-message.error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: #141b2d;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand { }
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 260px; }

.footer-col h4 {
  font-family: 'Bahnschrift', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--azure); }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ---------- Utilities ---------- */
.text-azure  { color: var(--azure); }
.text-blue   { color: var(--true-blue); }
.text-grey   { color: var(--grey); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.gap-16 { gap: 16px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid  { display: grid; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }

  /* Header */
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { text-align: center; padding: 12px; }
  .nav-cta { margin-left: 0; }

  /* Hero */
  .hero { padding: 60px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }

  /* Sections */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }

  .diff-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .diff-inner .diff-content p { max-width: 100%; }
  .diff-actions { display: flex; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-badge { font-size: 0.72rem; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
