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

:root {
  --navy:       #0f2040;
  --navy-mid:   #1a3560;
  --navy-light: #1e4080;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --gold:       #c8a84b;
  --text:       #1e293b;
  --text-muted: #64748b;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --shadow:     0 4px 24px rgba(15,32,64,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }

/* ── HEADER ─────────────────────────────────── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

nav { display: flex; gap: 4px; }

nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

nav a.active {
  border-bottom: 2px solid var(--gold);
  border-radius: 6px 6px 0 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--navy);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.75;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,32,64,0.80) 0%, rgba(15,32,64,0.25) 100%);
  display: flex;
  align-items: center;
  z-index: 2;
}


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

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-top: 12px;
  max-width: 560px;
}

.hero-content-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-text { flex: 1; }

.hero-logo-badge {
  flex-shrink: 0;
}

.hero-logo-badge img {
  height: 280px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.50));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ── PAGE HEADER (non-home pages) ───────────── */
.page-header {
  position: relative;
  padding: 56px 24px;
  text-align: center;
  background: url('images/melbourne-skyline.jpg') center 55% / cover no-repeat;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,32,64,0.88) 0%, rgba(15,32,64,0.60) 100%);
}

.page-header h1,
.page-header p {
  position: relative;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.page-header p {
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 64px 0; }
section.tight { padding: 40px 0; }

/* ── INTRO STRIP ─────────────────────────────── */
.intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold);
  border: 1.5px solid rgba(200,168,75,0.35);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.intro-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.intro-text strong { color: var(--text); }

.intro-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.intro-cred {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
}

.intro-cred svg { color: var(--blue); flex-shrink: 0; }

.intro-img-wrap {
  position: relative;
}

.intro-img-wrap img {
  width: 100%;
  height: 340px;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(15,32,64,0.15);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.intro-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.30);
}

/* ── QUICK LINKS ─────────────────────────────── */
.quicklinks {
  background: var(--bg);
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--text);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.card-icon svg { width: 22px; height: 22px; }

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── PILLARS / WHY CHOOSE US ─────────────────── */
.pillars {
  background: var(--navy);
  padding: 64px 0;
}

.pillars .section-title,
.pillars .section-sub { color: var(--white); }
.pillars .section-sub { color: rgba(255,255,255,0.55); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  text-align: center;
  padding: 28px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.pillar-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar h3 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.pillar p { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ── PROFILE STATS BAR ───────────────────────── */
.profile-stats-bar {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--gold);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.profile-stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

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

.profile-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.profile-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PROFILE ─────────────────────────────────── */
.profile-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.profile-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.profile-section:last-child { border-bottom: none; }

.profile-section-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 2px;
}

.profile-section-icon svg { width: 22px; height: 22px; }

.profile-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.profile-section p {
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.profile-highlight {
  background: rgba(15,32,64,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}

.profile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.profile-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.profile-list li svg { color: var(--blue); flex-shrink: 0; }

/* ── PROFILE SIDEBAR ─────────────────────────── */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.sidebar-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sidebar-car-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sidebar-cta-body {
  padding: 20px;
}

.sidebar-cta-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.sidebar-cta-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.15s;
}

.sidebar-phone:hover { background: var(--bg); color: var(--navy); }

.sidebar-facts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.sidebar-facts h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sidebar-fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.45;
}

.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact svg { color: var(--blue); flex-shrink: 0; margin-top: 1px; }

/* ── SERVICES ────────────────────────────────── */
.services-intro {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-intro-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-intro-block-wide {
  grid-column: 1 / -1;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 20px;
}

.svc-intro-block-wide > div h2 { margin-bottom: 8px; }

.svc-intro-icon {
  width: 46px;
  height: 46px;
  background: rgba(37,99,235,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.svc-intro-icon svg { width: 22px; height: 22px; }

.svc-intro-block h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.svc-intro-block p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Service Types */
.svc-types-section {
  background: var(--bg);
  padding: 64px 0;
}

.svc-types-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.svc-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-type-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.svc-type-highlight {
  background: var(--navy);
  border-color: var(--navy);
}

.svc-type-highlight .svc-type-num { color: var(--gold); opacity: 1; }
.svc-type-highlight .svc-type-icon { background: rgba(200,168,75,0.15); color: var(--gold); }
.svc-type-highlight h3 { color: var(--white); }
.svc-type-highlight p { color: rgba(255,255,255,0.60); }

.svc-type-num {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.70;
}

.svc-type-icon {
  width: 42px;
  height: 42px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.svc-type-icon svg { width: 20px; height: 20px; }
.svc-type-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.svc-type-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

.objectives {
  background: var(--navy);
  padding: 72px 0;
}

.objectives .section-title { color: var(--white); }
.objectives .section-sub { color: rgba(255,255,255,0.50); margin-bottom: 48px; }

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.obj-card-wide {
  grid-column: 1 / -1;
  flex-direction: row !important;
  align-items: center;
  gap: 24px;
}

.obj-card-wide .obj-card-num { margin-bottom: 0; }
.obj-card-wide .obj-card-icon { flex-shrink: 0; }
.obj-card-wide h3 { margin-bottom: 4px; }
.obj-card-wide > div:last-child { flex: 1; }

.obj-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
}

.obj-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,168,75,0.40);
}

.obj-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.80;
}

.obj-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(200,168,75,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.obj-card-icon svg { width: 22px; height: 22px; }

.obj-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.obj-card p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .objectives-grid { grid-template-columns: repeat(2, 1fr); }
  .obj-card-wide { grid-column: 1 / -1; grid-template-columns: auto 1fr; }
  .obj-card-wide .obj-card-icon { display: none; }
}

@media (max-width: 600px) {
  .objectives-grid { grid-template-columns: 1fr; }
  .obj-card-wide { display: flex !important; flex-direction: column; }
}

/* ── CONTACT quick bar ───────────────────────── */
.contact-quick-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 20px 0;
}

.contact-quick-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.contact-quick-item:last-child { border-right: none; }
.contact-quick-item:hover { background: rgba(255,255,255,0.06); }

.contact-quick-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,168,75,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-quick-icon svg { width: 18px; height: 18px; }

.contact-quick-label {
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}

.contact-quick-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.contact-details-col,
.contact-cta-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-enquiry-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-enquiry-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,75,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-enquiry-icon svg { width: 22px; height: 22px; }

.contact-enquiry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.contact-enquiry-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  padding: 9px 18px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-gold:hover { opacity: 0.88; color: var(--navy); }

/* ── CERTIFICATES ────────────────────────────── */
.cert-hero-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 24px 0;
}

.cert-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 18px 20px;
}

.cert-hero-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,75,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.cert-hero-icon svg { width: 22px; height: 22px; }

.cert-hero-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.cert-hero-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
}

.cert-hero-badge {
  margin-left: auto;
  background: rgba(22,163,74,0.20);
  color: #4ade80;
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(74,222,128,0.25);
  flex-shrink: 0;
}

.cert-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.cert-info-col { padding-top: 8px; }

.cert-info-label {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold);
  border: 1.5px solid rgba(200,168,75,0.35);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.cert-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cert-info-body {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.cert-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cert-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cert-step-num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-step strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 2px;
}

.cert-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,168,75,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cert-icon svg { width: 26px; height: 26px; }

.cert-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); }
.cert-card p { font-size: 0.875rem; color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 7px;
  transition: all 0.15s;
  text-decoration: none;
}

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

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

/* ── CONTACT ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child { border-bottom: none; }

.contact-row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--blue);
  margin-top: 2px;
}

.contact-row .label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-row .value { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.contact-row a.value { color: var(--blue); }
.contact-row a.value:hover { color: var(--blue-light); }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.82rem;
  margin-top: 0;
}

footer a { color: rgba(255,255,255,0.55); }
footer a:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { height: 60px; }
  nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 12px 16px 16px; gap: 2px; }
  nav.open { display: flex; }
  nav a { padding: 10px 12px; border-radius: 8px; }
  nav a.active { border-radius: 8px; border-bottom: none; border-left: 3px solid var(--gold); }
  .nav-toggle { display: flex; }
  .logo-text { font-size: 0.85rem; }

  .hero { height: 260px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-content-split { flex-direction: column; justify-content: center; }
  .hero-logo-badge { display: none; }

  .page-header { padding: 40px 20px; }
  .page-header h1 { font-size: 1.6rem; }
  .page-header p { font-size: 0.95rem; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-img-wrap img { height: 220px; }
  .intro-text h2 { font-size: 1.4rem; }

  .profile-stats { grid-template-columns: repeat(2, 1fr); }
  .profile-stat:nth-child(2) { border-right: none; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .profile-section { gap: 14px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-quick-items { grid-template-columns: 1fr; }
  .contact-quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .contact-quick-item:last-child { border-bottom: none; }
  .services-intro-grid { grid-template-columns: 1fr; }
  .svc-intro-block-wide { flex-direction: column !important; }
  .svc-types-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-types-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cert-hero-cards { grid-template-columns: 1fr; }
  .cert-layout { grid-template-columns: 1fr; }
  .cert-hero-badge { display: none; }

  .section-title { font-size: 1.35rem; }
  section { padding: 40px 0; }
  .services-intro { padding: 40px 0; }
  .svc-types-section { padding: 40px 0; }
  .objectives { padding: 48px 0; }
  .profile-stats-bar { padding: 20px 0; }
  .cert-hero-bar { padding: 18px 0; }
  .contact-quick-bar { padding: 16px 0; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 0.78rem; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-content p { font-size: 0.875rem; }
  .page-header h1 { font-size: 1.35rem; }

  .svc-types-grid { grid-template-columns: 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }
  .obj-card-wide { display: flex !important; flex-direction: column; }
  .obj-card-wide .obj-card-icon { display: flex; }

  .profile-stats { grid-template-columns: 1fr 1fr; }
  .profile-stat { padding: 8px 8px; }
  .profile-stat-num { font-size: 1.25rem; }

  .cert-hero-cards { grid-template-columns: 1fr; }
  .cert-hero-card { padding: 14px 16px; gap: 12px; }

  .contact-card { padding: 20px; }
  .contact-enquiry-card { padding: 20px; }

  .svc-type-card { padding: 18px; }
  .intro-credentials { gap: 8px; }
  .intro-cred { font-size: 0.75rem; padding: 5px 10px; }

  .btn { font-size: 0.82rem; padding: 8px 14px; }
  .btn-gold { font-size: 0.82rem; padding: 8px 14px; }
}
