:root {
  --primary: #1e3a5f;
  --accent: #3b82f6;
  --bg: #f8fafc;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--text-light);
  justify-content: space-between;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar .nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 1.5rem;
}

.navbar .links {
  display: flex;
  gap: 2rem;
}

.navbar .links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.navbar .links a.active {
  color: var(--accent);
}

.navbar .cta {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  transition: all 0.3s ease;
  display: block;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--primary);
  padding: 2rem;
  text-align: center;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin: 0.5rem 0;
}

/* Hero */
.hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: #2d4a7e;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-card em {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Credentials strip */
.credentials {
  background: var(--primary);
  color: var(--text-light);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.credentials p {
  margin-bottom: 0.5rem;
}

.credentials .abn,
.credentials .acn {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* CTA strip */
.cta-strip {
  background: var(--primary);
  color: var(--text-light);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  text-align: center;
}

.cta-strip h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Page hero band (inner pages) */
.page-hero {
  background: var(--primary);
  color: var(--text-light);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* CTA strip for inner pages */
.inner-cta {
  background: var(--primary);
  color: var(--text-light);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer .rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer .row h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer .row ul {
  margin-bottom: 1rem;
}

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

.footer .row a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.footer .bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .navbar .links,
  .navbar .cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero {
    min-height: 30vh;
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .footer .rows {
    grid-template-columns: 1fr;
  }
}