/* ========================================
   THRIVE UNITED PHYSIO - STYLESHEET
   Professional NDIS Physiotherapy Website
   
   DESIGN SYSTEM:
   - Clean, modern, calm, clinical aesthetic
   - Mobile-first responsive approach
   - WCAG 2.1 AA accessible
   ======================================== */

/* ===== CSS VARIABLES (Brand Colors & Design Tokens) ===== */
:root {
    /* Brand Colors */
    --teal: #1EA4A2;
    --teal-dark: #178785;
    --teal-light: #e8f5f5;
    --teal-hover: #17918f;
    --green: #7BB63F;
    --green-dark: #6a9e36;
    --green-light: #f0f9e8;
    --orange: #F7941D;
    --orange-light: #fff8f0;
    --orange-dark: #e08515;
    --dark-charcoal: #28323B;
    --light-bg: #F7F7F5;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #28323B;
    --text-light: #5a6670;
    --text-muted: #8a949d;
    
    /* Status Colors */
    --error-red: #dc3545;
    --error-bg: #fff5f5;
    --success-green: #28a745;
    --success-bg: #f0fff4;
    
    /* UI Elements */
    --border-color: #e0e4e8;
    --border-light: #f0f2f4;
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 0, 0, 0.10);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --shadow-teal: rgba(30, 164, 162, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* ===== ACCESSIBILITY - SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
}

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

/* ===== ACCESSIBILITY - FOCUS STYLES ===== */
*:focus {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow-light);
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: block;
}

.nav-logo .logo-img {
    height: auto;
    width: 260px;
    max-height: 60px;
    object-fit: contain;
}

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

.nav-link {
    color: var(--dark-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--teal);
    text-decoration: none;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    border-radius: 4px;
}

.hamburger:hover {
    background-color: var(--light-bg);
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-charcoal);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.btn:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}

/* Primary Button - Main CTA */
.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-hover) 100%);
    color: var(--white);
    border-color: var(--teal);
    box-shadow: 0 4px 15px var(--shadow-teal);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-hover) 0%, var(--teal-dark) 100%);
    border-color: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow-teal);
}

/* Secondary Button - Outlined */
.btn-secondary {
    background-color: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

/* Orange Accent Button */
.btn-accent {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border-color: var(--orange);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, #cc7410 100%);
    border-color: var(--orange-dark);
    color: var(--white);
}

/* White Button (for dark backgrounds) */
.btn-white {
    background-color: var(--white);
    color: var(--teal);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--light-bg);
    color: var(--teal-dark);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.btn-submit {
    padding: 18px 52px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(145deg, var(--white) 0%, var(--teal-light) 50%, var(--light-bg) 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative element */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(30, 164, 162, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 380px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.hero-title {
    font-size: 3rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.75rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust badges under hero */
.hero-trust {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(30, 164, 162, 0.15);
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item span {
    font-size: 1.25rem;
}

/* ===== IMMEDIATE CAPACITY BOX ===== */
.capacity-box {
    background: linear-gradient(135deg, var(--green) 0%, #5a9a2f 100%);
    padding: 1.5rem 0;
    text-align: center;
}

.capacity-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.capacity-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.capacity-box strong {
    color: var(--white);
    font-weight: 700;
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    color: var(--dark-charcoal);
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title span {
    color: var(--teal);
}

.section-subtitle {
    text-align: center;
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-intro,
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--green) 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ===== HOW WE HELP SECTION ===== */
.how-we-help {
    background-color: var(--white);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.help-card {
    background-color: var(--white);
    padding: 2.75rem 2.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--green) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: transparent;
}

.help-card:hover::before {
    opacity: 1;
}

.help-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.help-card h3 {
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--light-bg);
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-category {
    background-color: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--teal);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
}

.service-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-medium);
}

/* Featured/Highlighted Service Category */
.service-category.featured {
    border-top-color: var(--orange);
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--white) 15%);
    position: relative;
}

.service-category.featured::after {
    content: 'Featured';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-title {
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.service-category.featured .category-title {
    color: var(--orange-dark);
}

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

.service-list li {
    padding: 0.65rem 0;
    padding-left: 1.85rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

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

.service-list li:hover {
    color: var(--teal);
    padding-left: 2rem;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1rem;
}

/* Highlighted service item within list */
.service-list li.highlight {
    background: var(--green-light);
    margin: 0.25rem -1rem;
    padding: 0.75rem 1rem 0.75rem 2.85rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.service-list li.highlight::before {
    left: 1rem;
}

/* ===== WHO WE WORK WITH SECTION ===== */
.who-we-work-with {
    background-color: var(--white);
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.column h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===== REFERRALS (FOR SUPPORT COORDINATORS) SECTION ===== */
.referrals {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--light-bg) 100%);
}

.referral-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.referral-benefits h3 {
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding: 0.85rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 1.25rem;
}

.referral-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid var(--orange);
    box-shadow: 0 8px 24px var(--shadow-light);
    text-align: center;
}

.referral-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.referral-box h3 {
    color: var(--orange);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.contact-details {
    margin: 1.5rem 0;
    text-align: left;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--white);
}

.about-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.about-logo {
    max-width: 280px;
    height: auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ===== REFERRAL FORM SECTION ===== */
.referral-form-section {
    background-color: var(--light-bg);
}

.intake-form {
    max-width: 1000px;
    margin: 2.5rem auto 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border: 1px solid var(--border-light);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.form-header h3 {
    color: var(--dark-charcoal);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Form Fieldsets */
.form-fieldset {
    border: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.form-fieldset legend {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 3px solid var(--teal-light);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-fieldset legend span {
    font-size: 1.5rem;
}

/* Form Layout - Multi-column on desktop */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
}

.required {
    color: var(--orange);
}

/* Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(30, 164, 162, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-red);
    background-color: var(--error-bg);
}

.error-message {
    display: block;
    color: var(--error-red);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    min-height: 1.2em;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    flex: 1;
    cursor: pointer;
}

/* Privacy Notice */
.privacy-notice {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.privacy-notice a {
    color: var(--teal);
    text-decoration: underline;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--success-bg) 0%, #e8f9ed 100%);
    border-radius: 12px;
    margin-top: 2rem;
    border: 2px solid var(--success-green);
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: var(--success-green);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ===== STREAMLINED REFERRAL FORM ===== */

/* Form Intro Message */
.form-intro {
    background: linear-gradient(135deg, var(--teal-light) 0%, #e0f4f4 100%);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(30, 164, 162, 0.2);
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.form-intro strong {
    color: var(--teal);
}

/* Form Section Titles */
.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal);
    margin: 2rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--teal-light);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

/* Option Groups (Radio & Checkbox) */
.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background-color: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 400;
    color: var(--text-dark);
    min-height: 52px;
}

.option-label:hover {
    border-color: var(--teal);
    background-color: var(--teal-light);
}

.option-label:has(input:checked) {
    border-color: var(--teal);
    background-color: var(--teal-light);
    box-shadow: 0 0 0 2px rgba(30, 164, 162, 0.15);
}

.option-label input[type="radio"],
.option-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--teal);
    flex-shrink: 0;
    margin: 0;
}

/* Checkbox Group Options (stacked checkboxes like support needs) */
.checkbox-group-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Privacy Note */
.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 1.5rem 0;
    text-align: center;
}

.privacy-note a {
    color: var(--teal);
    text-decoration: underline;
}

.privacy-note a:hover {
    color: var(--teal-dark);
}

/* Consent Checkbox Styling */
.consent-checkbox {
    margin-top: 1rem;
}

.consent-checkbox .checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
    background-color: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.consent-checkbox .checkbox-inline:hover {
    border-color: var(--teal);
    background-color: var(--teal-light);
}

.consent-checkbox .checkbox-inline:has(input:checked) {
    border-color: var(--green);
    background-color: var(--success-bg);
}

.consent-checkbox .checkbox-inline input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 0.1rem;
    cursor: pointer;
    accent-color: var(--green);
    flex-shrink: 0;
}

/* Form Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Service Selection Checkboxes */
.service-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
}

.service-label .hint-text {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: 0;
    font-weight: 400;
}

.service-checkbox:hover {
    border-color: var(--teal);
    background-color: var(--teal-light);
}

.service-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--teal);
    flex-shrink: 0;
}

.service-checkbox input[type="checkbox"]:checked + .checkbox-custom + .checkbox-label {
    color: var(--teal);
    font-weight: 600;
}

.service-checkbox:has(input:checked) {
    border-color: var(--teal);
    background-color: var(--teal-light);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Consent Checkbox Enhanced */
.consent-checkbox {
    background-color: var(--light-bg);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
}

.consent-checkbox:has(input:checked) {
    border-color: var(--green);
    background-color: var(--green-light);
}

/* Form Summary (Pre-Submit) */
.form-summary {
    background: linear-gradient(135deg, var(--teal-light) 0%, #e0f4f4 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    border-left: 4px solid var(--teal);
}

.form-summary p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Responsive - Streamlined Referral Form */
@media (max-width: 768px) {
    .form-intro {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin: 1.5rem 0 1rem;
    }
    
    .option-group {
        gap: 0.6rem;
    }
    
    .option-label {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .checkbox-group-options .option-label {
        padding: 0.875rem 1rem;
    }
    
    .consent-checkbox .checkbox-inline {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .service-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .service-checkbox {
        padding: 0.875rem 1rem;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .progress-step .step-label {
        font-size: 0.7rem;
        max-width: 65px;
    }
    
    .progress-line {
        max-width: 25px;
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pillar-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(30, 164, 162, 0.1);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    color: var(--teal);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== HOW WE WORK SECTION ===== */
.how-we-work {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.steps-container {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, #17918f 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 164, 162, 0.3);
}

.step-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--teal);
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--green);
    margin: 0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--green);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.testimonial-author {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== SERVICE AREAS / SUBURBS SECTION ===== */
.service-areas-section {
    background-color: var(--light-bg);
}

.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.suburb-region {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--teal);
}

.suburb-region h3 {
    color: var(--teal);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(30, 164, 162, 0.2);
}

.suburb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 1rem;
}

.suburb-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.25rem 0;
    break-inside: avoid;
}

.suburb-list li::before {
    content: "✓";
    color: var(--green);
    margin-right: 0.5rem;
    font-weight: bold;
}

.service-areas-note {
    margin-top: 2.5rem;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed var(--teal);
}

.service-areas-note p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-areas-note .btn {
    margin-top: 0.5rem;
}

/* Mobile responsive for new sections */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        border-left: none;
        border-top: 4px solid var(--teal);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .suburbs-grid {
        grid-template-columns: 1fr;
    }
    
    .suburb-list {
        columns: 1;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--dark-charcoal) 0%, #1e262d 100%);
    color: var(--white);
    padding: 5rem 0 2rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--green) 50%, var(--orange) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand p {
    color: #adb5bd;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--teal);
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--teal);
    transition: all var(--transition-fast);
}

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

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

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #adb5bd;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--teal);
    transform: translateX(5px);
    text-decoration: none;
}

/* Contact info in footer */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item span {
    font-size: 1.1rem;
    color: var(--teal);
}

.footer-acknowledgement {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.15);
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-acknowledgement p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #8a949d;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--teal);
}

.footer-bottom a:hover {
    color: var(--green);
}

/* ===== RESPONSIVE DESIGN - MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Section spacing */
    section {
        padding: 70px 0;
    }
    
    /* Navigation - Mobile Menu */
    .nav-logo .logo-img {
        width: 200px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: 0 10px 30px var(--shadow-medium);
        padding: 1.5rem 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.75rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 1.05rem;
    }
    
    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height var(--transition-normal);
        border-radius: var(--radius-md);
        margin: 0.5rem 1rem;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.75rem 0;
    }
    
    .dropdown-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-arrow {
        transition: transform var(--transition-fast);
    }
    
    .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Hero Section */
    .hero {
        padding: 70px 0 90px;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-logo {
        max-width: 260px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 340px;
        padding: 16px 32px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.85rem;
    }
    
    .section-intro,
    .intro-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* Grids */
    .help-grid,
    .services-grid,
    .services-categories {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Referral Content */
    .referral-content {
        grid-template-columns: 1fr;
    }

    /* Form */
    .intake-form {
        padding: 1.75rem;
        margin: 1.5rem auto 0;
        border-radius: var(--radius-lg);
    }
    
    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-fieldset legend {
        font-size: 1.15rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-acknowledgement {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .help-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .referral-box {
        padding: 1.5rem;
    }
}

/* ===== RESPONSIVE DESIGN - TABLET (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .help-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-policy {
    background-color: var(--white);
    padding-top: 120px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--teal);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.policy-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.policy-section li {
    color: var(--text-light);
    padding: 0.4rem 0;
    line-height: 1.7;
}

.contact-box {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* ===== PAEDIATRICS & DMI PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--light-bg) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--teal);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-subtitle {
    font-size: 0.9rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.page-hero .hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.85;
}

.page-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Paediatrics-specific hero styling */
.paeds-hero {
    background: linear-gradient(145deg, var(--orange-light) 0%, var(--light-bg) 50%, var(--teal-light) 100%);
}

.paeds-hero h1 {
    color: var(--orange-dark);
}

.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: var(--light-bg);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    color: var(--teal);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.check-list.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem 2rem;
}

.highlight-section {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--light-bg) 100%);
    border-top: 4px solid var(--orange);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.benefit-grid li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--green);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.benefit-grid li strong {
    display: block;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-grid li span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    background-color: var(--teal);
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--teal);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-bg);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--teal);
}

.nav-link.active {
    color: var(--teal);
}

.nav-link.active::after {
    width: 100%;
}

/* ===== DROPDOWN MENU ===== */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow-medium);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    background-color: var(--teal-light);
    color: var(--teal);
    text-decoration: none;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 0.5rem 0;
}

/* ===== SERVICES PAGE ===== */
.services-page-section {
    padding: 80px 0;
}

.services-page-section.alt-bg {
    background-color: var(--light-bg);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: all var(--transition-normal);
}

.services-page-section.alt-bg .service-detail-card {
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-medium);
}

.service-detail-card h3 {
    color: var(--dark-charcoal);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.service-detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* Featured/Highlighted Service Card */
.service-detail-card.featured {
    border-left-color: var(--orange);
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 30%);
    position: relative;
}

.service-detail-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 var(--radius-lg) 0 var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-card.featured h3 {
    color: var(--orange-dark);
}

/* Expanded Service Cards with Icons and Details */
.service-cards-grid.expanded {
    grid-template-columns: repeat(2, 1fr);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.service-summary {
    color: var(--dark-charcoal);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-details {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
}

.service-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.service-details strong {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.service-detail-card .btn {
    margin-top: var(--space-md);
}

@media (max-width: 992px) {
    .service-cards-grid.expanded {
        grid-template-columns: 1fr;
    }
}

/* ===== WHAT TO EXPECT SECTION ===== */
.first-session-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.expect-box {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--light-bg) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 2px solid var(--teal);
}

.expect-box .section-title {
    color: var(--teal-dark);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.expect-item {
    text-align: center;
    padding: var(--space-md);
}

.expect-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.expect-item h3 {
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.expect-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

.expect-note {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-lg);
}

.expect-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.expect-note p:last-child {
    margin-bottom: 0;
}

.expect-note strong {
    color: var(--teal-dark);
}

@media (max-width: 992px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .expect-box {
        padding: var(--space-lg);
    }
}

/* ===== SERVICE COMMITMENTS ===== */
.service-commitments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.commitment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow-light);
    border-top: 3px solid var(--teal);
}

.commitment-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.commitment-card h4 {
    color: var(--dark-charcoal);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.commitment-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Clinical Strengths Tags */
.clinical-strengths {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.strength-tag {
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--teal);
}

@media (max-width: 992px) {
    .service-commitments {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-commitments {
        grid-template-columns: 1fr;
    }
}

/* ===== MEET THE TEAM SECTION ===== */
.meet-the-team {
    padding: var(--space-2xl) 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px var(--shadow-light);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-medium);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--light-bg) 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-normal);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: var(--space-lg);
    text-align: center;
}

.team-info h3 {
    color: var(--dark-charcoal);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--teal);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-photo {
        aspect-ratio: 4 / 3;
    }
}

/* ===== ABOUT PAGE - CREDENTIALS GRID ===== */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.credential-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.credential-card h3 {
    color: var(--dark-charcoal);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

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

.credential-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.credential-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

@media (max-width: 992px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT PAGE - VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-top: 4px solid var(--teal);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.value-card h3 {
    color: var(--dark-charcoal);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: var(--space-lg);
    }
}

/* ===== ABOUT PAGE - CTA SECTION ===== */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 15px rgba(30, 164, 162, 0.1);
}

.faq-item[open] {
    border-color: var(--teal);
    background: var(--white);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    transition: all 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 4rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-answer li::marker {
    color: var(--teal);
}

.faq-answer a {
    color: var(--teal);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--teal-dark);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--teal-light) 0%, #e8f8f5 100%);
    border-radius: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        padding-right: 3rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
}

/* ===== PROCESS STEPS (Service Pages) ===== */
.process-steps {
    max-width: 800px;
    margin: 2rem auto 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, #17918f 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 164, 162, 0.3);
}

.process-step .step-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--teal);
}

.process-step .step-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step .step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step .step-content {
        padding: 1.25rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.mt-4 {
    margin-top: var(--space-xl) !important;
}

.mb-4 {
    margin-bottom: var(--space-xl) !important;
}

/* ===== ENHANCED VISUAL POLISH ===== */

/* Section Contrast Improvements */
.how-we-help {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.why-choose-us {
    background: linear-gradient(180deg, var(--teal-light) 0%, #d8f0f0 100%);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--green) 100%);
}

/* Enhanced Card Shadows */
.service-card,
.pillar-card,
.feature-card,
.expect-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.pillar-card:hover,
.feature-card:hover,
.expect-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 164, 162, 0.15);
}

/* Improved Section Titles */
.section-title {
    position: relative;
    display: inline-block;
}

/* Icon Circle Backgrounds */
.pillar-icon,
.expect-icon,
.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal-light) 0%, #d8f0f0 100%);
    border-radius: 50%;
    font-size: 1.75rem;
}

/* Enhanced Referral Section */
.referral-form-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, #f0f0ed 100%);
}

/* Better Footer Contrast */
.site-footer {
    background: linear-gradient(180deg, var(--dark-charcoal) 0%, #1e262d 100%);
}

/* Service Areas Visual Enhancement */
.suburb-region {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suburb-region:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Enhanced List Icons */
.service-list li::before,
.features-list li::before,
.benefits-grid li::before {
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Better Button Transitions */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Enhanced Focus States */
.btn:focus-visible,
.service-card:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}

/* Smoother Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .pillar-card,
    .faq-item,
    .expect-item,
    .btn {
        will-change: transform;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    section {
        padding: 20px 0;
    }
}
