:root {
  --brand: #0f766e;
  --brand-2: #22d3ee;
  --bg: #0b1324;
  --card: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --max: 1100px;
  --radius: 1.25rem;
  --shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

/* =========================
   Header + Navigation
   ========================= */
header.site {
  position: sticky;
  top: 0;
  background: rgba(11, 19, 36, 0.8);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(153, 246, 228, .15);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.brand img {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.brand .wordmark { font-weight: 800; letter-spacing: .2px; }

.navlinks {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Base nav link styling */
.navlinks a {
  opacity: .95;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  padding: .55rem .85rem;
  border-radius: 999px;
}

/* Highlight only the current page link */
.navlinks a[aria-current="page"] {
  background: var(--brand);
  color: #fff;
}

/* Ensure Contact CTA looks normal on non-contact pages */
.navlinks a.cta:not([aria-current="page"]) {
  background: transparent;
  color: var(--brand-2);
  border: 1px solid var(--brand-2);
}

/* Optional hover effect for consistency */
.navlinks a:hover {
  color: var(--brand-2);
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(153, 246, 228, .35);
  border-radius: 10px;
  padding: .4rem .6rem;
}

@media (max-width: 820px) {
  .navlinks { display: none; }
  .menu-btn { display: inline-flex; }
}

/* =========================
   Layout + Utilities
   ========================= */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
.card {
  background: linear-gradient(180deg, rgba(15, 23, 42, .9), rgba(15, 23, 42, .7));
  border: 1px solid rgba(153, 246, 228, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pad { padding: 1rem; }
.section { padding: clamp(2rem, 6vw, 3rem) 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-head h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 2rem); }
.pill {
  font-size: .85rem;
  border: 1px solid rgba(153, 246, 228, .35);
  color: var(--brand-2);
  padding: .25rem .6rem;
  border-radius: 999px;
}

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* =========================
   Hero Section
   ========================= */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 40%, var(--card) 100%);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-2);
  font-weight: 600;
}
h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: .6rem 0 0;
}
.lead { color: var(--muted); font-size: clamp(1rem, 2.1vw, 1.15rem); }
.hero-cta { display: flex; gap: .8rem; margin-top: 1.2rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  text-decoration: none;
}
.btn.primary { background: var(--brand); color: white; }
.btn.secondary { background: transparent; }

/* =========================
   Services + Content
   ========================= */
.service h3 { margin: .6rem 0 .3rem; font-size: 1.05rem; }
.service p { margin: 0; color: var(--muted); }

/* =========================
   Footer
   ========================= */
footer {
  border-top: 1px solid rgba(153, 246, 228, .15);
  padding: 1.25rem 0;
  color: var(--muted);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================
   Misc utilities
   ========================= */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
/* === Bigger logo across the site === */

/* Header (top-left) logo size */
.brand img {
  height: 96px;        /* was ~44px */
  width: 96px;
  border-radius: 20px; /* keep the rounded look */
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Optional: tweak header spacing if needed */
.nav { padding: .5rem 0; }

/* On small screens, scale logo down a bit so it fits */
@media (max-width: 820px) {
  .brand img { height: 72px; width: 72px; }
}

/* Big on-page hero logos (used in About/Services/NDIS/Contact/Careers hero sections) */
.logo-hero {
  width: 150px;      /* bigger visual impact */
  height: 150px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
@media (max-width: 820px) {
  .logo-hero { width: 120px; height: 120px; }
}
