@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #1e3a8a;
  --primary-blue-light: #2563eb;
  --primary-blue-dark: #1e40af;
  --accent-blue: #3b82f6;
  --accent-blue-light: #60a5fa;
  --accent-green: #10b981;
  --accent-green-light: #34d399;
  --dark-navy: #0f172a;
  --light-gray: #f8fafc;
  --medium-gray: #e2e8f0;
  --border-gray: #e2e8f0;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

/* Links */
a {
  color: var(--primary-blue-light);
  text-decoration: none;
  transition: var(--transition-all);
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 12px 24px;
  background: var(--primary-blue);
  color: var(--white);
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 500;
}

.skip-link:focus {
  left: 0;
}

/* Contact Banner - Top bar */
.contact-banner {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.contact-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-banner p {
  color: var(--white);
  margin: 0;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.contact-banner a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition-all);
}

.contact-banner a:hover {
  color: var(--accent-blue-light);
}

.contact-banner strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-banner span {
  color: rgba(255, 255, 255, 0.25);
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Contain paint to isolate rendering */
  contain: paint;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-main {
  flex: 0 0 auto;
}

.brand-main a {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 3.5x bigger logo */
.brand-main img {
  height: 210px;
  width: auto;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.brand-main a:hover img {
  transform: scale(1.03);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* 3.5x bigger NDIS image */
.ndis-badge img {
  height: 175px;
  width: auto;
  opacity: 0.95;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.ndis-badge img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* Navigation */
.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 16px;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shrink header on scroll */
.site-header.scrolled .header-inner {
  padding: 8px 24px;
}

.site-header.scrolled .nav-wrap {
  padding: 0 24px 8px;
}

.site-header.scrolled .brand-main img {
  height: 80px;
}

.site-header.scrolled .ndis-badge img {
  height: 65px;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav li {
  display: inline-block;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.925rem;
  border-radius: 10px;
  transition: var(--transition-all);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 3px;
  background: var(--primary-blue-light);
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  color: var(--primary-blue-light);
  background: rgba(37, 99, 235, 0.06);
}

.main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.main-nav a.active {
  color: var(--primary-blue-light);
  background: rgba(37, 99, 235, 0.1);
  font-weight: 600;
}

.main-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 100%;
  padding: 14px 20px;
  background: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-all);
}

.menu-toggle:hover {
  border-color: var(--primary-blue-light);
  background: rgba(37, 99, 235, 0.05);
}

/* Hero Section - height halved */
.hero {
  position: relative;
  min-height: 300px;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.2));
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.hero-small {
  min-height: 150px;
}

.hero-small .hero-content {
  padding: 40px 24px;
}

.hero-small h1 {
  font-size: 2.25rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 70px;
}

.hero-slider h1 {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-all);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
  left: 0;
}

.hero-arrow-next {
  right: 0;
}

.hero-text-changing {
  animation: heroTextIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-text-leaving {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Page Sections */
.page-section {
  padding: 80px 24px;
  background: var(--white);
}

.page-section.alt {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Feature Image */
.feature-image {
  border-radius: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-slow);
}

.feature-image:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.3);
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card,
.value-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-all);
  border: 1px solid var(--border-gray);
  position: relative;
}

.service-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue-light), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before,
.value-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-blue) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:nth-child(2) .card-icon {
  animation-delay: 0.75s;
}

.service-card:nth-child(3) .card-icon {
  animation-delay: 1.5s;
}

.service-card:hover .card-icon,
.value-card:hover .card-icon {
  transform: scale(1.15) rotate(3deg);
  animation-name: iconFloat, iconPulseRing, iconShimmer;
  animation-duration: 3s, 2s, 3s;
  animation-timing-function: ease-in-out, ease-out, linear;
  animation-iteration-count: infinite;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
  background-size: 200% auto;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail:nth-child(2) .service-icon {
  animation-delay: 0.4s;
}

.service-detail:nth-child(3) .service-icon {
  animation-delay: 0.8s;
}

.service-detail:nth-child(4) .service-icon {
  animation-delay: 1.2s;
}

.service-detail:nth-child(5) .service-icon {
  animation-delay: 1.6s;
}

.service-icon:hover {
  transform: scale(1.12) rotate(-3deg);
  animation-name: iconFloat, iconPulseRing, iconShimmer;
  animation-duration: 3s, 2s, 3s;
  animation-timing-function: ease-in-out, ease-out, linear;
  animation-iteration-count: infinite;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green-light) 100%);
  background-size: 200% auto;
}

.card-body h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 1.4rem;
}

.card-body p {
  color: var(--text-medium);
  line-height: 1.7;
  flex-grow: 1;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-blue) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-all);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.button:hover::after {
  opacity: 1;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
  color: var(--white);
  text-decoration: none;
}

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

.button.light {
  background: var(--white);
  color: var(--primary-blue-light);
  box-shadow: var(--shadow-lg);
}

.button.light:hover {
  background: var(--light-gray);
  color: var(--primary-blue-dark);
  box-shadow: var(--shadow-xl);
}

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-panel,
.contact-form-wrap {
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gray);
}

.form-row {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9375rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--medium-gray);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-all);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-blue-light);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* Rate Table */
.rate-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rate-table th,
.rate-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: middle;
}

.rate-table th {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-table td {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.9375rem;
}

.rate-table tr:last-child td {
  border-bottom: none;
}

.rate-table tr:hover td {
  background: var(--light-gray);
}

/* People Grid */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
  margin: 48px 0;
}

.person-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-all);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.person-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue-light), var(--accent-blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.person-card:hover::before {
  transform: scaleX(1);
}

.person-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.person-card-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.person-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.person-card-header h3 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.person-card-header h4,
.person-card-header h5 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Document List */
.document-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.document-list li {
  padding: 18px 24px;
  background: var(--white);
  border-left: 4px solid var(--accent-green);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-all);
  font-weight: 500;
  cursor: default;
}

.document-list li:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-green-light);
}

/* Notice */
.notice {
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-left: 4px solid var(--primary-blue-light);
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

/* Purpose Section */
.purpose-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.purpose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  position: relative;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 3px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-all);
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(6px);
}

.acknowledgement {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Coming Soon Disappearing Animation */
.coming-soon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
  animation: fadeDisappear 3s ease-in-out infinite;
}

@keyframes fadeDisappear {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* Staggered animation delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Pulse dot animation */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Resource Cards */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes iconPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@keyframes iconShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin: 48px 0;
}

.resource-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 40px;
  text-align: center;
  transition: var(--transition-all);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue-light), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.resource-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-blue) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.resource-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card:hover .resource-icon {
  transform: scale(1.12);
  animation-name: iconFloat, iconPulseRing, iconShimmer;
  animation-duration: 3s, 2s, 3s;
  animation-timing-function: ease-in-out, ease-out, linear;
  animation-iteration-count: infinite;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
  background-size: 200% auto;
}

.resource-card:nth-child(2) .resource-icon {
  animation-delay: 0.75s;
}

.resource-card:nth-child(3) .resource-icon {
  animation-delay: 1.5s;
}

.resource-card:nth-child(4) .resource-icon {
  animation-delay: 2.25s;
}

.resource-card h3 {
  margin-bottom: 14px;
  color: var(--text-dark);
  font-size: 1.3rem;
}

.resource-card p {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-blue) 100%);
  color: var(--white);
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition-all);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.resource-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
  color: var(--white);
}

/* Career Benefits */
.career-benefits {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 48px 32px;
  border-radius: 20px;
  margin: 48px 0;
  border: 1px solid var(--border-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-green);
  transition: var(--transition-all);
  box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-item h4 {
  color: var(--accent-green);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Service Detail */
.service-detail {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-medium);
  line-height: 1.7;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
}

/* Content Page */
.content-page {
  max-width: 900px;
  margin: 0 auto;
}

.copy-block {
  max-width: 800px;
  margin: 0 auto;
}

.advocacy-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Hover Glow Effect for buttons */
.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue), var(--accent-green));
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.glow-effect:hover::before {
  opacity: 1;
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Vision, Mission, Values Banner */
.vmv-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a5e 50%, var(--primary-blue-dark) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.vmv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vmv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition-all);
}

.vmv-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.vmv-values-list li {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}

.vmv-values-list li:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vmv-section {
    padding: 40px 24px;
    margin: 40px 0;
  }
}

/* Form Row Three-Column for Suburb/State/Postcode */
.form-row-thirds {
  display: grid;
  grid-template-columns: 1fr auto 100px;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Required Asterisk */
.required {
  color: #ef4444;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light-gray);
  border: 2px solid var(--medium-gray);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-all);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.checkbox-label:hover {
  border-color: var(--primary-blue-light);
  background: rgba(37, 99, 235, 0.05);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-blue-light);
  flex-shrink: 0;
}

.checkbox-label:has(input:checked) {
  border-color: var(--primary-blue-light);
  background: rgba(37, 99, 235, 0.08);
}

/* Select Styling */
select {
  appearance: auto;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .form-row-thirds {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-slider h1 {
    font-size: 2.25rem;
  }

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

@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
  }

  .brand-main img {
    height: 140px;
  }

  .ndis-badge img {
    height: 120px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    padding: 12px 0;
    border-top: 1px solid var(--border-gray);
    margin-top: 12px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 6px;
  }

  .main-nav a {
    display: block;
    padding: 14px 20px;
    border-radius: 12px;
  }

  .hero {
    min-height: 260px;
  }

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

  .hero-slider {
    padding: 0 55px;
  }

  .hero-slider h1 {
    font-size: 1.75rem;
    min-height: 80px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .hero-small {
    min-height: 130px;
  }

  .hero-small .hero-content {
    padding: 32px 20px;
  }

  .page-section {
    padding: 60px 20px;
  }

  h2 {
    font-size: 2rem;
  }

  .service-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .document-list {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .purpose-section {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .purpose-section h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .brand-main img {
    height: 100px;
  }

  .ndis-badge img {
    height: 85px;
  }

  .contact-banner {
    padding: 8px 16px;
  }

  .contact-banner-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .contact-banner span {
    display: none;
  }

  .hero {
    min-height: 220px;
  }

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

  .hero-slider {
    padding: 0 45px;
  }

  .hero-slider h1 {
    font-size: 1.35rem;
    min-height: 70px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hero-small {
    min-height: 110px;
  }

  .hero-small h1 {
    font-size: 1.5rem;
  }

  .card-body {
    padding: 24px;
  }

  .contact-panel,
  .contact-form-wrap {
    padding: 24px;
  }

  .footer-inner {
    padding: 40px 20px 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .person-card-header {
    padding: 24px 20px;
  }

  .purpose-section {
    padding: 32px 20px;
    margin: 40px 0 !important;
  }

  .purpose-section h2 {
    font-size: 1.75rem;
  }
}

/* Enhanced Card Headings */
.card-heading {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 16px;
  display: inline-block;
}

.card-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue-light), var(--accent-green));
  border-radius: 3px;
}

.card-heading.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Enhanced Section Subheaders */
.section-subheader {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}

.section-subheader::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue-light), var(--accent-green));
  border-radius: 4px;
}

.section-subheader.left {
  text-align: left;
}

.section-subheader.left::after {
  left: 0;
  transform: none;
}

.section-subheader.light {
  color: #ffffff;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

/* Print Styles */
@media print {
  .site-header,
  .contact-banner,
  .menu-toggle,
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
    background: none;
    color: var(--text-dark);
  }

  .hero h1 {
    color: var(--text-dark);
    font-size: 2rem;
  }
}
