:root {
  --primary: #1B4965;
  --primary-light: #2D6A8F;
  --primary-dark: #0F2D3D;
  --accent: #CA6B3A;
  --accent-hover: #B85A2A;
  --accent-light: #F0C79E;
  --bg: #FAFAF7;
  --white: #FFFFFF;
  --dark: #1A1D23;
  --dark-light: #2C3038;
  --text: #2C3038;
  --text-muted: #5A6070;
  --border: #D8DBE2;
  --card-bg: #FFFFFF;
  --hero-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 8px rgba(26,29,35,0.08);
  --shadow-lg: 0 8px 30px rgba(26,29,35,0.12);
  --max-width: 1180px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ─── NAV ─── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo .logo-mark {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    gap: 0.4rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 5%;
    width: 100%;
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--bg);
    border-bottom: none;
  }

  .nav-cta {
    text-align: center;
    margin: 0.5rem 5% 0;
    display: inline-block;
  }
}

/* ─── HERO ─── */
.hero {
  background: var(--hero-gradient);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

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

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

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

.btn-accent-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent-outline:hover {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* ─── STATS ─── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-tile {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-tile .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat-tile .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats .container {
    grid-template-columns: 1fr;
  }
  .stat-tile {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
  }
  .stat-tile:last-child {
    border-bottom: none;
  }
}

/* ─── SECTIONS ─── */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--white);
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.service-link:hover {
  color: var(--accent-hover);
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  text-align: center;
  min-width: 140px;
}

.trust-item .trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.trust-item .trust-value {
  font-size: 1rem;
  font-weight: 600;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--hero-gradient);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 560px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 2.5rem 0 1.8rem;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.cta-strip p {
  opacity: 0.9;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.cta-strip .btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
}

.cta-strip .btn-primary:hover {
  background: var(--accent-hover);
}

/* ─── ABOUT PAGE ─── */
.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-values {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.about-values h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-item .value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

.contact-info {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-detail h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-detail a {
  color: var(--accent);
  font-weight: 500;
}

.contact-cta-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-cta-card p {
  opacity: 0.9;
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.contact-cta-card .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: var(--gray-400, #94A3B8);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: #94A3B8;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-abn {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--dark-light);
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── UTILITIES ─── */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  margin: 0.6rem 0 1rem 1.4rem;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--accent);
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--accent-hover);
}