:root {
    --hero-image: none;
    --pink: #C2185B;
    --pink-light: #E91E8C;
    --pink-soft: #FCE4EC;
    --pink-bg: rgba(194, 24, 91, 0.06);
    --purple: #4A148C;
    --purple-dark: #38006b;
    --purple-light: #7B1FA2;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #F5F5F5;
    --gray-border: #EEEEEE;
    --text-dark: #2D1B4E;
    --text-muted: #6B5B7B;
    --gradient: linear-gradient(135deg, #C2185B 0%, #9C27B0 50%, #7B1FA2 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #2D1B4E;
    color: rgba(255,255,255,0.85);
    padding: 0.4rem 2rem;
    font-size: 0.74rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem;
}
.top-bar a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    display: flex; align-items: center; gap: 0.4rem;
    transition: color 0.3s; font-weight: 500;
    letter-spacing: 0.01em;
}
.top-bar a:hover { color: #F48FB1; }
.top-bar svg { width: 14px; height: 14px; opacity: 0.8; }

/* ===== NAVBAR ===== */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 0.25rem 2rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
nav.scrolled { box-shadow: 0 1px 16px rgba(45, 27, 78, 0.06); border-bottom-color: rgba(0,0,0,0.06); }

.nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center;
    padding: 0 1rem;
}

.nav-logo-link { flex-shrink: 0; margin-right: auto; }
.logo-img { height: 58px; width: auto; }

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

.nav-ndis-logo {
    height: 90px; width: 210px; flex-shrink: 0;
    margin-left: 1.75rem;
    background: url('../images/desktop/NDIS Logo Transparent.webp') center / 85% no-repeat;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem; font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.nav-links a:not(.nav-cta):not(.nav-cta-referral) {
    color: #4a3860;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:not(.nav-cta):not(.nav-cta-referral):hover {
    color: var(--pink);
    background: rgba(194, 24, 91, 0.05);
}

.nav-cta {
    background: #902068;
    color: #fff;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s;
}
.nav-cta:hover {
    transform: translateY(-1px);
    background: #A82870;
    box-shadow: 0 8px 25px rgba(144, 32, 104, 0.35);
}
.nav-cta-referral {
    background: transparent;
    color: #5C2D91;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid #5C2D91;
    transition: all 0.3s;
}
.nav-cta-referral:hover {
    background: #5C2D91;
    color: #fff;
    transform: translateY(-1px);
}

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span { width: 25px; height: 2px; background: var(--text-dark); transition: all 0.3s; }

/* ===== COMMON ===== */
.section-header { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.section-header h2 {
    font-size: 2.6rem;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.section-header p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; }

.btn-primary {
    background: #902068; color: var(--white);
    padding: 1rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); background: #A82870; box-shadow: 0 10px 30px rgba(144, 32, 104, 0.35); }

.btn-secondary {
    background: transparent; color: var(--text-dark);
    padding: 1rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 2px solid var(--gray-border); transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--pink-light); color: var(--pink); }

.btn-white {
    background: var(--white); color: var(--pink);
    padding: 1rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== HERO ===== */
.hero {
    min-height: 75vh; display: flex; align-items: flex-end;
    position: relative; overflow: hidden; padding: 0 2rem 3rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background: none;
}
.hero-inner {
    max-width: 700px; margin: 0 auto;
    text-align: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px);
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; color: #fff;
    margin-bottom: 1.75rem; letter-spacing: 0.08em; text-transform: uppercase;
    animation: fadeInUp 0.8s ease both;
}
.badge-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.08; margin-bottom: 1rem; animation: fadeInUp 0.8s ease 0.1s both; letter-spacing: -0.02em; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3); }
.hero-title-small { font-size: clamp(2.1rem, 4vw, 3.1rem); line-height: 1.12; margin-bottom: 1.25rem; }
.hero h1 em { background: linear-gradient(135deg, #f8bbd0 0%, #e1bee7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; }
.hero-text { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.95); margin-bottom: 1.5rem; max-width: 540px; margin-left: auto; margin-right: auto; animation: fadeInUp 0.8s ease 0.2s both; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-subtext { font-size: 0.86rem; line-height: 1.65; color: rgba(255,255,255,0.9); margin-bottom: 2.75rem; max-width: 560px; margin-left: auto; margin-right: auto; animation: fadeInUp 0.8s ease 0.25s both; padding: 0.85rem 1.25rem; background: rgba(0,0,0,0.25); border-radius: 12px; border-left: 3px solid rgba(255,255,255,0.5); text-shadow: 0 1px 4px rgba(0,0,0,0.3); backdrop-filter: blur(4px); }
.hero-text-bold { font-weight: 600; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4); }

/* Hero slideshow */
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    animation: heroFade 18s ease-in-out infinite;
}
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 10, 40, 0.65) 0%,
        rgba(30, 10, 40, 0.2) 20%,
        transparent 38%
    );
}
.hero-slide-1 { background-image: url('../images/desktop/HeroBanner.webp'); animation-delay: 0s; }
.hero-slide-2 { animation-delay: 6s; }
.hero-slide-3 { animation-delay: 12s; }

@keyframes heroFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    33%  { opacity: 1; }
    38%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Hero CTA buttons */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeInUp 0.8s ease 0.3s both; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #902068; color: #fff;
    padding: 0.85rem 1.8rem; border-radius: 50px;
    font-size: 0.92rem; font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(144, 32, 104, 0.35);
}
.btn-hero-primary:hover { background: #a02878; transform: translateY(-1px); }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 0.85rem 1.8rem; border-radius: 50px;
    font-size: 0.92rem; font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.25s, transform 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }

.hero-reassurance {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* Hero trust & image (unused but kept for reference) */
.hero-trust { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.2); animation: fadeInUp 0.8s ease 0.5s both; }
.hero-trust-item { text-align: center; }
.hero-trust-item svg { width: 28px; height: 28px; color: rgba(255,255,255,0.9); margin-bottom: 0.35rem; }
.hero-trust-item span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.8); font-weight: 500; letter-spacing: 0.02em; }

.hero-image-wrapper { position: relative; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-image-main { border-radius: 24px; overflow: hidden; box-shadow: 0 25px 60px rgba(45, 27, 78, 0.12); }
.hero-image-main img { width: 100%; height: 500px; object-fit: cover; }
.hero-image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: white; border-radius: 0 0 24px 24px;
}
.hero-image-overlay p { font-size: 0.85rem; font-weight: 500; opacity: 0.9; }

.hero-floating-card {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--white); border-radius: 16px; padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(45, 27, 78, 0.12);
    display: flex; align-items: center; gap: 0.75rem;
    animation: floatBadge 4s ease-in-out infinite;
}
.hero-floating-icon {
    width: 42px; height: 42px; background: var(--pink-bg); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.hero-floating-card .card-text strong { display: block; font-size: 0.85rem; color: var(--pink); }
.hero-floating-card .card-text span { font-size: 0.75rem; color: var(--text-muted); }

.hero-floating-card-right {
    position: absolute; top: 30px; right: -25px;
    background: var(--white); border-radius: 16px; padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(45, 27, 78, 0.12);
    display: flex; align-items: center; gap: 0.75rem;
    animation: floatBadge 5s ease-in-out 1s infinite;
}

/* ===== HERO CREDENTIAL BAR ===== */
.hero-credential-bar {
    background: var(--gray-light, #F5F5F5);
    border-bottom: 1px solid #eee;
    padding: 2.25rem 2rem;
}
.hero-credential-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
}
.hero-credential-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.75rem;
    position: relative;
}
.hero-credential-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px;
    background: #eee;
}
.hero-credential-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(194, 24, 91, 0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-credential-icon svg {
    width: 20px; height: 20px;
    color: var(--pink);
}
.hero-credential-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}
.hero-credential-text p {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* ===== STATS ===== */
.stats-bar {
    background: var(--white); padding: 3.5rem 2rem;
    border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border);
    position: relative;
}
.stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -1rem; top: 15%; height: 70%;
    width: 1px; background: var(--gray-border);
}
.stat-item h3 {
    font-size: 2.2rem;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.4rem;
}
.stat-item p { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

.hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: #FFFFFF;
    padding: 1.75rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.hero-stats .stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center;
}
.hero-stats .stat-item { position: relative; }
.hero-stats .stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -1rem; top: 15%; height: 70%;
    width: 1px; background: var(--gray-border);
}
.hero-stats .stat-item h3 {
    font-size: 2.2rem;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.4rem;
}
.hero-stats .stat-item p { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }
.ndis-logo-stat img { mix-blend-mode: multiply; }

/* ===== SERVICES ===== */
.services { padding: 6rem 2rem; position: relative; }
.services::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--gradient); border-radius: 3px;
}
.services-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.service-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    transition: all 0.4s ease; border: 1px solid var(--gray-border);
    box-shadow: 0 1px 3px rgba(45, 27, 78, 0.02);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(45, 27, 78, 0.08); border-color: rgba(194, 24, 91, 0.15); }
.service-card-image { height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-content { padding: 1.75rem; }
.service-card-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card-content > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.25rem; }
.service-tag {
    display: block; background: var(--pink-bg); color: var(--pink);
    font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; padding: 0.65rem 1.75rem; border-radius: 50px; margin-bottom: 1.25rem;
    text-align: center; width: fit-content; margin-left: auto; margin-right: auto;
}
.services-banner { max-width: 1100px; margin: 0 auto 3rem; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.services-banner img { width: 100%; height: 340px; object-fit: cover; display: block; }

.service-detail-list {
    margin-top: 0.75rem; padding: 0; list-style: none;
}
.service-detail-list li {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
    padding: 0.3rem 0; padding-left: 1.2rem; position: relative;
}
.service-detail-list li::before {
    content: '\2713'; position: absolute; left: 0; color: var(--pink); font-size: 0.75rem; font-weight: 700;
}

/* Service collapsible lists */
.service-detail-list.collapsible { transition: max-height 0.35s ease; overflow: hidden; }
.service-detail-list.collapsible.collapsed { max-height: 165px; }
.service-toggle {
    margin-top: 1rem;
    background: transparent;
    border: none;
    color: var(--pink);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}
.service-toggle:hover { text-decoration: underline; }

/* ===== SUPPORT AT HOME ===== */
.support-home { padding: 6rem 2rem; background: var(--off-white); }
.support-home-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.support-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(45, 27, 78, 0.1); }
.support-image img { width: 100%; height: 420px; object-fit: cover; }
.support-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.support-content > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.expect-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.expect-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.92rem; line-height: 1.5;
}
.expect-icon {
    width: 28px; height: 28px; background: var(--pink-bg); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; color: var(--pink);
}

/* ===== ABOUT ===== */
.about { padding: 6rem 2rem; }
.about-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-images { position: relative; }
.about-img-primary { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(45, 27, 78, 0.1); }
.about-img-primary img { width: 100%; height: 480px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -30px; right: -30px;
    width: 200px; height: 200px; border-radius: 20px; overflow: hidden;
    border: 5px solid var(--white); box-shadow: 0 15px 40px rgba(45, 27, 78, 0.12);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-content h2 { font-size: clamp(2.2rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.about-content > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; font-size: 0.98rem; }
.mission-callout {
    margin-top: 1.5rem; padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.06) 0%, rgba(74, 20, 140, 0.06) 100%);
    border-left: 4px solid var(--pink); border-radius: 0 12px 12px 0;
}
.mission-callout h3 {
    font-size: 1.15rem; color: var(--pink);
    margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.mission-callout p {
    font-size: 1.1rem; font-weight: 500; font-style: italic;
    color: var(--text-dark); line-height: 1.6; margin: 0;
}

/* ===== VALUES SECTION ===== */
.values-section { padding: 5rem 2rem; background: #f8f8f8; }
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.value-item {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    background: #fff; border-radius: 16px; padding: 2.25rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); text-align: center; gap: 0.5rem;
    border: 1px solid var(--gray-border);
    transition: all 0.3s;
}
.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(45, 27, 78, 0.06);
    border-color: rgba(194, 24, 91, 0.15);
}
.value-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink);
}
.value-item h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.15rem; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== IMAGE BREAK ===== */
.image-break { position: relative; height: 380px; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; }
.image-break-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.85) 0%, rgba(74, 20, 140, 0.85) 100%);
    display: flex; align-items: center; justify-content: center;
}
.image-break-content { text-align: center; color: var(--white); max-width: 700px; padding: 2rem; }
.image-break-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.image-break-content p { font-size: 1.05rem; opacity: 0.9; line-height: 1.7; margin-bottom: 2rem; }

/* ===== WHO WE SUPPORT ===== */
.who-support { padding: 6rem 2rem; position: relative; }
.who-support::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--gradient); border-radius: 3px;
}
.who-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.who-card {
    background: var(--white); border-radius: 16px; padding: 2.5rem 2rem;
    border: 1px solid var(--gray-border); text-align: center; transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(45, 27, 78, 0.02);
}
.who-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45, 27, 78, 0.06); border-color: rgba(194, 24, 91, 0.15); }
.who-card-icon {
    width: 56px; height: 56px; border-radius: 14px; background: var(--pink-bg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.who-card-icon svg { width: 26px; height: 26px; color: var(--pink); }
.who-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.who-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== NDIS INFO ===== */
.ndis-info { padding: 6rem 2rem; background: var(--off-white); }
.ndis-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.ndis-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(45, 27, 78, 0.1); }
.ndis-image img { width: 100%; height: 420px; object-fit: cover; }
.ndis-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.5rem; }
.ndis-content > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.ndis-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.ndis-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.ndis-step-number {
    width: 48px; height: 48px; border-radius: 50%; background: var(--pink-bg);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: var(--pink); flex-shrink: 0;
}
.ndis-step h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; margin-bottom: 0.25rem; font-size: 1rem; }
.ndis-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
.why-choose { padding: 6rem 2rem; background: var(--white); position: relative; }
.why-choose::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--gradient); border-radius: 3px;
}

.why-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}

.why-card {
    background: var(--white); border-radius: 16px;
    padding: 2rem; display: flex; gap: 1.25rem;
    align-items: flex-start; transition: all 0.3s;
    border: 1px solid var(--gray-border);
    box-shadow: 0 1px 3px rgba(45, 27, 78, 0.02);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(45, 27, 78, 0.06);
    border-color: rgba(194, 24, 91, 0.15);
}

.why-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; flex-shrink: 0;
}

.why-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 5.5rem 2rem; background: var(--off-white); }
.steps-grid {
    max-width: 1400px; margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem;
}
.steps-grid .step-card {
    flex: 1 1 0;
    min-width: 180px;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(45,27,78,0.04);
    position: relative;
}
.step-number {
    color: var(--pink);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}
.step-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pink-bg);
    color: var(--pink);
    margin-bottom: 1rem;
}
.step-photo {
    width: 100%; height: 160px; border-radius: 14px;
    overflow: hidden; margin-bottom: 1rem;
}
.step-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.step-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.step-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.98rem; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 2rem; }
.contact-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem;
}
.contact-info h2 { font-size: clamp(2rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon {
    width: 46px; height: 46px; background: var(--pink-bg); border-radius: 13px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.83rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-detail p { font-size: 0.88rem; color: var(--text-muted); }
.contact-detail a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.contact-detail a:hover { color: var(--pink); }

.contact-form-wrapper {
    background: var(--off-white); border-radius: 24px; padding: 2.5rem;
    border: 1px solid var(--gray-border);
}
.contact-form-wrapper h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.contact-form-wrapper .form-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text-dark); }
.form-group .required { color: var(--pink); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.8rem 1rem;
    border: 1.5px solid var(--gray-border); border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem;
    background: var(--white); transition: all 0.3s; color: var(--text-dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-submit {
    width: 100%; padding: 1rem; background: #902068; color: var(--white);
    border: none; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; margin-top: 0.25rem;
}
.form-submit:hover { transform: translateY(-1px); background: #A82870; box-shadow: 0 8px 25px rgba(144, 32, 104, 0.35); }

/* Form tabs */
.form-tabs {
    display: flex; gap: 0; margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-border);
}
.form-tab {
    flex: 1; padding: 0.85rem 1rem; border: none; background: none;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem;
    font-weight: 600; color: var(--text-muted); cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: all 0.3s;
}
.form-tab:hover { color: var(--pink); }
.form-tab.active {
    color: var(--pink); border-bottom-color: var(--pink);
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem; font-weight: 700; color: var(--purple);
    margin: 1.5rem 0 0.75rem; padding-top: 1rem;
    border-top: 1px solid var(--gray-border);
}
.form-section-title:first-of-type { border-top: none; margin-top: 0.5rem; }

/* Form success */
.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.22);
    color: #1b5e20;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-consent { margin-top: 0.75rem; font-size: 0.85rem; }

/* ===== FEEDBACK BANNER ===== */
.feedback-banner { padding: 3.5rem 2rem; background: var(--off-white); border-top: 1px solid var(--gray-border); }
.feedback-inner {
    max-width: 800px; margin: 0 auto; text-align: center;
}
.feedback-inner h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.feedback-inner p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.5rem; }
.feedback-inner a { color: var(--pink); text-decoration: none; font-weight: 600; }
.feedback-inner a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer { background: #F8F6FA; color: var(--text-dark); padding: 0; }
.footer-accent { height: 4px; background: var(--gradient); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem 0; }
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem; padding-bottom: 2.5rem;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 300px; margin-top: 1rem; color: var(--text-muted); }
.footer-logo { height: 56px; width: auto; }
.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.82rem;
    color: var(--purple); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col a {
    display: block; color: var(--text-muted); text-decoration: none;
    font-size: 0.86rem; margin-bottom: 0.7rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-contact-link { display: inline-flex !important; align-items: center; gap: 0.5rem; }
.footer-contact-link svg { flex-shrink: 0; color: var(--pink); }
.footer-social { margin-top: 0.75rem; }
.footer-social a {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.85rem; border-radius: 20px;
    background: #0A66C2; color: #fff;
    font-size: 0.8rem; font-weight: 600; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: #004182; transform: translateY(-1px); }
.footer-social a span { line-height: 1; }
.footer-credentials {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.75rem 2rem; margin: 0 -2rem;
    border-top: 1px solid rgba(74,20,140,0.08); background: #fff;
}
.footer-badge-card {
    display: inline-flex; align-items: center;
}
.footer-badge-ndis { height: 72px; width: auto; display: block; }
.footer-badge-cert { height: 60px; width: auto; display: block; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem; font-size: 0.8rem; margin: 0 -2rem;
    background: #F0ECF4; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--pink); }

/* ===== FAQ ===== */
.faq { padding: 5.5rem 2rem; background: var(--white); }
.faq-inner { max-width: 950px; margin: 0 auto; }
.faq-list { display: grid; gap: 0.9rem; margin-top: 1.75rem; }
details.faq-item {
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    background: var(--off-white);
    padding: 0.95rem 1.1rem;
}
details.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--text-dark);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding-top: 0.75rem; color: var(--text-muted); line-height: 1.75; font-size: 0.98rem; }
.faq-chevron {
    width: 18px; height: 18px; flex: 0 0 auto;
    color: var(--pink);
    transition: transform 0.25s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }

/* ===== PRIVACY PAGE ===== */
.privacy-section { padding: 8rem 2rem 4rem; }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.privacy-content h2 {
    font-size: 1.35rem;
    margin: 2.25rem 0 0.75rem;
    color: var(--text-dark);
}
.privacy-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.privacy-content ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.privacy-content ul li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0.25rem 0 0.25rem 1.4rem;
    position: relative;
}
.privacy-content ul li::before {
    content: '';
    position: absolute; left: 0; top: 0.75rem;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink);
}
.privacy-content a { color: var(--pink); text-decoration: none; font-weight: 500; }
.privacy-content a:hover { text-decoration: underline; }
.privacy-updated { margin-top: 2rem; font-style: italic; font-size: 0.88rem; }

/* ===== UTILITIES ===== */
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #902068;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(144, 32, 104, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #a02878;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-inner { text-align: center; }
    .hero-text, .hero-subtext { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
    .hero-floating-card-right { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .stat-item:nth-child(2)::after { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner, .support-home-inner, .ndis-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-content h2, .about-content > p { text-align: center; }
    .mission-callout { text-align: center; border-left: none; border-top: 4px solid var(--pink); border-radius: 0 0 12px 12px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-credentials { flex-wrap: wrap; }
}

@media (max-width: 900px) {
    .steps-grid .step-card { flex: 0 1 100%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); padding: 1.25rem 1.5rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 0 0 16px 16px;
        gap: 0.35rem;
    }
    .nav-links.active a:not(.nav-cta):not(.nav-cta-referral) {
        padding: 0.7rem 1rem;
        font-size: 1.05rem;
        border-radius: 10px;
    }
    .nav-links.active .nav-cta,
    .nav-links.active .nav-cta-referral {
        display: block;
        text-align: center;
        padding: 0.55rem 1.2rem;
        font-size: 0.88rem;
        margin-top: 0.15rem;
    }
    .nav-cta-referral {
        background: #5C2D91;
        color: #fff;
        padding: 0.55rem 1.2rem;
        border-radius: 50px;
        text-align: center;
    }
    .hero-slide-1 { background-image: url('../images/mobile/HeroBanner.webp'); }
    .nav-ndis-logo { background-image: url('../images/mobile/NDIS Logo Transparent.webp'); }
    .hero-credential-inner {
        grid-template-columns: 1fr;
    }
    .hero-credential-item:not(:last-child)::after {
        right: 10%; left: 10%; top: auto; bottom: 0;
        width: auto; height: 1px;
    }
    .hero-credential-item {
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .logo-img { height: 42px; }
    .nav-ndis-logo { height: 65px; width: 130px; margin-left: 0.75rem; background-size: 85%; }
    nav { padding: 0.4rem 1rem; }
    .nav-inner { padding: 0 0.25rem; gap: 0.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .hero-stats .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .hero-stats .stat-item:nth-child(2)::after { display: none; }
    .hero-stats { padding: 1.25rem 1rem; }
    .hero-stats .stat-item h3 { font-size: 1.6rem; }
    .values-grid { grid-template-columns: 1fr; }
    .values-section { padding: 2.5rem 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-credentials { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-floating-card { display: none; }
    .top-bar { font-size: 0.72rem; padding: 0.4rem 1rem; }
    .top-bar-inner { gap: 1rem; }
    .about-img-secondary { width: 150px; height: 150px; right: -10px; bottom: -15px; }
    .hero-image-main img { height: 350px; }
    .about-img-primary img { height: 350px; }
    .support-image img { height: 300px; }
    .hero { min-height: 70vh; padding: 0 1.25rem 2rem; }
    .hero-slide::before {
        background: linear-gradient(
            to top,
            rgba(30, 10, 40, 0.8) 0%,
            rgba(30, 10, 40, 0.5) 35%,
            rgba(30, 10, 40, 0.25) 60%,
            rgba(30, 10, 40, 0.1) 100%
        );
    }
    .hero h1 { text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5); }
    .hero-text { text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4); }
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.75rem 1.4rem; font-size: 0.85rem; width: 100%;
        justify-content: center;
    }
    .hero-credential-item { padding: 0.75rem 1.25rem; }
}
