:root {
            --bg: #F6F7F9;
            --warm: #FDF9F4;
            --border: #EAD9C4;
            --primary: #E8871E;
            --primary-dark: #C96A0F;
            --espresso: #2B1810;
            --muted: #40332D;
            --navy: #1B2742;
            --footer: #EFDCBB;
            --radius: 16px;
            --container: 1240px;
            --shadow: 0 16px 36px rgba(43, 24, 16, .12)
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--muted);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            margin: 0;
            color: var(--espresso);
            font-family: 'Poppins', sans-serif;
            line-height: 1.15
        }

        p {
            margin: 0
        }

        a {
            text-decoration: none;
            color: inherit
        }

        .container {
            max-width: var(--container);
            margin: auto;
            padding: 0 24px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            border: 1.5px solid transparent;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            transition: transform .22s, background .22s, color .22s, box-shadow .22s
        }

        .btn-primary {
            background: var(--primary);
            color: #000
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(201, 106, 15, .25)
        }

        .btn-outline {
            border-color: var(--primary);
            color: #000;
            background: transparent
        }

        .btn-outline:hover {
            background: var(--primary);
            transform: translateY(-2px)
        }

        header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border)
        }

        .nav-wrap {
            height: 84px;
            display: flex;
            align-items: center
        }

        .logo-link {
            display: flex;
            align-items: center;
            height: 100%;
            margin-right: auto
        }

        .logo-link img {
            height: 116px;
            width: auto
        }

        .main-nav {
            display: flex;
            align-items: center
        }

        .main-nav a {
            padding: 10px 13px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600
        }

        .main-nav a:hover,
        .main-nav a.active {
            background: #FFF4E8;
            color: var(--primary-dark)
        }

        .header-actions {
            margin-left: 12px
        }

        .hamburger {
            display: none;
            background: none;
            border: 0;
            padding: 8px
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--espresso);
            margin: 5px 0
        }

        .contact-hero {
            position: relative;
            isolation: isolate;
            min-height: 330px;
            padding: 92px 0 70px;
            text-align: center;
            color: #fff;
            background: var(--navy);
            overflow: hidden
        }

        .contact-hero-image {
            position: absolute;
            inset: 0;
            z-index: -2;
            background: url('public_html/images/servicehero.webp') center/cover no-repeat;
            transition: transform .8s ease
        }

        .contact-hero:hover .contact-hero-image {
            transform: scale(1.04)
        }

        .contact-hero-overlay {
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(15, 24, 43, .48), rgba(43, 24, 16, .84))
        }

        .contact-hero .container {
            animation: contactReveal .9s ease-out both
        }

        .eyebrow {
            display: block;
            color: var(--primary);
            font-size: 12px;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 12px
        }

        .contact-hero h1 {
            color: #fff;
            font-size: clamp(34px, 4.5vw, 58px)
        }

        .contact-hero h1 span {
            color: var(--primary)
        }

        .contact-hero p {
            max-width: 700px;
            margin: 16px auto 0;
            color: rgba(255, 255, 255, .88);
            font-size: 16px;
            line-height: 1.7
        }

        .contact-section {
            padding: 72px 0;
            background: var(--navy)
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 54px;
            align-items: start
        }

        .contact-info {
            padding: 20px 0;
            color: #fff
        }

        .contact-info h2 {
            color: #fff;
            font-size: clamp(30px, 3.6vw, 48px)
        }

        .contact-info h2 span {
            color: var(--primary)
        }

        .contact-info>p {
            max-width: 430px;
            margin-top: 16px;
            color: rgba(255, 255, 255, .78);
            font-size: 15px;
            line-height: 1.75
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 22px;
            margin-top: 34px
        }

        .contact-list li {
            display: flex;
            gap: 14px;
            align-items: flex-start
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            border-radius: 50%;
            background: rgba(232, 135, 30, .16);
            color: var(--primary);
            font-weight: 800;
            font-size: 18px
        }

        .contact-list strong {
            display: block;
            color: #fff;
            font: 700 14px 'Poppins', sans-serif;
            margin-bottom: 4px
        }

        .contact-list a,
        .contact-list span {
            color: rgba(255, 255, 255, .8);
            font-size: 14px;
            line-height: 1.5
        }

        .contact-note {
            margin-top: 30px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .16);
            max-width: 450px;
            color: rgba(255, 255, 255, .68);
            font-size: 13px;
            line-height: 1.7
        }

        .contact-form-panel {
            padding: 34px;
            background: #fff;
            border: 1px solid rgba(232, 135, 30, .55);
            border-radius: var(--radius);
            box-shadow: 0 16px 36px rgba(10, 18, 35, .2)
        }

        .contact-form-head {
            margin-bottom: 24px
        }

        .contact-form-head h2 {
            font-size: clamp(26px, 3vw, 38px)
        }

        .contact-form-head h2 span {
            color: var(--primary-dark)
        }

        .contact-form-head p {
            margin-top: 9px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6
        }

        .contact-form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .form-field.full,
        .form-actions,
        .form-note {
            grid-column: 1/-1
        }

        .form-field label {
            font-size: 12px;
            font-weight: 700;
            color: var(--espresso)
        }

        .form-field input,
        .form-field textarea {
            width: 100%;
            border: 1px solid #D8DDE4;
            border-radius: 10px;
            background: #fff;
            color: var(--espresso);
            font: 14px 'Inter', sans-serif;
            padding: 12px 13px;
            outline: none
        }

        .form-field input {
            height: 44px
        }

        .form-field textarea {
            min-height: 100px;
            resize: vertical
        }

        .form-field input:focus,
        .form-field textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 135, 30, .14)
        }

        .form-checks {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px
        }

        .form-check {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px;
            border: 1px solid #D8DDE4;
            border-radius: 10px;
            background: #F6F7F9;
            color: var(--muted);
            font-size: 12px;
            cursor: pointer
        }

        .form-check input {
            accent-color: var(--primary)
        }

        .form-actions {
            display: flex;
            justify-content: center;
            margin-top: 4px
        }

        .form-actions .btn {
            min-width: 190px
        }

        .form-note {
            text-align: center;
            color: #6c6864;
            font-size: 11px;
            line-height: 1.5
        }

        .form-popup {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(10, 18, 35, .62);
            opacity: 0;
            visibility: hidden;
            transition: opacity .25s, visibility .25s
        }

        .form-popup.show {
            opacity: 1;
            visibility: visible
        }

        .form-popup-card {
            width: min(100%, 420px);
            padding: 30px 24px;
            text-align: center;
            background: #fff;
            border: 2px solid var(--primary);
            border-radius: 16px;
            box-shadow: 0 18px 44px rgba(10, 18, 35, .28)
        }

        .form-popup-card h3 {
            margin-bottom: 10px;
            font-size: 24px
        }

        .form-popup-card p {
            margin-bottom: 20px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6
        }

        .contact-after {
            padding: 64px 0;
            background: #fff;
            text-align: center
        }

        .contact-after h2 {
            font-size: clamp(26px, 3.2vw, 38px)
        }

        .contact-after h2 span {
            color: var(--primary-dark)
        }

        .contact-after p {
            max-width: 650px;
            margin: 12px auto 22px;
            font-size: 15px;
            line-height: 1.7
        }

        .contact-after .btn {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff
        }

        .contact-after .btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #000
        }

        footer {
            background: var(--footer);
            color: #000;
            padding: 24px 0 0
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px
        }

        .footer-brand img {
            height: 192px;
            width: auto;
            transform: translate(-10px, -12px);
            margin-bottom: -58px
        }

        .footer-brand p {
            max-width: 320px;
            margin: 0 0 12px;
            font-size: 14px;
            line-height: 1.7
        }

        .social-row {
            display: flex;
            gap: 10px
        }

        .social-row a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(43, 24, 16, .08);
            display: flex;
            align-items: center;
            justify-content: center
        }

        .footer-title {
            font: 700 13px 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--espresso);
            margin: 8px 0 18px
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 14px
        }

        .footer-links a {
            color: #000
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 14px
        }

        .footer-contact li {
            display: flex;
            gap: 9px;
            align-items: flex-start
        }

        .footer-bottom {
            border-top: 1px solid rgba(43, 24, 16, .12);
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px
        }

        .legal-links {
            display: flex;
            gap: 18px
        }

        .wa-fab {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 30;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(37, 211, 102, .4)
        }

        .wa-fab svg {
            width: 34px;
            height: 34px;
            color: #fff
        }

        @keyframes contactReveal {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @media(max-width:1024px) {
            .contact-grid {
                grid-template-columns: 1fr 1.2fr
            }

            .footer-top {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:700px) {
            .main-nav {
                display: none
            }

            .header-actions .btn {
                display: none
            }

            .hamburger {
                display: block
            }

            .container {
                padding-inline: 18px
            }

            .contact-hero {
                min-height: 330px;
                padding: 100px 0 70px
            }

            .contact-hero h1 {
                font-size: 34px
            }

            .contact-hero p {
                font-size: 14px
            }

            .contact-section {
                padding: 54px 0
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px
            }

            .contact-info {
                padding: 0;
                text-align: center
            }

            .contact-info>p,
            .contact-note {
                margin-left: auto;
                margin-right: auto
            }

            .contact-list {
                text-align: left
            }

            .contact-form-panel {
                padding: 24px 16px
            }

            .contact-form-head {
                text-align: center
            }

            .contact-form {
                grid-template-columns: 1fr;
                gap: 10px
            }

            .form-field.full,
            .form-actions,
            .form-note {
                grid-column: auto
            }

            .form-checks {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 5px
            }

            .form-check {
                min-height: 40px;
                padding: 5px 6px;
                gap: 5px;
                font-size: 10px;
                line-height: 1.1
            }

            .form-check input {
                width: 11px;
                height: 11px
            }

            .form-actions .btn {
                width: 100%;
                min-height: 34px;
                padding: 8px 12px;
                font-size: 12px
            }

            .form-note {
                font-size: 9px;
                line-height: 1.2
            }

            .contact-after {
                padding: 50px 0
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 22px
            }

            .footer-brand img {
                height: 145px;
                transform: translateX(-10px);
                margin-bottom: -40px
            }

            .footer-bottom {
                flex-direction: column
            }
        }

        .contact-hero {
            display: none
        }

        .contact-form-panel {
            background: var(--navy);
            border-color: rgba(232, 135, 30, .55)
        }

        .contact-form-head h2 {
            color: #fff
        }

        .contact-form-head p {
            color: rgba(255, 255, 255, .8)
        }

        .form-field label {
            color: #fff
        }

        .form-check {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .28);
            color: #fff
        }

        .form-note {
            color: rgba(255, 255, 255, .72)
        }

        @media(max-width:700px) {
            .contact-section {
                padding: 12px 0
            }

            .contact-grid {
                gap: 20px
            }

            .contact-info {
                padding: 0 4px
            }

            .contact-info h2 {
                font-size: 28px
            }

            .contact-info>p {
                margin-top: 10px;
                font-size: 13px;
                line-height: 1.5
            }

            .contact-list {
                gap: 12px;
                margin-top: 18px
            }

            .contact-list li {
                gap: 8px
            }

            .contact-icon {
                width: 30px;
                height: 30px;
                font-size: 13px
            }

            .contact-list strong {
                font-size: 11px
            }

            .contact-list a,
            .contact-list span {
                font-size: 11px
            }

            .contact-note {
                margin-top: 14px;
                padding-top: 12px;
                font-size: 10px
            }

            .contact-form-panel {
                padding: 14px 12px
            }

            .contact-form-head {
                margin-bottom: 10px
            }

            .contact-form-head h2 {
                font-size: 24px
            }

            .contact-form-head p {
                margin-top: 4px;
                font-size: 12px;
                line-height: 1.35
            }

            .contact-form {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 6px
            }

            .form-field {
                gap: 2px
            }

            .form-field.full,
            .form-actions,
            .form-note {
                grid-column: 1/-1
            }

            .form-field label {
                font-size: 10px;
                line-height: 1.15
            }

            .form-field input {
                height: 32px;
                padding: 5px 9px;
                font-size: 12px
            }

            .form-field textarea {
                min-height: 48px;
                padding: 6px 9px;
                font-size: 12px
            }

            .contact-form-panel .form-checks {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 4px
            }

            .contact-form-panel .form-check {
                height: 34px;
                min-height: 34px;
                padding: 4px 5px;
                gap: 4px;
                font-size: 9px;
                line-height: 1
            }

            .contact-form-panel .form-check input {
                width: 10px;
                height: 10px;
                margin: 0
            }

            .form-actions {
                margin-top: 2px
            }

            .form-actions .btn {
                width: 100%;
                min-height: 34px;
                padding: 8px 12px;
                font-size: 12px
            }

            .form-note {
                font-size: 9px;
                line-height: 1.2
            }
        }

        @media(min-width:701px) {
            .contact-form-panel .form-checks {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px
            }

            .contact-form-panel .form-check {
                height: 42px;
                min-height: 42px;
                padding: 7px 10px;
                gap: 8px;
                font-size: 13px;
                font-weight: 600;
                line-height: 1.2
            }

            .contact-form-panel .form-check input {
                width: 16px;
                height: 16px;
                margin: 0
            }
        }

        @media(max-width:700px) {
            .contact-form-panel .form-checks {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 3px
            }

            .contact-form-panel .form-check {
                height: 30px;
                min-height: 30px;
                padding: 3px 4px;
                gap: 3px;
                font-size: 8px;
                line-height: 1
            }

            .contact-form-panel .form-check input {
                width: 9px;
                height: 9px;
                margin: 0
            }
        }
