/*
 * WeSparkStudio - Production Premium Stylesheet
 * Custom Dark Mode Editorial Design System
 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-color: #080808;
    --surface-color: #111111;
    --surface-alt: #161616;
    --text-color: #F5F5F5;
    --text-secondary: #9E9E9E;
    --accent-color: #FF5C00;
    --accent-hover: #FF6D1A;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    --font-heading: 'Bebas Neue', Arial, sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    
    --max-container: 1200px;
    --max-content-text: 650px;
    
    /* --- SPACING SCALE --- */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;

    --section-spacing-desktop: var(--space-96);
    --section-spacing-mobile: var(--space-64);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & ACCESSIBILITY --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Focus indicator styling for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--accent-color);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 9999;
    font-weight: bold;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin: 0 0 1rem 0;
    color: var(--text-color);
}

/* Massive Editorial Typography */
h1 {
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    letter-spacing: 0.02em;
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
}

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

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #9E9E9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- GLOBAL LAYOUT --- */
.container {
    max-width: var(--max-container);
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.section {
    padding: var(--section-spacing-desktop) 0;
    position: relative;
}

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.header--scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin-bottom: 5px;
    transition: var(--transition-fast);
}

.nav-toggle span:last-child {
    margin-bottom: 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
}

.btn--primary {
    background-color: var(--accent-color);
    color: #FFFFFF !important;
}

.btn--primary:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 92, 0, 0.15);
}

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

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--bg-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 32px 32px;
    background-position: center;
}

/* Background layers */
.hero__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.01) 0%, rgba(8, 8, 8, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.01) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.hero__container {
    max-width: var(--max-container);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.hero__title {
    font-size: clamp(2.8rem, 5.2vw, 4.2rem);
    line-height: 0.98;
    font-family: var(--font-heading);
    color: var(--text-color);
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 0.02em;
}

.hero__title-accent {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 28px 0;
    max-width: 500px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.hero__right {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* --- EDITORIAL COVERAGE WATERFALL --- */
.hero__coverage-waterfall {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.waterfall-header {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.waterfall-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waterfall-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

/* Cascading depth opacities */
.waterfall-list .waterfall-item:nth-child(1) { opacity: 1.0; }
.waterfall-list .waterfall-item:nth-child(2) { opacity: 0.85; }
.waterfall-list .waterfall-item:nth-child(3) { opacity: 0.70; }
.waterfall-list .waterfall-item:nth-child(4) { opacity: 0.55; }
.waterfall-list .waterfall-item:nth-child(5) { opacity: 0.40; }
.waterfall-list .waterfall-item:nth-child(6) { opacity: 0.25; }

.waterfall-suburb {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1;
    color: var(--text-color);
    letter-spacing: 0.03em;
}

.waterfall-badge {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.waterfall-badge.waterfall-badge--accent {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.35);
}

.hero__canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- THE VISIBILITY GAP --- */
.gap-section {
    background-color: var(--surface-color);
    border: none;
}

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

.gap-column {
    padding: 20px 0;
}

.gap-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.gap-item {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: var(--space-32);
    margin-bottom: var(--space-24);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.gap-item:last-child {
    margin-bottom: 0;
}

.gap-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gap-item--premium {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--accent-color);
    border-radius: 16px;
    padding: var(--space-32);
    margin-bottom: var(--space-24);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.gap-item--premium:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.gap-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
    display: inline-block;
}

.gap-item--premium .gap-tag {
    color: var(--accent-color);
    font-weight: 800;
}

.gap-headline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-color);
}

.gap-item--premium .gap-headline {
    font-weight: 800;
}

.gap-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.gap-item--premium .gap-desc {
    color: rgba(255, 255, 255, 0.75);
}

.gap-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.gap-item:hover .gap-icon {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.gap-item--premium .gap-icon {
    background: rgba(255, 92, 0, 0.08);
    color: var(--accent-color);
    border-color: rgba(255, 92, 0, 0.15);
}

.gap-item--premium:hover .gap-icon {
    background: rgba(255, 92, 0, 0.12);
    border-color: rgba(255, 92, 0, 0.25);
    color: #ff7224;
}

/* --- SCROLL STORYTELLING --- */
.story-section {
    position: relative;
    height: 180vh;
}

.story-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.story-left {
    max-width: 500px;
}

.story-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    letter-spacing: 0.02em;
}

.story-right {
    position: relative;
    height: 420px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 2px 20px rgba(0,0,0,0.5);
}

/* Dynamic counter and visualization styling */
.story-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 9.5rem;
    line-height: 0.9;
    color: var(--text-color);
    font-weight: 400;
}

.counter-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 8px;
}

.story-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

.story-canvas.active {
    opacity: 0.5;
}

/* --- CASE STUDY CENTERPIECE --- */
.case-section {
    overflow: hidden;
    position: relative;
}

.case-watermark {
    position: absolute;
    bottom: -60px;
    right: -25px;
    font-family: var(--font-heading);
    font-size: clamp(12rem, 28vw, 28rem);
    color: rgba(255, 92, 0, 0.025);
    line-height: 0.7;
    z-index: 1;
    pointer-events: none;
    font-weight: 900;
}

.case-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.case-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: var(--space-48);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.case-card::before {
    display: none;
}

.case-card .gap-tag {
    width: 160px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.case-header h2 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--text-color);
    margin-top: 8px;
    margin-bottom: 0;
}

.case-meta {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.metric-box {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

.metric-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- SERVICES PREVIEW --- */
.services-section {
    border: none;
}

.services-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    margin-top: 60px;
}

.service-featured {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: var(--space-48);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.service-featured h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 2.0rem;
    color: var(--text-color);
}

.service-featured:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.services-secondary {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-secondary-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0;
    padding: 24px 0 28px 0;
    transition: var(--transition-smooth);
}

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

.service-secondary-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-color);
}

.service-secondary-card:hover {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    transform: none;
}

/* --- MANIFESTO --- */
.manifesto-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(255,92,0,0.015) 0%, rgba(0,0,0,0) 70%);
}

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

.manifesto-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.35;
    color: var(--text-color);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

/* --- FINAL CTA --- */
.final-cta {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, var(--surface-alt) 0%, var(--bg-color) 100%);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.final-cta__wrapper {
    max-width: 700px;
}

/* --- ABOUT & SERVICES GENERAL PAGES --- */
.page-hero {
    padding: 150px 0 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

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

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

/* --- CONTACT ONBOARDING WIZARD --- */
.onboarding-container {
    max-width: 750px;
    margin: var(--space-48) auto var(--space-96) auto;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: var(--space-48);
    position: relative;
    overflow: hidden;
}

.onboarding-progress {
    height: 3px;
    background: var(--border-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.onboarding-progress__bar {
    height: 100%;
    background: var(--accent-color);
    width: 33.33%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.onboarding-step {
    transition: var(--transition-fast);
}

.onboarding-step.active {
    color: var(--accent-color);
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.form-step.active {
    display: block;
}

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

/* Input Fields styling */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 92, 0, 0.05);
}

/* Service Options buttons/cards grid */
.services-grid-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-select-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #141414;
    border-radius: 16px;
    padding: var(--space-24);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    user-select: none;
}

.service-select-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.service-select-card:hover {
    border-color: var(--border-hover);
}

.service-select-card.selected {
    border-color: var(--accent-color);
    background: rgba(255, 92, 0, 0.02);
}

.select-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
}

/* Range Budget Slider styling */
.budget-slider-container {
    padding: 20px 0;
}

.budget-val-display {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-top: 10px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

/* --- BLOG SYSTEM STYLE --- */
.blog-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
}

.blog-featured {
    grid-column: span 2;
    margin-bottom: 40px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.blog-featured__img {
    height: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.blog-featured__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.blog-card__content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-meta a {
    color: var(--accent-color);
}

.blog-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Sidebar elements */
.sidebar-widget {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Single Post details */
.post-container {
    max-width: 900px;
    margin: 150px auto 80px auto;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-progress-container {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 999;
}

.post-progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
}

.post-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Rich text article output formatting */
.post-rich-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.post-rich-text h2, .post-rich-text h3 {
    margin-top: 2rem;
    color: var(--text-color);
}

.post-rich-text p {
    margin-bottom: 1.5rem;
}

/* Table of contents styling */
.toc-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    position: sticky;
    top: 100px;
}

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

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.toc-list a:hover {
    color: var(--accent-color);
}

/* Related articles */
.related-section {
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    margin-top: 60px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-main-row {
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F5F5F5;
    margin-bottom: 24px;
    margin-top: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-tagline {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.footer-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.market-pills {
    display: flex;
    gap: 8px;
}

.market-pill {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 999px;
    transition: var(--transition-fast);
}

.market-pill:hover {
    background: rgba(255, 92, 0, 0.1);
    border-color: rgba(255, 92, 0, 0.25);
    color: var(--accent-color);
}

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

.footer-links li, .footer-contact-list li {
    list-style: none !important;
    list-style-type: none !important;
    margin-bottom: 14px;
}

.footer-links li:last-child, .footer-contact-list li:last-child {
    margin-bottom: 0;
}

.footer-links a,
.footer-contact-list a,
.contact-location,
.contact-serving {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Premium WhatsApp Live Status Card */
.whatsapp-status-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition-smooth);
    text-decoration: none;
    margin: 4px 0;
}

.whatsapp-status-card .status-dot {
    margin-right: 2px;
}

.whatsapp-status-card .status-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition-fast);
}

.whatsapp-status-card:hover {
    border-color: rgba(46, 204, 113, 0.35);
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.12);
    transform: translateX(2px);
}

.whatsapp-status-card:hover .status-text {
    color: #FFFFFF;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 6px #2ecc71;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #2ecc71;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.whatsapp-link .arrow {
    transition: transform 0.2s ease;
}

.whatsapp-link:hover .arrow {
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-bottom-center {
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-bottom-links {
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-block;
}

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

.footer-bottom-links .bullet {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 8px;
    display: inline-block;
}

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1.2fr 0.8fr; /* Tablet: 60% Content / 40% Visual */
        gap: 40px;
    }
    
    .hero__visual-wrapper {
        height: 480px; /* Slimmed down height for tablets */
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding-top: 110px;
        padding-bottom: 60px;
    }
    
    .hero__container {
        grid-template-columns: 1fr; /* Mobile: Stacked */
        gap: 40px;
    }
    
    .hero__left {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    
    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__ctas {
        justify-content: center;
    }
    
    .hero__right {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero__coverage-waterfall {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .waterfall-header {
        text-align: center;
        margin-bottom: 16px;
    }
    
    .waterfall-list {
        gap: 16px;
    }
    
    .waterfall-suburb {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    }
    
    .waterfall-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }

    .gap-columns, .story-grid, .case-grid, .services-layout, .grid-about, .blog-layout, .post-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    /* Footer grid remains 4 columns down to 768px */
    
    .story-section {
        height: auto;
    }
    
    .story-pin {
        position: relative;
        height: auto;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In production: can toggle open via JS drawer classes */
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero__ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__ctas .btn {
        width: 100%;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .onboarding-container {
        padding: 30px 20px;
    }
    
    .case-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    /* Bootstrap 5 handles footer responsive layout natively */
}
