/* --- style.css (FINAL COMPLETE VERSION) --- */
:root {
    --primary-gold: #eebc3f; 
    --text-dark: #333333;
    --accent-teal: #6cd4c4; 
    --white: #ffffff;
    --light-gray: #f9f9f9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Top Info Bar --- */
.top-bar {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

/* --- CONTAINER --- */
.container {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: block; 
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    text-decoration: none;
}

/* --- Logo Section --- */
.logo-section {
    text-align: center;
    padding: 20px 0;
    background: var(--white);
}

.logo-img {
    max-height: 80px; 
}

/* --- Main Navigation --- */
.main-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 15px 0;
    background: #fff;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    display: inline-block;
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 5px;
    display: inline-block;
}

.main-nav a:hover, .main-nav a.active {
    border-bottom: 3px solid var(--accent-teal);
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-gold);
    padding: 60px 0;
}

.hero-content {
    display: flex; 
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.hero-text h2 span {
    font-style: italic;
    font-weight: 400;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* --- Buttons --- */
.btn-group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}

.btn-white {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    width: 100%; /* Full width for form button */
}

.btn:hover { opacity: 0.9; }

/* --- Standard Section Styling --- */
.section {
    padding: 60px 0;
    width: 100%;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    display: block;
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

.gold-heading {
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

/* --- Grids --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    padding: 15px;
    text-align: center;
}

.card h3, .grid-3 h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.grid-2 img, .grid-3 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.large-feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* --- ABOUT PAGE STYLES --- */
.values-list {
    list-style: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.values-list li { margin-bottom: 15px; font-size: 1.05rem; color: #555; }
.values-list strong { color: var(--primary-gold); font-weight: 700; margin-right: 5px; }

.team-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 40px; }
.team-member { text-align: center; width: 180px; }
.team-member img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.15); margin-bottom: 15px; }
.team-member h4 { color: #333; font-size: 1.1rem; margin-bottom: 5px; }
.team-member p { color: #777; font-size: 0.9rem; }

/* --- SERVICES PAGE STYLES --- */
.services-list { max-width: 800px; margin: 0 auto; padding-left: 40px; text-align: left; }
.services-list li { margin-bottom: 15px; color: #555; font-size: 1.05rem; }
.ndis-logo-center { display: block; margin: 40px auto; max-width: 150px; }
.registration-box { background-color: #f9f9f9; padding: 40px; border-radius: 8px; margin-top: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.registration-list { max-width: 800px; margin: 20px auto 0 auto; padding-left: 20px; text-align: left; }
.registration-list li { margin-bottom: 10px; color: #555; }

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-details {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #333;
}

.contact-item p, .contact-item a {
    color: #555;
    text-decoration: none;
}

.contact-form-container {
    padding: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* --- Footer --- */
.footer { background-color: #1a1a1a; color: #fff; padding: 60px 0 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; text-align: left; }
.footer h4 { color: var(--primary-gold); margin-bottom: 20px; text-transform: uppercase; font-size: 1rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #bbb; text-decoration: none; }
.footer a:hover { color: var(--primary-gold); }
.copyright { border-top: 1px solid #333; padding-top: 20px; text-align: center; color: #666; font-size: 0.8rem; }

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .grid-2, .grid-3, .contact-grid { grid-template-columns: 1fr; } /* Force stack */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .top-bar .container { justify-content: center; }
    .contact-info { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
    .contact-details { padding: 20px; }
}

/* --- NEW PAGES STYLES --- */

/* Privacy Policy Formatting */
.policy-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}
.policy-content h3 { margin-top: 30px; margin-bottom: 15px; color: #333; }
.policy-content p { margin-bottom: 15px; color: #555; }
.policy-content ul { padding-left: 20px; margin-bottom: 20px; }
.policy-content li { margin-bottom: 10px; color: #555; }

/* Jobs Page Styling */
.job-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    background: #fcfcfc;
    margin-bottom: 30px;
    text-align: left;
}
.job-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.job-title { font-size: 1.5rem; font-weight: 700; color: #333; }
.job-type { background: var(--accent-teal); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.job-section-title { font-weight: 700; color: var(--primary-gold); margin-top: 20px; margin-bottom: 10px; display: block; }

/* Capability Table */
.capability-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.capability-table td { padding: 15px; border: 1px solid #eee; vertical-align: top; }
.capability-table strong { color: #333; display: block; margin-bottom: 5px; }

/* NDIS Page */
.ndis-box {
    background: #f9f9f9;
    padding: 30px;
    border-left: 5px solid var(--primary-gold);
    margin-top: 30px;
    text-align: left;
}