/* ========================================
   THRIVE UNITED PHYSIO - STYLESHEET
   Premium Allied Health Clinic Website
   
   DESIGN SYSTEM:
   - Modern, elegant, boutique healthcare aesthetic
   - Mobile-first responsive approach
   - WCAG 2.1 AA accessible
   - Conversion-focused layout
   ======================================== */

/* ===== CSS VARIABLES (Brand Colors & Design Tokens) ===== */
:root {
    /* Premium Boutique Color Palette */
    --teal: #2a9d9a;
    --teal-dark: #238583;
    --teal-light: #e8f4f4;
    --teal-hover: #238583;
    --teal-muted: #6db8b6;
    --teal-gradient: linear-gradient(135deg, #2a9d9a 0%, #238583 100%);
    --green: #7BB63F;
    --green-dark: #6a9e36;
    --green-light: #f0f9e8;
    --orange: #e8a756;
    --orange-light: #fdf8f3;
    --orange-dark: #d4924a;
    /* Logo-matched gold — primary CTA colour (the unifying ring) */
    --gold: #E8961A;
    --gold-dark: #cf8215;
    --gold-light: #fdf4e3;
    --shadow-gold: 0 4px 18px rgba(232, 150, 26, 0.35);
    --dark-charcoal: #2c3e50;
    
    /* Premium Neutral Backgrounds */
    --white: #FFFFFF;
    --off-white: #FDFCFA;
    --cream-bg: #F9F8F6;
    --light-bg: #F5F4F2;
    --warm-grey: #EFEDEA;
    --stone-bg: #E8E6E3;
    
    /* Text Colors - WCAG AA Compliant */
    --text-dark: #2c3e50;
    --text-body: #4a5568;
    --text-light: #5a6672;
    --text-muted: #6b7280;
    
    /* Status Colors */
    --error-red: #dc3545;
    --error-bg: #fef2f2;
    --success-green: #059669;
    --success-bg: #ecfdf5;
    
    /* UI Elements */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-teal: 0 4px 20px rgba(42, 157, 154, 0.15);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.35s ease;
    
    /* Premium Spacing Scale */
    --space-xs: 0.5rem;     /* 8px */
    --space-sm: 1rem;       /* 16px */
    --space-md: 1.5rem;     /* 24px */
    --space-lg: 2rem;       /* 32px */
    --space-xl: 3rem;       /* 48px */
    --space-2xl: 4rem;      /* 64px */
    --space-3xl: 5rem;      /* 80px */
    --space-4xl: 6rem;      /* 96px */
    --space-5xl: 8rem;      /* 128px */
    
    /* Section Padding - More Generous */
    --section-padding: 6rem 0;
    --section-padding-lg: 8rem 0;
    
    /* Border Radius - Softer */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* ===== 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: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
}

/* Premium Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Nunito', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

/* ===== 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: 600;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.375rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-body);
}

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 1px 0 var(--border-light);
    z-index: 1000;
    padding: 1rem 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: 60px;
    width: 60px;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-fast);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

.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%;
}

/* Nav CTA Button */
.btn-nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 11px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    box-shadow: none;
}

.btn-nav-cta:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-gold);
    color: var(--white);
    text-decoration: none;
}

/* 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: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    opacity: 1;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    opacity: 0.92;
    transition: opacity 0.2s ease, background 0.2s ease;
}

/* Orange Accent Button */
.btn-accent {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-accent:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    opacity: 0.92;
    transition: opacity 0.2s ease, background 0.2s ease;
}

/* 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(160deg, #0b2830 0%, #0e3535 45%, #143e3d 100%);
    padding: 160px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 15%, rgba(232, 150, 26, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 85%, rgba(68, 184, 224, 0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

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

.hero-title {
    font-size: 3.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-highlight {
    display: block;
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #d4f7d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.hero-availability {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-availability.gold {
    color: #FFD700;
    font-weight: 500;
}

/* ===== REFINED HERO (Cleaner, Calmer) ===== */
.hero-logo {
    display: block;
    margin: 0 auto 2.5rem;
    width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}

.footer-logo {
    display: block;
    width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-refined {
    padding: 200px 0 180px;
    min-height: auto;
}

.hero-refined .hero-content {
    max-width: 700px;
}

.hero-refined .hero-title {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
}

.hero-refined .hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-refined .hero-buttons {
    gap: 1rem;
}

.hero-refined .hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    min-width: 220px;
}

/* Outline white button for hero */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* Mobile refinements for hero-refined */
@media (max-width: 768px) {
    .hero-refined {
        padding: 140px 0 120px;
    }
    
    .hero-refined .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-refined .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .hero-refined .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }
    
    .hero-refined .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== HERO MICRO-POLISH (Boutique Style) ===== */
.hero-boutique {
    padding: 160px 24px 120px;
}

.hero-inner {
    max-width: 860px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #6b7a82;
}

.hero-boutique h1 {
    margin-bottom: 24px;
    max-width: 760px;
}

.hero-boutique p {
    margin-bottom: 40px;
    max-width: 720px;
}

.hero-actions {
    margin-bottom: 28px;
}

.hero-trust-strip {
    font-size: 0.85rem;
    color: #6b7a82;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-boutique {
        padding: 120px 20px 80px;
    }

    .hero-boutique h1 {
        font-size: 2.15rem;
    }
}

/* White Button for Hero */
.btn-white {
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--white);
}

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

/* ===== TRUST & CREDIBILITY BAR ===== */
.trust-bar {
    background: var(--cream-bg);
    padding: 1.75rem 0;
    border-bottom: none;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-text {
    white-space: nowrap;
}

/* ===== IMMEDIATE CAPACITY BOX ===== */
.capacity-box {
    background: var(--teal);
    padding: 1.25rem 0;
    text-align: center;
}

.capacity-box h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0;
}

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

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

/* ===== SOFT BACKGROUND PANELS (Dental Boutique Effect) ===== */
.soft-panel {
    background-color: var(--light-bg);
    padding: 96px 0;
}

.soft-panel-alt {
    background-color: var(--warm-grey);
    padding: 96px 0;
}

@media (max-width: 768px) {
    .soft-panel,
    .soft-panel-alt {
        padding: 64px 0;
    }
}

/* ===== SERVICES GRID (Overview Cards) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.service-card {
    background: #f3f4f2;
    padding: 36px;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #243038;
}

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

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: #4f5e66;
}

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

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

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 600;
    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.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.section-intro,
.intro-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.85;
}

/* Section divider */
.section-divider {
    width: 48px;
    height: 3px;
    background: var(--teal);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

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

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

.help-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    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 {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 164, 162, 0.1), rgba(123, 182, 63, 0.1));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(30, 164, 162, 0.15);
}

.help-icon .icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.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(--warm-grey);
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-category {
    background-color: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    position: relative;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Service Dropdown Styles */
.service-dropdown {
    cursor: pointer;
}

.service-dropdown summary.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    user-select: none;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-dropdown summary.category-title::-webkit-details-marker {
    display: none;
}

.service-dropdown summary.category-title::marker {
    display: none;
    content: '';
}

.service-dropdown .dropdown-indicator {
    font-size: 0.85rem;
    color: var(--teal);
    transition: transform var(--transition-fast);
    margin-left: 0.5rem;
    background: var(--teal-light);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-dropdown[open] .dropdown-indicator {
    transform: rotate(180deg);
    background: var(--teal);
    color: var(--white);
}

.service-dropdown .service-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured/Highlighted Service Category */
.service-category.featured {
    background: linear-gradient(145deg, #fff9f0 0%, var(--white) 40%);
    border: 2px solid var(--orange);
    position: relative;
    grid-column: span 1;
}

.service-category.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    border-radius: 16px 16px 0 0;
}

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

.category-title {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: none;
    letter-spacing: -0.01em;
    font-weight: 600;
    line-height: 1.3;
}

.service-category.featured .category-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: none;
    transition: all var(--transition-fast);
}

.service-list li:hover {
    color: var(--teal);
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.service-list li.highlight {
    color: var(--text-dark);
    font-weight: 500;
}

.service-list li.highlight::before {
    background: var(--orange);
}

/* Services section mobile responsive */
@media (max-width: 992px) {
    .services-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-category.featured {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .services-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-category {
        padding: 1.5rem 1.25rem;
    }
    
    .service-category.featured {
        grid-column: span 1;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.875rem;
        padding: 0.4rem 0;
        padding-left: 1.25rem;
    }
    
    .service-list li::before {
        width: 5px;
        height: 5px;
        top: 0.65rem;
    }
}

/* 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: var(--warm-grey);
}

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

.referral-benefits h3 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.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: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    text-align: center;
}

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

.referral-box h3 {
    color: var(--teal);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.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(--cream-bg);
}

.intake-form {
    max-width: 900px;
    margin: 2.5rem auto 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 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: 1px 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.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-fieldset legend span {
    font-size: 1.25rem;
    color: var(--teal);
}

/* 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: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    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: var(--teal-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 154, 0.1);
}

.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 {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 164, 162, 0.1), rgba(123, 182, 63, 0.1));
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(30, 164, 162, 0.12);
}

.pillar-icon .icon-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.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: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.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: 1px solid var(--border-color);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .suburbs-grid {
        grid-template-columns: 1fr;
    }
    
    .suburb-list {
        columns: 1;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 5rem 0 2rem 0;
    position: relative;
}

.footer::before {
    display: none;
}

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

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.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);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--cream-bg);
    padding: var(--section-padding-lg);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--teal-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-rating {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 2px;
}

/* ===== FLOATING MOBILE CTA ===== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--teal-gradient);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px var(--shadow-teal);
    z-index: 900;
    transition: all var(--transition-normal);
    align-items: center;
    gap: 0.5rem;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--shadow-teal);
    color: var(--white);
    text-decoration: none;
}

.floating-cta-icon {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .floating-cta {
        display: flex;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===== 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 {
        height: 52px;
        width: 52px;
    }
    
    .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: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
    }
    
    .hero-highlight {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Trust Bar */
    .trust-bar {
        padding: 1.25rem 0;
    }
    
    .trust-items {
        gap: 1rem;
    }
    
    .trust-badge {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .trust-text {
        white-space: normal;
    }

    .btn {
        padding: 16px 32px;
    }

    /* 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);
}

/* ===== SERVICES PAGE - ASI STYLE ===== */
.services-hero {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 50%, var(--light-bg) 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.services-hero-tagline {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.services-hero-heading {
    font-size: 1.8rem;
    color: var(--dark-charcoal);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.services-hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Navigation Grid */
.services-nav-section {
    background: var(--white);
    padding: 60px 0;
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.services-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.services-nav-card:hover,
.services-nav-card:focus {
    background: var(--teal-light);
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-teal);
}

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

.services-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    text-align: center;
    line-height: 1.3;
}

.services-nav-card:hover .services-nav-title,
.services-nav-card:focus .services-nav-title {
    color: var(--teal);
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

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

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

.service-text h2 {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-bullets li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

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

.service-column h4 {
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* CTA Bands */
.cta-band {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-band h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

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

.cta-band-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.btn-white {
    background: var(--white);
    color: var(--teal);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-fast);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* Delivery Options Grid */
.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.delivery-option {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.delivery-option:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.delivery-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.delivery-option h4 {
    font-size: 1rem;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.delivery-option p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== END SERVICES PAGE STYLES ===== */

.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: var(--cream-bg);
    border-top: none;
}

.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-md);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

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

.commitment-card h4 {
    color: var(--text-dark);
    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;
    }
    
    /* Services Page Responsive */
    .services-hero {
        padding: 100px 0 40px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .services-hero-heading {
        font-size: 1.4rem;
    }
    
    .services-nav-section {
        padding: 40px 0;
    }
    
    .services-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-nav-card {
        padding: 1.25rem 1rem;
    }
    
    .services-nav-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .services-nav-title {
        font-size: 0.9rem;
    }
    
    .service-section {
        padding: 50px 0;
    }
    
    .service-text h2 {
        font-size: 1.75rem;
    }
    
    .service-intro {
        font-size: 1.05rem;
    }
    
    .cta-band {
        padding: 40px 0;
    }
    
    .cta-band h3 {
        font-size: 1.5rem;
    }
    
    .cta-band p {
        font-size: 1rem;
    }
    
    .delivery-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== 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: var(--shadow-card);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid var(--border-light);
}

.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%);
}

/* ===== Welcome to Country Acknowledgement ===== */
.acknowledgement-section {
    background: var(--warm-grey);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.acknowledgement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.acknowledgement-flags {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.acknowledgement-flags .flag-icon {
    width: 48px;
    height: 32px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acknowledgement-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0;
}

/* Mobile adjustments for acknowledgement */
@media (max-width: 768px) {
    .acknowledgement-section {
        padding: 1.25rem 1rem;
    }
    
    .acknowledgement-flags .flag-icon {
        width: 40px;
        height: 27px;
    }
    
    .acknowledgement-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* 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;
    }
}

/* ===== CONTACT DETAILS (HIDDEN) ===== */
.contact-details {
    display: none;
}

/* ===== SERVICE COMPARISON GUIDE ===== */
.service-guide-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

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

.guide-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.guide-card:hover,
.guide-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 164, 162, 0.15);
    border-color: var(--teal);
}

.guide-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 164, 162, 0.1), rgba(123, 182, 63, 0.1));
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(30, 164, 162, 0.12);
}

.guide-icon .icon-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.guide-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.guide-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guide-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.guide-tag {
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.guide-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.guide-link:hover {
    color: var(--teal-dark);
}

.guide-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--teal-light);
    border-radius: var(--radius-lg);
}

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

/* ===== PHYSIO TIPS SECTION ===== */
.physio-tips-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.tip-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover,
.tip-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tip-category {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

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

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

.tip-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

/* ===== HIGH CONTRAST MODE TOGGLE ===== */
.contrast-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-charcoal);
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contrast-toggle:hover {
    transform: scale(1.1);
    background: var(--teal);
}

.contrast-toggle:focus {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

/* ===== HIGH CONTRAST MODE STYLES ===== */
body.high-contrast {
    --teal: #006666;
    --teal-dark: #004d4d;
    --teal-light: #e0f0f0;
    --green: #228B22;
    --orange: #CC6600;
    --dark-charcoal: #000000;
    --light-bg: #FFFFFF;
    --white: #FFFFFF;
    --text-dark: #000000;
    --text-light: #333333;
    --text-muted: #555555;
    --border-color: #000000;
}

body.high-contrast {
    background: #FFFFFF;
    color: #000000;
}

body.high-contrast .navbar {
    background: #000000;
    border-bottom: 3px solid #FFFFFF;
}

body.high-contrast .nav-link {
    color: #FFFFFF;
}

body.high-contrast .nav-link:hover,
body.high-contrast .nav-link:focus {
    background: #333333;
}

body.high-contrast .hero {
    background: #000000;
    color: #FFFFFF;
}

body.high-contrast .hero-title,
body.high-contrast .hero-description {
    color: #FFFFFF;
}

body.high-contrast .btn-primary {
    background: #006666;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

body.high-contrast .btn-primary:hover {
    background: #004d4d;
}

body.high-contrast .btn-secondary {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

body.high-contrast .section-title,
body.high-contrast h2,
body.high-contrast h3 {
    color: #000000;
}

body.high-contrast .help-card,
body.high-contrast .pillar-card,
body.high-contrast .service-card,
body.high-contrast .guide-card,
body.high-contrast .tip-card,
body.high-contrast .team-card,
body.high-contrast .faq-item {
    background: #FFFFFF;
    border: 2px solid #000000;
}

body.high-contrast .capacity-box {
    background: #006666;
    color: #FFFFFF;
}

body.high-contrast .guide-tag {
    background: #000000;
    color: #FFFFFF;
}

body.high-contrast .tip-category {
    background: #000000;
    color: #FFFFFF;
}

body.high-contrast .contrast-toggle {
    background: #FFFFFF;
    color: #000000;
    border-color: #000000;
}

body.high-contrast a {
    color: #006666;
    text-decoration: underline;
}

body.high-contrast a:hover,
body.high-contrast a:focus {
    color: #004d4d;
}

body.high-contrast *:focus {
    outline: 3px solid #FF6600 !important;
    outline-offset: 3px !important;
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== ENQUIRY PAGE STYLES ===== */
.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.enquiry-section {
    padding: var(--section-padding-lg);
    background: var(--white);
}

.enquiry-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.enquiry-form-wrapper .form-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.enquiry-form-wrapper .form-card h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.enquiry-form-wrapper .form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    background: none;
    border: none;
    padding: 0;
}

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

.enquiry-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.enquiry-form .required {
    color: var(--error-red);
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--white);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 154, 0.1);
}

.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.enquiry-form .btn-full {
    width: 100%;
}

.enquiry-form .form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

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

.enquiry-form .captcha-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.enquiry-form .captcha-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--teal);
}

.enquiry-form .captcha-text {
    font-weight: 500;
    color: var(--text-body);
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enquiry-info .info-card {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.enquiry-info .info-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.enquiry-info .info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.enquiry-info .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-body);
    line-height: 1.5;
}

.enquiry-info .info-icon {
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

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

@media (max-width: 900px) {
    .enquiry-layout {
        grid-template-columns: 1fr;
    }
    
    .enquiry-info {
        order: -1;
    }
}

@media (max-width: 600px) {
    .enquiry-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .enquiry-form-wrapper .form-card {
        padding: 1.5rem;
    }
}

/* ===== SILO NAVIGATION CARDS ===== */
.silo-nav {
    padding: var(--section-padding);
}

.silo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.silo-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
}

.silo-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.silo-card:hover .silo-link {
    color: var(--teal);
}

.silo-card:hover .silo-image img {
    transform: scale(1.05);
}

.silo-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.silo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.silo-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.silo-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.silo-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.silo-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    transition: color var(--transition-fast);
}

.silo-more {
    text-align: center;
    margin-top: 2.5rem;
}

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

@media (max-width: 600px) {
    .silo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .silo-image {
        height: 140px;
    }
    
    .silo-content {
        padding: 1.25rem;
    }
}

/* ===== QUICK INFO LINKS ===== */
.quick-info {
    padding: var(--section-padding);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quick-info-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.quick-info-item:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-card-hover);
}

.quick-info-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

.quick-info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.quick-info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.quick-info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.link-arrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
}

@media (max-width: 900px) {
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info-link {
        padding: 1.5rem;
    }
}

/* ===== COMPACT FAQ ===== */
.faq-compact {
    padding: 4rem 0;
    background: var(--off-white);
}

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

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        background: var(--gold);
        border-radius: 8px;
        text-align: center;
        padding: 14px;
        z-index: 999;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    .mobile-sticky-cta a {
        color: #ffffff;
        font-weight: 500;
        text-decoration: none;
        font-size: 1rem;
    }
}

/* ===== DELIVERY OPTIONS (Where We Deliver Page) ===== */
.delivery-options {
    padding: var(--section-padding);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.delivery-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.delivery-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-card-hover);
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.delivery-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.delivery-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

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

/* ===== SUBURBS GRID (Where We Deliver Page) ===== */
.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.suburb-region {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.suburb-region h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.suburb-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suburb-region li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 0.25rem 0;
}

.suburbs-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-body);
}

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

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

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--teal-gradient);
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

/* =========================================
   ACCESSIBILITY UPGRADE PACK (WCAG 2.2 AA)
   ========================================= */

/* Skip link */
.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-120%);
    background: #ffffff;
    color: #243038;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(12px);
    outline: 3px solid #1ea4a2;
    outline-offset: 3px;
}

/* Global focus styles (keyboard users) */
:focus-visible {
    outline: 3px solid #1ea4a2;
    outline-offset: 3px;
}

a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
    border-radius: 6px;
}

/* Ensure muted text still passes contrast */
.muted, .subtle, .hero-eyebrow, .footer-note {
    color: #42525a;
}

/* Links: ensure they are visually identifiable */
a {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Buttons: ensure good target size */
button, .btn, .btn-primary, .btn-secondary, input[type="submit"] {
    min-height: 44px;
}

/* Form labels and spacing improvements */
label {
    display: block;
    font-weight: 500;
}

/* Error states for forms */
.field-error {
    border-color: #b42318 !important;
}

.error-text {
    color: #b42318;
    margin-top: 6px;
    font-size: 0.95rem;
}

.required-star {
    color: #b42318;
    margin-left: 4px;
}

/* Form alert region */
#form-alert {
    background: #fef2f2;
    color: #b42318;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

#form-alert:empty {
    display: none;
}

/* Reduce motion for users who request it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Visually hidden but accessible to screen readers */
.visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Screen reader announcer region */
#sr-announcer {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility statement page styles */
.accessibility-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.accessibility-content h2 {
    color: var(--teal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.accessibility-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.accessibility-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.accessibility-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ===== CAREERS PAGE STYLES ===== */
.careers-hero {
    background: linear-gradient(135deg, #2a9d9a 0%, #1d7c7a 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.careers-hero h1 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.careers-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.careers-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.careers-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.careers-value-item .value-icon {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.careers-roles-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.careers-roles-section .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--text-body);
}

.careers-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.career-role-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.career-role-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.career-role-card .role-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.career-role-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.career-role-card .role-type {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.career-role-card .role-description {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.careers-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-item {
    text-align: center;
    padding: 1.5rem;
}

.offer-item .offer-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.offer-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.offer-item p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.careers-form-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.careers-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.careers-form-wrapper .form-intro {
    text-align: center;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.eoi-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.eoi-form .form-group {
    flex: 1;
}

.eoi-form .form-group.full-width {
    margin-bottom: 1.25rem;
}

.eoi-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.eoi-form .required {
    color: #b91c1c;
}

.eoi-form .optional {
    color: var(--text-muted);
    font-weight: 400;
}

.eoi-form input,
.eoi-form select,
.eoi-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eoi-form input:focus,
.eoi-form select:focus,
.eoi-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 154, 0.1);
    outline: none;
}

.eoi-form textarea {
    resize: vertical;
    min-height: 80px;
}

.eoi-form .btn-lg {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.eoi-form .form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success .success-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-body);
}

/* Careers Footer Widget */
.careers-widget {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.careers-widget h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.careers-widget p {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.careers-widget ul {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.careers-widget li {
    color: var(--text-body);
    font-size: 0.85rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.careers-widget li::before {
    content: "•";
    color: var(--teal);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.careers-widget .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .careers-hero h1 {
        font-size: 1.75rem;
    }
    
    .eoi-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .eoi-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    .careers-form-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .career-role-card {
        padding: 1.5rem;
    }
}
