        :root {
            --primary-bg: #FAFAF7;
            --alt-bg: #F0F4EE;
            --accent: #2D5016;
            --accent-hover: #3D6B1E;
            --headings: #1C1C1A;
            --body-text: #3A3A37;
            --muted: #7A7A72;
            --border: #E5E3DC;
            --hero-overlay: rgba(50, 40, 30, 0.60);
            --footer-bg: #0f172a;

            --font-head: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

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

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

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-head);
            color: var(--headings);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1rem;
            border: 2px solid transparent;
        }

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

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

        .btn-outline-white {
            background-color: transparent;
            color: white;
            border-color: white;
        }

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

        .section-padding {
            padding: 5rem 0;
        }

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

        .section-header {
            max-width: 600px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .section-header h2 {
            font-size: 2.5rem;
        }

        /* Section 1: Sticky Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
            border-bottom: 1px solid var(--border);
        }

        .navbar.scrolled {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

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

        .logo {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-family: var(--font-head);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--headings);
            line-height: 1.1;
        }

        .logo-tagline {
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--headings);
            transition: color 0.3s;
        }

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

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-phone {
            font-weight: 600;
            color: var(--headings);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--headings);
        }

        /* Section 2: Hero */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url('Herobackgroundimagefinal.png');
            background-size: cover;
            background-position: center;
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: var(--hero-overlay);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.95);
            color: #1C1C1A;
            padding: 0.45rem 1.1rem;
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .trust-badge .stars {
            color: #f59e0b;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .trust-badge:hover {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #4ade80;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
            }
        }

        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .trust-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .trust-pill {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-pill::before {
            content: '✓';
            color: #4ade80;
            font-weight: bold;
        }

        /* Section 3: Stats Bar */
        .stats-section {
            background-color: var(--accent);
            color: white;
            padding: 3rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            color: white;
            font-family: var(--font-body);
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Section 4: Services */
        .services-section {
            background-color: var(--primary-bg);
        }

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

        .service-card {
            background: white;
            border: 1px solid var(--border);
            padding: 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: var(--accent);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background-color: var(--alt-bg);
            color: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-family: var(--font-head);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .service-link {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-link::after {
            content: '→';
            transition: transform 0.2s;
        }

        .service-card:hover .service-link::after {
            transform: translateX(4px);
        }

        /* Section 5: Equipment */
        .equipment-section {
            background-color: var(--alt-bg);
        }

        .equipment-featured {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .equipment-featured-img {
            position: relative;
            min-height: 400px;
        }

        .equipment-featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .origin-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--headings);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .equipment-featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .equipment-featured-content h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .equipment-tagline {
            color: var(--accent);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .equipment-featured-desc {
            color: var(--body-text);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .spec-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .spec-tag {
            background: var(--alt-bg);
            color: var(--body-text);
            padding: 0.35rem 0.75rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .equipment-benefit {
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--headings);
        }

        /* Section 6: Before and After */
        .before-after-section {
            background-color: var(--primary-bg);
        }

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

        .ba-slider-container {
            position: relative;
            width: 100%;
            height: 300px;
            background: #eee;
            border-radius: 8px;
            overflow: hidden;
            user-select: none;
            touch-action: pan-y;
        }

        .ba-caption {
            text-align: center;
            margin-top: 0.75rem;
            font-weight: 600;
            font-size: 1rem;
            color: var(--headings);
        }

        .ba-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .ba-after {
            z-index: 1;
        }

        .ba-before {
            z-index: 2;
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
        }

        .ba-label {
            position: absolute;
            top: 1rem;
            background: rgba(28, 28, 26, 0.7);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 3;
            backdrop-filter: blur(4px);
        }

        .ba-label.before {
            left: 1rem;
        }

        .ba-label.after {
            right: 1rem;
        }

        .ba-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: white;
            z-index: 4;
            transform: translateX(-50%);
            cursor: ew-resize;
        }

        .ba-handle-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            color: var(--accent);
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .ba-slider-container:active .ba-handle-btn {
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Section 7: How It Works */
        .steps-section {
            background-color: var(--alt-bg);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .step-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: var(--font-head);
            margin: 0 auto 1.5rem;
            border: 4px solid var(--alt-bg);
            box-shadow: 0 0 0 2px var(--accent);
        }

        .step-item h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .steps-connector {
            position: absolute;
            top: 30px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: var(--accent);
            z-index: 0;
            opacity: 0.3;
        }

        /* Section 8: Areas We Serve */
        .areas-section {
            background-color: var(--accent);
            color: white;
        }

        .areas-section .section-header h2 {
            color: white;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .area-pill {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.75rem 1rem;
            border-radius: 4px;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s;
        }

        .area-pill:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .areas-note {
            text-align: center;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Section 9: Testimonials */
        .testimonials-section {
            background-color: var(--primary-bg);
        }

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

        .review-card {
            background: white;
            border: 1px solid var(--border);
            padding: 2rem;
            border-radius: 8px;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .review-quote {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--body-text);
            margin-bottom: 1.5rem;
        }

        .reviewer-info h4 {
            margin: 0;
            font-size: 1rem;
        }

        .reviewer-info p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--muted);
        }

        /* Section 10: Contact */
        .contact-section {
            background-color: var(--alt-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .contact-detail h4 {
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .contact-detail p {
            color: var(--muted);
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--body-text);
            background: var(--primary-bg);
            transition: border-color 0.3s;
        }

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

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

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

        /* Section 11: CTA Banner */
        .cta-section {
            background: linear-gradient(135deg, var(--accent) 0%, #1a300d 100%);
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* Section 12: Footer */
        .footer {
            background-color: var(--footer-bg);
            color: #94a3b8;
            padding: 5rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            color: white;
            font-family: var(--font-body);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            font-family: var(--font-head);
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-tagline {
            color: #cbd5e1;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

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

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

        @media (max-width: 768px) {

            .nav-links,
            .nav-phone {
                display: none;
            }

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

            .hero {
                padding-bottom: 80px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .stats-section {
                padding-top: 6rem;
            }

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

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

            .equipment-featured {
                grid-template-columns: 1fr;
            }

            .equipment-featured-img {
                min-height: 250px;
            }

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

            .ba-slider-container {
                height: 220px;
            }

            .steps-connector {
                display: none;
            }

            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

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

            .cta-section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container .btn {
                display: none;
            }

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

            .cta-btns {
                flex-direction: column;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

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


        /* Service Hero Split Layout */
        .service-hero {
            background-color: #FAFAF7;
            padding: 140px 0 80px;
        }

        .service-hero-inner {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .service-hero-left {
            flex: 1;
        }

        .service-hero-left h1 {
            font-family: 'Playfair Display', serif;
            color: #1C1C1A;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .service-hero-trust {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            border: 1px solid #E5E3DC;
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .service-hero-stars {
            color: #C5A059;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .service-hero-trust-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #3A3A37;
        }

        .service-hero-cta {
            display: inline-block;
            background-color: #2d5a27;
            color: white;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .service-hero-cta:hover {
            background-color: #1e3d1a;
        }

        .service-hero-right {
            flex: 1;
        }

        .service-hero-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: block;
            object-fit: cover;
        }

        /* Premium Suburb Services Grid */
        .suburb-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .suburb-service-card {
            background: white;
            border: 1px solid #E5E3DC;
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .suburb-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .suburb-service-icon {
            width: 56px;
            height: 56px;
            background: rgba(45, 90, 39, 0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .suburb-service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: #1C1C1A;
            margin-bottom: 0.75rem;
        }

        .suburb-service-card p {
            color: #7A7A72;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .suburb-service-link {
            color: #C5A059;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .suburb-service-link::after {
            content: '\2192';
            /* Right arrow */
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .suburb-service-card:hover .suburb-service-link {
            color: #2d5a27;
        }

        .suburb-service-card:hover .suburb-service-link::after {
            transform: translateX(4px);
        }

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

        @media (max-width: 768px) {
            .service-hero-inner {
                flex-direction: column;
                text-align: center;
                gap: 2.5rem;
            }

            .service-hero-right {
                order: 2;
                width: 100%;
            }

            .service-hero-left {
                order: 1;
            }

            .service-hero-left h1 {
                font-size: 2.5rem;
            }

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


        /* Photo Header Card Styles */
        .service-card {
            padding: 0 !important;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-card-header-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .service-card-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .suburb-service-card {
            padding: 0 !important;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .suburb-service-header-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .suburb-service-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }


        /* ==========================================================================
   Premium Interactive Animations (The "Juice")
   ========================================================================== */

        /* Global Transition Settings for silky smooth rendering */
        .service-card,
        .suburb-service-card,
        .service-card-header-img,
        .suburb-service-header-img,
        .equipment-featured-img img,
        .ba-slider-container,
        .step-number,
        .area-pill,
        .review-card,
        .contact-detail,
        .contact-icon,
        .contact-text {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* 1. Services Grid */
        .service-card:hover,
        .suburb-service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(45, 90, 39, 0.12);
            /* Soft forest green shadow */
        }

        .service-card:hover .service-card-header-img,
        .suburb-service-card:hover .suburb-service-header-img {
            transform: scale(1.05);
            /* Gentle zoom */
        }

        /* 2. Truck-Mounted System Image */
        .equipment-featured:hover .equipment-featured-img img {
            transform: scale(1.03);
        }

        /* 3. Before/After Slider */
        .ba-slider-container:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(45, 90, 39, 0.2);
        }

        /* 4. How It Works Steps (Neon Green Glow) */
        .step-item:hover .step-number {
            transform: scale(1.15);
            /* The neon glow using the brand's green */
            box-shadow: 0 0 20px 5px rgba(45, 90, 39, 0.4), 0 0 0 2px var(--accent);
        }

        /* 5. Areas We Serve (Suburbs) */
        .area-pill:hover {
            transform: scale(1.08);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.25);
        }

        /* 6. Review Cards */
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        /* 7. Contact Section Icons (Zoom & Slide) */
        .contact-detail {
            cursor: pointer;
            border-radius: 8px;
            padding: 0.5rem;
            margin-left: -0.5rem;
            /* Offsets padding to align text */
        }

        .contact-detail:hover .contact-icon {
            transform: scale(1.2);
        }

        .contact-detail:hover .contact-text {
            transform: translateX(8px);
        }

        /* ==========================================================================
   Premium Interactive Animations & Hover States
   ========================================================================== */

        /* Global Transition Settings for buttery smooth rendering */
        .service-card,
        .suburb-service-card,
        .service-card-header-img,
        .suburb-service-header-img,
        .equipment-featured-img img,
        .ba-slider-container,
        .step-number,
        .steps-connector,
        .area-pill,
        .review-card,
        .contact-detail,
        .contact-icon,
        .contact-text {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* 1. Services Grid Cards */
        .service-card:hover,
        .suburb-service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(45, 90, 39, 0.12);
        }

        .service-card:hover .service-card-header-img,
        .suburb-service-card:hover .suburb-service-header-img {
            transform: scale(1.05);
        }

        /* 2. Truck-Mounted System Image */
        .equipment-featured:hover .equipment-featured-img img {
            transform: scale(1.03);
        }

        /* 3. Before/After Slider */
        .ba-slider-container:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(45, 90, 39, 0.2);
        }

        /* 4. How It Works - The Neon Line & Glow */
        /* Lights up the connecting line like a neon laser when hovering the section */
        .steps-container:hover .steps-connector {
            opacity: 1;
            background: #4ade80;
            /* Bright Neon Green */
            box-shadow: 0 0 15px #4ade80;
            transition: all 0.4s ease-in-out;
        }

        /* Pops the individual circle and makes it glow neon green on hover */
        .step-item:hover .step-number {
            transform: scale(1.2);
            background: #4ade80;
            border-color: #4ade80;
            color: #1C1C1A;
            box-shadow: 0 0 20px 5px rgba(74, 222, 128, 0.6);
        }

        /* 5. Areas We Serve (Suburbs Grid) */
        .area-pill:hover {
            transform: scale(1.08);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.25);
        }

        /* 6. Review Cards */
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        /* 7. Contact Section Icons */
        .contact-detail {
            cursor: pointer;
            border-radius: 8px;
            padding: 0.5rem;
            margin-left: -0.5rem;
        }

        .contact-detail:hover .contact-icon {
            transform: scale(1.2);
        }

        .contact-detail:hover .contact-text {
            transform: translateX(8px);
        }

        .contact-pill {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #F5B700;
            /* yellow/gold */
            color: #1C1C1A;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.9rem 1rem;
            font-weight: 600;
            z-index: 9998;
            text-decoration: none;
        }

        .wa-bubble {
            position: absolute;
            right: 65px;
            bottom: 10px;
            background: white;
            color: #1C1C1A;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.85rem;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(5px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            pointer-events: none;
        }

        .wa-bubble.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Push WhatsApp button up so it doesn't collide with the pill */
        .floating-widgets {
            bottom: 80px !important;
        }