/* SEO in Sydney: Editorial Design System (Balmain)
   DM Sans + Instrument Serif · Green #1B5E3B · 760px Container */

:root {
    --primary: #1B5E3B;
    --primary-dark: #144a2e;
    --primary-light: #2d7a4f;
    --accent: #1B5E3B;
    --accent-light: #E8F0EB;
    --text-primary: #111111;
    --text-secondary: #6B6B6B;
    --text-tertiary: #888888;
    --background: #FAFAF7;
    --background-dark: #111111;
    --white: #ffffff;
    --gray: #F5F3EF;
    --gray-light: #FAFAF7;
    --border: #E2E0DB;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --transition: all 0.2s ease;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-text: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-text);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 16px;
}

h3 {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 8px;
}

h4 {
    font-family: var(--font-text);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 8px;
}

p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-text);
    text-decoration: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white) !important;
}

.btn-primary i {
    color: var(--white) !important;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    border-color: var(--primary);
    color: var(--primary);
}

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

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

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.nav {
    background-color: rgba(250, 250, 247, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav .container {
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown Navigation */
.nav-links .has-dropdown {
    position: relative;
}

.nav-links .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 4px;
}

.nav-links .has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-secondary);
    transition: var(--transition);
}

.nav-links .has-dropdown:hover > a::after {
    border-top-color: var(--primary);
    transform: rotate(180deg);
}

.nav-links .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    margin: 0;
    z-index: 1001;
}

.nav-links .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown li {
    margin: 0;
}

.nav-links .dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links .dropdown a:hover {
    background-color: var(--accent-light);
    color: var(--primary);
}

.nav-cta {
    font-size: 14px;
    padding: 10px 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    padding: 20px 24px;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 15px;
    padding: 8px 0;
    text-decoration: none;
    color: var(--text-primary);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu .btn-primary {
    color: #ffffff !important;
    margin-top: 8px;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-menu-section strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    margin-top: 4px;
}

.mobile-menu-section a {
    font-size: 15px;
    padding: 6px 0;
    color: var(--text-secondary);
}

.mobile-menu-section a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 48px 0;
    background-color: var(--background);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.hero-text {
    max-width: 760px;
}

.hero h1 {
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
    max-width: 640px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary);
}

.hero-ctas {
    display: flex;
    gap: 12px;
}

.hero-image {
    display: none;
}

/* Service/Page Hero */
.service-hero .hero-content,
.page-hero .hero-content,
.suburb-hero .hero-content {
    grid-template-columns: 1fr;
}

.service-hero .hero-text,
.page-hero .hero-text,
.suburb-hero .hero-text {
    max-width: 760px;
}

.suburb-hero .hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.suburb-hero .hero-note {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.service-hero .hero-ctas,
.page-hero .hero-ctas,
.suburb-hero .hero-ctas {
    justify-content: flex-start;
}

/* Content Sections */
.content-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

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

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

.content-block h2 {
    margin-bottom: 16px;
}

.content-block h3 {
    margin-top: 28px;
}

.content-block p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 17px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.content-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Section Header */
.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    margin-bottom: 8px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
}

/* Services Grid */
.services {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

a.service-card {
    color: inherit;
}

.service-card:hover {
    box-shadow: var(--shadow);
}

a.service-card:hover {
    color: inherit;
}

.service-icon {
    width: 44px;
    height: 44px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon i {
    font-size: 20px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Process Section */
.process {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--accent-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-icon {
    display: none;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-arrow {
    display: none;
}

/* Pricing Section */
.pricing {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.pricing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.pricing-block {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.pricing-block h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-note {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Suburb Links */
.suburb-links {
    margin: 20px 0;
}

.suburb-links p {
    font-size: 16px;
    line-height: 2;
}

.suburb-links a {
    color: var(--primary);
}

.suburb-links a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: var(--font-text);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 56px 0;
    background: var(--primary);
    border-top: none;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cta-link {
    color: var(--white);
    text-decoration: underline;
}

.cta-link:hover {
    color: var(--white);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-methods {
    margin-top: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: var(--primary);
}

.contact-detail h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-detail p {
    margin: 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: var(--font-text);
    background-color: var(--background);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Legal Content */
.legal-content h2 {
    margin-top: 40px;
    font-size: 24px;
}

.legal-content h3 {
    margin-top: 24px;
    font-size: 18px;
}

.legal-content ul {
    padding-left: 24px;
    margin: 16px 0;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Error Page */
.error-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 100px;
    color: var(--primary);
    margin-bottom: 0;
}

.error-subtitle {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.error-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
}

.error-links {
    margin-top: 40px;
}

.error-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.error-links li a {
    color: var(--primary);
}

/* Compact Hero (Blog & Service Pages) */
.hero-compact {
    padding: 40px 0;
}

.hero-compact .hero-content {
    grid-template-columns: 1fr;
}

.hero-compact .hero-text {
    max-width: 760px;
    margin: 0 auto;
}

.hero-compact .hero-subtitle {
    max-width: 640px;
    font-size: 17px;
}

/* Blog List */
.blog-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow);
}

.blog-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.blog-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-read-more {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* Blog Article Content */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
}

.blog-article h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 26px;
}

.blog-article h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.blog-article p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.blog-article ul,
.blog-article ol {
    margin: 16px 0 20px 20px;
    color: var(--text-secondary);
}

.blog-article li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.blog-article strong {
    color: var(--text-primary);
}

.blog-article a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-article a:hover {
    color: var(--primary-dark);
}

/* Page Updated Line */
.page-updated {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.page-updated p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Footer */
.footer {
    padding: 48px 0 0;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

.footer .container {
    max-width: 1080px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    font-size: 15px;
    margin: 12px 0 0;
    max-width: 260px;
    color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* =============================================
   Balmain Page: Now uses global styles
   (bal- classes retained for Balmain-specific components)
   ============================================= */

.bal-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.bal-breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    padding-top: 24px;
    letter-spacing: 0.3px;
}

.bal-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.bal-breadcrumb a:hover {
    color: var(--primary);
}

.bal-hero {
    padding: 40px 0 48px;
}

.bal-hero-lede {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    max-width: 640px;
}

.bal-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.bal-stat-item {
    display: flex;
    flex-direction: column;
}

.bal-stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    line-height: 1.1;
}

.bal-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    letter-spacing: 0.2px;
}

.bal-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.bal-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bal-section h3 {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 28px;
}

.bal-section p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 17px;
}

.bal-section p:last-child {
    margin-bottom: 0;
}

.bal-section a {
    color: var(--primary);
}

.bal-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.bal-service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    background: var(--white);
}

.bal-service-card h3 {
    margin-top: 0;
    font-size: 15px;
    font-weight: 600;
}

.bal-service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bal-testimonial {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.bal-testimonial blockquote {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--white);
}

.bal-testimonial cite {
    font-style: normal;
    font-size: 14px;
    opacity: 0.8;
    color: var(--white);
}

.bal-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

.bal-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.bal-step-content h3 {
    margin-top: 0;
    margin-bottom: 4px;
}

.bal-step-content p {
    font-size: 15px;
    color: var(--text-secondary);
}

.bal-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.bal-faq-item:last-child {
    border-bottom: none;
}

.bal-faq-q {
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 0;
    color: var(--text-primary);
}

.bal-faq-a {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.bal-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.bal-area-tag {
    background: var(--accent-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}

a.bal-area-tag:hover {
    background: #d0e4d7;
    color: var(--primary);
}

.bal-cta-section {
    text-align: center;
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.bal-cta-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
}

.bal-cta-section p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.bal-cta-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.2px;
    transition: background 0.2s;
}

.bal-cta-btn:hover {
    background: var(--primary-dark);
    color: #fff !important;
}

.bal-cta-sub {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* =============================================
   Bondi Page (Custom Layout)
   ============================================= */
.bondi-page {
    --bondi-primary: var(--text-primary);
    --bondi-accent: var(--primary);
    --bondi-accent-hover: var(--primary-dark);
    --bondi-green: var(--primary);
    --bondi-text: var(--text-primary);
    --bondi-muted: var(--text-secondary);
    --bondi-light: var(--background);
    --bondi-border: var(--border);
    --bondi-white: var(--white);
}

.bondi-page .btn-primary,
.bondi-page .btn-primary:visited,
.bondi-page .btn-primary i {
    color: #ffffff !important;
}

.bondi-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.bondi-bc {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.bondi-bc a {
    color: var(--text-secondary);
}

.bondi-bc a:hover {
    color: var(--primary);
}

.bondi-hero {
    background: linear-gradient(135deg, #0b1324, #1f2937);
    color: var(--white);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.bondi-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 94, 59, 0.15), transparent 70%);
    border-radius: 50%;
}

.bondi-hero .bondi-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.bondi-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bondi-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--white);
}

.bondi-hero h1 span {
    color: #81c995;
}

.bondi-hero .bondi-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.7;
}

.bondi-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.bondi-hero-checks span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bondi-hero-checks .bondi-ck {
    color: #81c995;
    font-weight: 700;
}

.bondi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.bondi-btn-primary {
    background: var(--primary);
    color: var(--white) !important;
}

.bondi-btn-primary:hover {
    background: var(--primary-dark);
    text-decoration: none;
    color: var(--white) !important;
}

.bondi-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bondi-btn-ghost:hover {
    border-color: var(--primary);
    color: #81c995;
    text-decoration: none;
}

.bondi-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bondi-phone {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.bondi-phone a {
    color: #81c995;
    font-weight: 600;
}

.bondi-phone a:hover {
    color: #b5e2c2;
}

.bondi-hf {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    color: var(--text-primary);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.bondi-hf h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.bondi-hf .bondi-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.bondi-fg {
    margin-bottom: 12px;
}

.bondi-fg label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
}

.bondi-fg input,
.bondi-fg textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-text);
    background: var(--background);
}

.bondi-fg input:focus,
.bondi-fg textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.bondi-fg textarea {
    resize: vertical;
    min-height: 60px;
}

.bondi-btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-text);
}

.bondi-btn-submit:hover {
    background: var(--primary-dark);
}

.bondi-hf-note {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 8px;
}

.bondi-sec {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.bondi-sec-alt {
    background: var(--background);
}

.bondi-sec h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.bondi-sec h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 6px;
}

.bondi-sec p {
    margin-bottom: 14px;
    color: var(--text-secondary);
}

.bondi-sec ul,
.bondi-sec ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.bondi-sec li {
    margin-bottom: 6px;
}

.bondi-sg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.bondi-sc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: box-shadow 0.2s;
}

.bondi-sc:hover {
    box-shadow: var(--shadow);
}

.bondi-sc .bondi-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.bondi-sc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.bondi-sc p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.bondi-pg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.bondi-pc {
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--white);
}

.bondi-pc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.bondi-pc p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
}

.bondi-wu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.bondi-wc {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.bondi-wc .bondi-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.bondi-wc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.bondi-wc p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.bondi-tg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.bondi-tc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
}

.bondi-tc .bondi-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bondi-tc blockquote {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.65;
    margin: 0 0 12px;
    font-style: normal;
}

.bondi-tc .bondi-attr {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.bondi-tc .bondi-attr span {
    font-weight: 400;
}

.bondi-cs {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin: 24px 0;
}

.bondi-cs-stats {
    display: flex;
    gap: 32px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.bondi-cs-stat .bondi-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.bondi-cs-stat .bondi-lbl {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bondi-team-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    margin: 20px 0;
}

.bondi-team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
}

.bondi-team-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.bondi-team-info p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

.bondi-price-anchor {
    background: var(--accent-light);
    border: 1px solid #c5dccb;
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bondi-price-anchor .bondi-from {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.bondi-price-anchor .bondi-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.bondi-price-anchor .bondi-per {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.bondi-price-anchor .bondi-note {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: auto;
}

.bondi-ind {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.bondi-ind span {
    background: var(--background);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
}

.bondi-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
    list-style: none;
    padding: 0;
}

.bondi-area-tags li {
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.bondi-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.bondi-faq-item:last-child {
    border: none;
}

.bondi-faq-q {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bondi-faq-q::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.bondi-faq-item.open .bondi-faq-q::after {
    transform: rotate(45deg);
}

.bondi-faq-a {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.bondi-faq-item.open .bondi-faq-a {
    max-height: 300px;
    padding-top: 10px;
}

.bondi-bottom-cta {
    background: var(--primary);
    color: var(--white);
    padding: 56px 0;
    text-align: center;
}

.bondi-bottom-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white);
}

.bondi-bottom-cta p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    font-size: 16px;
}

.bondi-footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
}

.bondi-footer a {
    color: var(--text-secondary);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 24px 0 0;
    letter-spacing: 0.3px;
}

.breadcrumb .container {
    max-width: 760px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    letter-spacing: 0.2px;
}

/* Service Grid (suburb template) */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

/* Step Number (suburb template) */
.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Static FAQ Items (non-accordion) */
.faq-item-static {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item-static:last-child {
    border-bottom: none;
}

.faq-item-static h3 {
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 0;
    color: var(--text-primary);
}

.faq-item-static p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Area Tags (nearby suburbs) */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.area-tag {
    background: var(--accent-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}

a.area-tag:hover {
    background: #d0e4d7;
    color: var(--primary);
}

/* CTA Sub Text */
.cta-sub {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonial Section */
.testimonial-block {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.testimonial-block blockquote {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--white);
}

.testimonial-block cite {
    font-style: normal;
    font-size: 14px;
    opacity: 0.8;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu .btn,
    .mobile-menu .btn-primary {
        color: #ffffff !important;
        background-color: var(--primary);
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .error-content h1 {
        font-size: 80px;
    }

    .error-ctas {
        flex-direction: column;
    }

    .error-links ul {
        flex-direction: column;
        gap: 12px;
    }

    /* Bondi responsive */
    .bondi-hero .bondi-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bondi-sg {
        grid-template-columns: 1fr;
    }

    .bondi-pg {
        grid-template-columns: 1fr;
    }

    .bondi-wu {
        grid-template-columns: 1fr;
    }

    .bondi-tg {
        grid-template-columns: 1fr;
    }

    /* Suburb template responsive */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    /* Balmain responsive */
    .bal-service-grid {
        grid-template-columns: 1fr;
    }

    .bal-hero-stats {
        gap: 24px;
    }

    /* Mobile typography for suburb pages */
    .content-block h2 {
        font-size: 24px;
    }

    .content-block h3 {
        font-size: 15px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .process-step h3,
    .step-content h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .logo img {
        height: 36px;
    }
}
