:root {
    --primary: #304b6c;
    --primary-dark: #243c59;
    --primary-light: #edf2f7;
    --secondary: #b89455;
    --secondary-light: #f5efe5;
    --text: #64707c;
    --heading: #304b6c;
    --light-bg: #f7f8fa;
    --border: #e7ebef;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
}


/* ========================================
   COMMON
======================================== */

section {
    padding: 90px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-badge i {
    font-size: 17px;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-title h2,
.about-ndis h2 {
    color: var(--heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p,
.about-ndis p {
    font-size: 16px;
    line-height: 1.8;
}

.title-line {
    width: 65px;
    height: 3px;
    background: var(--secondary);
    border-radius: 20px;
    margin-bottom: 22px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #ffffff;
    padding: 13px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 13px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #ffffff;
}


/* ========================================
   HERO
======================================== */

.ndis-hero {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #f7f8fa 0%,
            #edf1f5 100%
        );
}

.hero-content h1 {
    color: var(--primary);
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content > p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.hero-features i {
    color: var(--secondary);
    font-size: 18px;
}

.hero-card {
    background: var(--primary);
    color: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(36, 60, 89, 0.2);
}

.hero-card-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 32px;
    margin-bottom: 28px;
}

.hero-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.hero-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.hero-stat-row {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-stat {
    flex: 1;
    padding: 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--secondary);
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}


/* ========================================
   QUICK SERVICES
======================================== */
.quick-card {
    height: 100%;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(36, 60, 89, 0.05);
    transition: all 0.35s ease;
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(36, 60, 89, 0.12);
}

.quick-icon,
.support-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 27px;
    margin-bottom: 22px;
    transition: 0.3s;
}

.quick-card:hover .quick-icon,
.support-card:hover .support-icon {
    background: var(--primary);
    color: #ffffff;
}

.quick-card h4 {
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
}

.quick-card p {
    font-size: 14px;
    line-height: 1.7;
}

.quick-card a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.quick-card a i {
    margin-left: 5px;
    transition: 0.3s;
}

.quick-card a:hover i {
    margin-left: 10px;
}


/* ========================================
   ABOUT NDIS
======================================== */

.about-ndis {
    background: var(--light-bg);
}

.benefit-panel {
    padding: 38px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(36, 60, 89, 0.08);
}

.benefit-panel h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.benefit-panel h4 i {
    color: var(--secondary);
    margin-right: 8px;
}

.benefit-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.benefit-panel li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f3;
}

.benefit-panel li:last-child {
    border-bottom: none;
}

.benefit-panel li i {
    color: var(--secondary);
}


/* ========================================
   ELIGIBILITY
======================================== */

.eligibility-card {
    height: 100%;
    padding: 32px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(36, 60, 89, 0.1);
}

.eligibility-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 27px;
}

.eligibility-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.eligibility-card p {
    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   JOURNEY
======================================== */

.journey-section {
    background: var(--primary);
}

.journey-section .section-title h2,
.journey-section .section-title p {
    color: #ffffff;
}

.journey-section .section-title p {
    opacity: 0.75;
}

.journey-row {
    display: flex;
    position: relative;
    justify-content: space-between;
    gap: 25px;
}

.journey-row::before {
    content: "";
    position: absolute;
    top: 53px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.journey-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.journey-number {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.journey-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 29px;
}

.journey-step h5 {
    color: #ffffff;
    font-weight: 700;
}

.journey-step p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   FUNDING
======================================== */

.funding-card {
    height: 100%;
    min-height: 150px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.funding-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(36, 60, 89, 0.1);
}

.funding-card i {
    color: var(--secondary);
    font-size: 30px;
    margin-bottom: 14px;
}

.funding-card h5 {
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.funding-note {
    max-width: 850px;
    margin: 40px auto 0;
    padding: 18px 22px;
    background: var(--secondary-light);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    font-size: 14px;
}

.funding-note i {
    color: var(--secondary);
    margin-right: 8px;
}


/* ========================================
   SUPPORT
======================================== */

.support-card {
    height: 100%;
    padding: 35px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.35s ease;
}

.support-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(36, 60, 89, 0.12);
}

.support-icon {
    margin-left: auto;
    margin-right: auto;
}

.support-card h4 {
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
}

.support-card p {
    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   CHOICE SECTION
======================================== */

.choice-section {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    color: #ffffff;
}

.choice-label {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.choice-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.choice-section p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.choice-list {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.choice-list div {
    padding: 10px 0;
    font-weight: 600;
}

.choice-list i {
    color: var(--secondary);
    margin-right: 10px;
}


/* ========================================
   CONTACT
======================================== */

.contact-section {
    background: var(--light-bg);
}

.contact-box {
    padding: 50px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(36, 60, 89, 0.08);
}

.contact-box h2 {
    color: var(--primary);
    font-size: 34px;
    font-weight: 700;
}

.contact-box p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-details i {
    color: var(--secondary);
    margin-right: 7px;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    section {
        padding: 70px 0;
    }

    .ndis-hero {
        padding: 75px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2,
    .about-ndis h2 {
        font-size: 34px;
    }

    .journey-row {
        flex-wrap: wrap;
    }

    .journey-row::before {
        display: none;
    }

    .journey-step {
        flex: 0 0 calc(50% - 15px);
        padding: 15px;
    }

    .contact-box {
        padding: 40px;
    }
}


@media (max-width: 767px) {

    section {
        padding: 55px 0;
    }

    .ndis-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-card {
        padding: 30px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2,
    .about-ndis h2 {
        font-size: 29px;
    }

    .journey-step {
        flex: 0 0 100%;
    }

    .choice-section h2 {
        font-size: 30px;
    }

    .choice-list {
        margin-top: 25px;
    }

    .contact-box {
        padding: 28px;
    }

    .contact-box h2 {
        font-size: 27px;
    }

    .contact-details {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stat-row {
        flex-direction: column;
    }
}