:root {
  --navy-900: #0a1836;
  --navy-800: #0f2350;
  --navy-700: #153268;
  --blue-600: #1a72cf;
  --blue-500: #2e8ce6;
  --gold-500: #f0ab1f;
  --gold-400: #f6c34c;
  --ink-900: #0f172a;
  --slate-600: #4b5768;
  --slate-400: #8592a6;
  --surface: #f5f8fc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink-900);
}

h1, h2, h3, h4, .font-heading {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
}

/* Utility bar + header */
.brand-gradient {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--blue-600) 100%);
}

.hero-overlay {
  background: linear-gradient(100deg, rgba(10, 24, 54, 0.95) 0%, rgba(10, 24, 54, 0.82) 38%, rgba(10, 24, 54, 0.45) 68%, rgba(10, 24, 54, 0.25) 100%);
}

.eyebrow {
  letter-spacing: 0.18em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(46, 140, 230, 0.55);
}

.btn-primary:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 14px 28px -8px rgba(240, 171, 31, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-dark {
  background: var(--navy-900);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-700);
}

/* Cards */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(10, 24, 54, 0.35);
}

.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

/* Step badges for "What to Expect" */
.step-badge {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  box-shadow: 0 10px 20px -10px rgba(21, 50, 104, 0.6);
}

/* Suburb chips */
.suburb-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 6px 16px -12px rgba(10, 24, 54, 0.4);
}

/* FAQ accordion */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary svg {
  color: var(--gold-500);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

/* Mobile nav */
#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.25s ease;
  overflow: hidden;
}

/* Sticky shrink header handled via JS toggling this class */
.header-shrink {
  box-shadow: 0 8px 24px -12px rgba(10, 24, 54, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
