/* ===================================
   WEBSITED - ULTRA MODERN DESIGN 2025
   Fresh, Bold, Unique
   =================================== */

:root {
    /* Bold Modern Color Palette */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #A855F7 50%, #EC4899 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-glow: linear-gradient(135deg, #22D3EE 0%, #6366F1 50%, #A855F7 100%);
    
    --bg-primary: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-section: #F8FAFC;
    
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-light: #FFFFFF;
    
    --accent-indigo: #6366F1;
    --accent-pink: #EC4899;
    --accent-purple: #A855F7;
    --accent-cyan: #22D3EE;
    --accent-emerald: #10B981;
    
    /* Modern Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Typography */
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Modern Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   MODERN HEADER
   =================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav {
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    stroke: var(--accent-indigo);
    stroke-width: 2.5;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
}

.nav-links a {
    padding: var(--space-xs) var(--space-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-indigo);
}

.nav-cta .btn-primary {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO - ULTRA MODERN GRADIENT
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-darker);
    background-image: url('../images/websited_3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-indigo);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ===================================
   MODERN FORM SECTION
   =================================== */
.quote-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-section);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: start;
}

.quote-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.quote-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.quote-feature svg {
    flex-shrink: 0;
    stroke: var(--accent-emerald);
    stroke-width: 3;
}

.quote-feature span {
    font-weight: 600;
    color: var(--text-primary);
}

.quote-form-container {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: white;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-indigo);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-status {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border: 2px solid var(--accent-emerald);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 2px solid #EF4444;
}

/* ===================================
   SERVICES - MODERN GRID
   =================================== */
.services {
    padding: var(--space-4xl) 0;
    background: white;
}

.services h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    padding: var(--space-2xl);
    background: white;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(99, 102, 241, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

/* ===================================
   WHY CHOOSE US - FEATURE CARDS
   =================================== */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--bg-darker);
    color: white;
}

.how-it-works h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: white;
}

.how-it-works .section-intro {
    color: rgba(255, 255, 255, 0.7);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.step-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-glow);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: white;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.when-you-need {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.when-you-need h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: white;
}

.when-you-need ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.when-you-need li {
    padding: var(--space-md) 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding-left 0.2s ease;
}

.when-you-need li:hover {
    padding-left: var(--space-md);
}

.when-you-need li:last-child {
    border-bottom: none;
}

.note {
    background: rgba(99, 102, 241, 0.1);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-indigo);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* ===================================
   PROCESS - MODERN TIMELINE
   =================================== */
.service-areas {
    padding: var(--space-4xl) 0;
    background: white;
}

.service-areas h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.suburb {
    padding: var(--space-lg);
    background: var(--bg-section);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.suburb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.suburb:hover::before {
    opacity: 0.1;
}

.suburb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-indigo);
    box-shadow: var(--shadow-card);
}

.suburbs-footer {
    background: var(--bg-section);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.suburbs-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.suburbs-footer strong {
    color: var(--text-primary);
    font-weight: 800;
}

.phone-link {
    color: var(--accent-indigo);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--accent-purple);
}

/* ===================================
   TESTIMONIALS - MODERN CARDS
   =================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--bg-section);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.testimonials-header .stars {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.testimonials-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--space-lg);
    font-size: 6rem;
    color: var(--accent-indigo);
    opacity: 0.1;
    font-weight: 900;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-card .stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

/* ===================================
   CTA SECTION - BOLD GRADIENT
   =================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.cta-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.cta-section .cta-buttons {
    position: relative;
    z-index: 1;
}

/* ===================================
   CONTACT - SPLIT LAYOUT
   =================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: white;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-card);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.business-hours {
    padding: var(--space-lg);
    background: var(--bg-section);
    border-radius: var(--radius-lg);
}

.business-hours strong {
    display: block;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.business-hours p {
    margin: 8px 0;
}

.contact-cta {
    padding: var(--space-2xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-glow);
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.contact-cta .btn-primary {
    background: white;
    color: var(--accent-indigo);
}

.contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* ===================================
   FOOTER - MODERN DARK
   =================================== */
footer {
    background: var(--bg-darker);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-indigo);
}

.footer-logo {
    stroke: var(--accent-indigo);
    margin-bottom: var(--space-md);
}

.footer-link {
    color: var(--accent-indigo);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent-purple);
}

.trading-info {
    margin-top: var(--space-md);
}

.footer-hours strong {
    display: block;
    color: white;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 800px;
    margin: var(--space-md) auto 0;
}

/* ===================================
   AI CHAT WIDGET - MODERN FLOATING
   =================================== */
.ai-chat-widget {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-icon::before {
    content: '💬';
    font-size: 1.8rem;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 550px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card-hover);
    border: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

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

.chat-window.hidden {
    display: none;
}

.chat-header {
    padding: var(--space-lg);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: var(--space-lg);
    overflow-y: auto;
    background: var(--bg-section);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    scroll-behavior: smooth;
}

.chat-message {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    max-width: 85%;
    animation: fadeIn 0.3s ease;
    /* Optimize rendering performance */
    contain: layout style;
    /* Prevent layout shifts */
    overflow-wrap: break-word;
    word-break: break-word;
}

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

.chat-message.user {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background: white;
    color: var(--text-primary);
    align-self: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 4px;
    line-height: 1.6;
}

/* Chat message content formatting */
.chat-message.ai h1,
.chat-message.ai h2,
.chat-message.ai h3,
.chat-message.ai h4 {
    margin: 1em 0 0.6em 0;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
    /* Prevent flashing during updates */
    transition: none;
}

.chat-message.ai h1:first-child,
.chat-message.ai h2:first-child,
.chat-message.ai h3:first-child,
.chat-message.ai h4:first-child {
    margin-top: 0;
}

.chat-message.ai h1 { font-size: 1.4rem; }
.chat-message.ai h2 { font-size: 1.3rem; }
.chat-message.ai h3 {
    font-size: 1.15rem;
    color: var(--accent-indigo);
}
.chat-message.ai h4 {
    font-size: 1rem;
    font-weight: 700;
}

.chat-message.ai ul {
    margin: 0.8em 0;
    padding-left: 0;
    list-style: none;
}

.chat-message.ai li {
    margin: 0.5em 0;
    line-height: 1.75;
    padding-left: 1.3em;
    position: relative;
}

.chat-message.ai li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-indigo);
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.75;
}

.chat-message.ai strong {
    font-weight: 700;
    color: var(--text-primary);
}

.chat-message.ai em {
    font-style: italic;
    color: var(--text-secondary);
}

.chat-message.ai .emoji {
    font-size: 1.15em;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin: 0;
}

.chat-message.ai br {
    display: block;
    content: '';
    margin: 0;
    line-height: 1.2em;
}

/* Better spacing between elements */

/* Override heading bottom margin when followed by block elements */
.chat-message.ai h1 + ul,
.chat-message.ai h2 + ul,
.chat-message.ai h3 + ul,
.chat-message.ai h4 + ul {
    margin-top: 0.6em;
}

/* Paragraph after heading */
.chat-message.ai h1 + p,
.chat-message.ai h2 + p,
.chat-message.ai h3 + p,
.chat-message.ai h4 + p {
    margin-top: 0.6em;
}

/* Space between lists and paragraphs */
.chat-message.ai ul + p,
.chat-message.ai p + ul {
    margin-top: 0.7em;
}

/* Heading after list or paragraph - SECTION BREAKS */
.chat-message.ai ul + h1,
.chat-message.ai ul + h2,
.chat-message.ai ul + h3,
.chat-message.ai ul + h4,
.chat-message.ai p + h1,
.chat-message.ai p + h2,
.chat-message.ai p + h3,
.chat-message.ai p + h4 {
    margin-top: 1.5em;
}

/* Prevent br from adding space before/after block elements */
.chat-message.ai br + ul,
.chat-message.ai br + h1,
.chat-message.ai br + h2,
.chat-message.ai br + h3,
.chat-message.ai br + h4 {
    margin-top: 0;
}

.chat-message.ai ul + br,
.chat-message.ai h1 + br,
.chat-message.ai h2 + br,
.chat-message.ai h3 + br,
.chat-message.ai h4 + br {
    display: none;
}

/* Paragraph elements */
.chat-message.ai p {
    margin: 0.6em 0;
    line-height: 1.75;
}

.chat-message.ai p:first-child {
    margin-top: 0;
}

.chat-message.ai p:last-child {
    margin-bottom: 0;
}

/* Remove spacing from empty paragraphs */
.chat-message.ai p:empty {
    display: none;
}

.chat-message.typing {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-self: flex-start;
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--accent-indigo);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chat-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-sm);
}

.suggestion-btn {
    padding: 10px 14px;
    background: white;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-indigo);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.suggestion-btn:hover {
    background: var(--accent-indigo);
    color: white;
    border-color: var(--accent-indigo);
}

.chat-form {
    padding: var(--space-md);
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 8px;
}

.chat-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
}

.chat-form input:focus {
    outline: none;
    border-color: var(--accent-indigo);
}

.chat-form button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .quote-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
        --space-4xl: 5rem;
    }

    .hero {
        min-height: auto;
        padding: var(--space-4xl) 0;
        background-attachment: scroll;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .suburbs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        right: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

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

.btn-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
