        :root {
            --primary: #1F3F6D; /* Deeper, richer navy blue */
            --accent: #1F3F6D; /* Vibrant orange/gold */
            --accent-hover: #1A355A;
            --warm: #E58D1D;
            --text: #2c3e50;
            --text-light: #5a6c7d;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--white);
        }

        /* ── Navigation ── */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 1px 10px rgba(0,0,0,0.06);
        }

        .nav-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

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

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .nav-links-contact {
            background: var(--accent);
            color: var(--white) !important;
            padding: 8px 16px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-links-contact:hover {
            background: var(--accent-hover);
        }

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

        /* ── Hero ── */
        .hero {
            padding: 140px 24px 80px;
            background: linear-gradient(135deg, #f8f9fa 0%, #E58D1D 100%);
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 18px;
            line-height: 1.2;
        }

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

        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 620px;
            margin: 0 auto 32px;
        }

        .hero-cta {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .hero-phone {
            display: block;
            margin-top: 16px;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .hero-suburbs {
            margin-top: 28px;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .trust-signals {
            margin: 20px auto 30px;
            max-width: 600px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 30px;
            color: var(--primary);
            font-weight: 600;
            font-size: 1.05rem;
        }

        .trust-signals p {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* ── Sections ── */
        section {
            padding: 80px 24px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 12px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            max-width: 560px;
            margin: 0 auto 48px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* ── About ── */
        .about {
            background: var(--warm);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
            align-items: center;
        }

        .about-photo {
            width: 100%;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            object-fit: cover;
            aspect-ratio: 3/4;
        }

        .about-text h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 14px;
            color: var(--text-light);
        }

        /* ── Services ── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }

        .service-card {
            background: var(--white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent);
            transition: transform 0.2s, box-shadow 0.2s;
        }

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

        .service-icon {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

        .service-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ── Why Choose Us ── */
        .why {
            background: var(--primary);
            color: var(--white);
        }

        .why .section-title {
            color: var(--white);
        }

        .why .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
        }

        .why-item {
            text-align: center;
            padding: 24px;
        }

        .why-icon {
            font-size: 2.4rem;
            margin-bottom: 14px;
        }

        .why-item h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .why-item p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        /* ── Areas ── */
        .areas {
            background: var(--warm);
        }

        .area-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .area-tag {
            background: var(--white);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary);
            box-shadow: var(--shadow);
        }

        /* ── CTA / Contact ── */
        .cta-section {
            background: linear-gradient(135deg, var(--accent) 0%, #CC7B1A 100%);
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-phone {
            display: inline-block;
            background: var(--white);
            color: var(--accent);
            padding: 16px 44px;
            border-radius: 8px;
            font-size: 1.4rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .cta-phone:hover {
            transform: translateY(-2px);
        }

        .cta-email {
            display: block;
            margin-top: 16px;
            color: var(--white);
            font-size: 1rem;
        }

        .cta-email a {
            color: var(--white);
        }

        /* ── Footer ── */
        footer {
            background: #1a1a2e;
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 32px 24px;
            font-size: 0.85rem;
        }

        footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

        /* ── Mobile ── */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                box-shadow: var(--shadow-lg);
            }

            .nav-links.open {
                display: flex;
            }

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

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-photo {
                max-width: 250px;
                margin: 0 auto;
            }

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

        /* ── Modal Styles ── */
        .phone-modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 2000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-modal-content {
            background-color: var(--white);
            margin: auto; /* Center the modal */
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            text-align: center;
            position: relative;
        }

        .phone-modal-content h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .phone-modal-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
            text-decoration: none; /* Ensure no underline */
        }

        .phone-modal-copy-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background-color 0.2s;
        }

        .phone-modal-copy-btn:hover {
            background-color: #1a3458;
        }

        .phone-modal-close-btn {
            color: var(--text-light);
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .phone-modal-close-btn:hover,
        .phone-modal-close-btn:focus {
            color: var(--text);
            text-decoration: none;
        }
        
        /* Add your Facebook Pixel code in the <head> above */
        /* Add Google Analytics / Google Tag Manager code in the <head> above */