
        /* ===== CSS Variables for Theming ===== */
        :root {
            --primary: #1a472a;
            --primary-light: #2d6a3f;
            --primary-dark: #0f2818;
            --accent: #d97706;
            --accent-light: #f59e0b;
            --accent-dark: #b45309;
            --success: #10b981;
            --chat-green: #06b05b;
            --neutral-50: #f9fafb;
            --neutral-100: #f3f4f6;
            --neutral-200: #e5e7eb;
            --neutral-300: #d1d5db;
            --neutral-400: #9ca3af;
            --neutral-500: #6b7280;
            --neutral-600: #4b5563;
            --neutral-700: #374151;
            --neutral-800: #1f2937;
            --neutral-900: #111827;
            --border-radius: 0.5rem;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* ===== Global Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: var(--neutral-800);
            background-color: #fff;
        }

        /* ===== Header (Sticky) ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: var(--shadow-md);
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ===== Contractor Brand Logo ===== */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: white;
            transition: var(--transition);
        }

        .brand-logo:hover {
            transform: translateY(-1px);
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 14px rgba(217, 119, 6, 0.28);
            flex-shrink: 0;
            position: relative;
        }

        .brand-mark::before {
            content: "";
            width: 20px;
            height: 4px;
            background: white;
            border-radius: 999px;
            transform: rotate(-35deg);
            position: absolute;
        }

        .brand-mark::after {
            content: "";
            width: 8px;
            height: 14px;
            border: 3px solid white;
            border-left: 0;
            border-bottom: 0;
            transform: rotate(-35deg) translate(8px, -2px);
            position: absolute;
            border-radius: 2px;
        }

        .brand-copy {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .brand-location {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .brand-name {
            color: #ffffff;
            font-size: 1.45rem;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            margin-top: 0.18rem;
        }

        .brand-service {
            color: var(--accent-light);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .call-button {
            background: var(--accent);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .call-button:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .call-button:active {
            transform: translateY(0);
        }

        /* ===== Hero Section ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 4rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* ===== Background Image Slider (Absolute, Behind Content) ===== */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1200&h=600&fit=crop');
            opacity: 0.15;
            z-index: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* ===== Lead Form Section ===== */
        .form-container {
            background: white;
            padding: 3rem 1.5rem;
            max-width: 600px;
            margin: -3rem auto 3rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 10;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .form-container h2 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .form-container>p {
            color: var(--neutral-600);
            margin-bottom: 2rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--neutral-800);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--neutral-300);
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
        }

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

        /* ===== Checkbox Styling ===== */
        .checkbox-group {
            margin-bottom: 1.5rem;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: auto;
            min-width: 20px;
            height: 20px;
            margin-top: 0.25rem;
            cursor: pointer;
            accent-color: var(--primary);
        }

        .checkbox-wrapper label {
            margin: 0;
            font-weight: 400;
            font-size: 0.9rem;
            color: var(--neutral-700);
            cursor: pointer;
            line-height: 1.5;
        }

        /* ===== Submit Button ===== */
        .form-submit {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* ===== Legal Text ===== */
        .legal-text {
            font-size: 0.8rem;
            color: var(--neutral-600);
            margin-top: 1rem;
            text-align: center;
            line-height: 1.6;
        }

        .legal-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .legal-text a:hover {
            text-decoration: underline;
        }

        /* ===== Trust Section ===== */
        .trust-section {
            background: var(--neutral-50);
            padding: 3rem 1.5rem;
            margin: 3rem 0;
        }

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

        .trust-section h2 {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .trust-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

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

        .trust-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .trust-card h3 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .trust-card p {
            color: var(--neutral-600);
            font-size: 0.95rem;
        }

        /* ===== Reviews Section ===== */
        .reviews-section {
            padding: 4rem 1.5rem;
            background: white;
        }

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

        .reviews-section h2 {
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .reviews-intro {
            text-align: center;
            color: var(--neutral-600);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.05rem;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .review-card {
            background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--neutral-200);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

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

        .review-stars {
            font-size: 1.2rem;
            color: #fbbf24;
            margin-bottom: 1rem;
            letter-spacing: 0.2rem;
        }

        .review-text {
            color: var(--neutral-700);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            font-style: italic;
        }

        .review-author {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .review-location {
            color: var(--neutral-600);
            font-size: 0.85rem;
        }

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

        .review-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
        }

        .review-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .review-button:active {
            transform: translateY(0);
        }

        /* ===== Services Section ===== */
        .services-section {
            padding: 4rem 1.5rem;
            background: white;
        }

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

        .services-section h2 {
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .services-intro {
            text-align: center;
            color: var(--neutral-600);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.05rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--neutral-200);
            transition: var(--transition);
            cursor: pointer;
        }

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

        .service-card h3 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .service-card p {
            color: var(--neutral-700);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== Areas We Serve Section ===== */
        .areas-section {
            padding: 4rem 1.5rem;
            background: var(--neutral-50);
        }

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

        .areas-section h2 {
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .areas-intro {
            text-align: center;
            color: var(--neutral-600);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.05rem;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .area-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--neutral-200);
            transition: var(--transition);
            text-align: center;
        }

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

        .area-card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .area-card p {
            color: var(--neutral-600);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .area-link {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
        }

        .area-link:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .area-card.current-page {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary);
}

.area-card.current-page h3,
.area-card.current-page p {
    color: white;
}

.area-card.current-page .current-label {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

        /* ===== How It Works Section ===== */
        .how-it-works {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 4rem 1.5rem;
        }

        .how-it-works-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .how-it-works h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1rem;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .step p {
            opacity: 0.95;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== FAQ Section ===== */
        .faq-section {
            padding: 4rem 1.5rem;
            background: var(--neutral-50);
        }

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

        .faq-section h2 {
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            font-weight: 600;
            color: var(--primary);
            user-select: none;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--neutral-50);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--neutral-700);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== Contact Section ===== */
        .contact-section {
            background: white;
            padding: 4rem 1.5rem;
        }

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

        .contact-section h2 {
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-method {
            text-align: center;
            padding: 2rem;
            background: var(--neutral-50);
            border-radius: 1rem;
            transition: var(--transition);
        }

        .contact-method:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
        }

        .contact-method h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-method p {
            font-size: 1.05rem;
            font-weight: 500;
        }

        .contact-method a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-method:hover a {
            color: white;
        }

        .contact-review-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
        }

        .contact-review-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-review-section p {
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .contact-review-button {
            background: var(--accent);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
        }

        .contact-review-button:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        /* ===== Footer ===== */
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 1.5rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            display: block;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-logo {
            display: inline-flex;
            margin-bottom: 1rem;
            text-decoration: none !important;
        }

        .footer-logo,
        .footer-logo *,
        .brand-logo,
        .brand-logo * {
            text-decoration: none !important;
        }

        .footer-logo .brand-mark {
            width: 36px;
            height: 36px;
        }

        .footer-logo .brand-name {
            font-size: 1.2rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            margin: 0;
            font-size: 0.9rem;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 0.75rem;
            }

            .brand-logo {
                gap: 0.55rem;
            }

            .brand-mark {
                width: 34px;
                height: 34px;
                border-radius: 8px;
            }

            .brand-location {
                font-size: 0.65rem;
                letter-spacing: 0.14em;
            }

            .brand-name {
                font-size: 1.05rem;
            }

            .footer-section .brand-logo {
                margin-bottom: 0.75rem;
            }

            .footer-logo .brand-mark {
                width: 34px;
                height: 34px;
            }

            .footer-logo .brand-name {
                font-size: 1.05rem;
            }

            .hero {
                padding: 3rem 1.5rem;
            }

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

            .form-container {
                margin: -2rem 1rem 2rem;
                padding: 2rem 1.5rem;
            }

            .services-grid,
            .trust-grid,
            .steps,
            .contact-grid,
            .reviews-grid,
            .areas-grid {
                grid-template-columns: 1fr;
            }

            .hero::before {
                display: none;
            }

            .call-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* ===== Animation for form errors ===== */
        .form-group.error input,
        .form-group.error textarea {
            border-color: #dc2626;
            background-color: rgba(220, 38, 38, 0.05);
        }

        .error-message {
            color: #dc2626;
            font-size: 0.85rem;
            margin-top: 0.35rem;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        /* ===== Loading State ===== */
        .form-submit.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .form-submit.loading::after {
            content: " ⏳";
        }

        /* ===== MODERN CHAT BOX STYLING ===== */
        #chat-widget-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
        }

        #chat-launcher {
            width: 56px;
            height: 56px;
            background: var(--chat-green);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(6, 176, 91, 0.3);
            transition: var(--transition);
            font-size: 24px;
        }

        #chat-launcher:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(6, 176, 91, 0.4);
        }

        #chat-launcher.hidden {
            display: none;
        }

        #chat-box {
            display: none;
            flex-direction: column;
            width: 100%;
            max-width: 380px;
            height: 580px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--neutral-200);
            animation: slideUp 0.3s ease-out;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #chat-box.open {
            display: flex;
        }

        #chat-header {
            background: linear-gradient(135deg, var(--chat-green) 0%, #059052 100%);
            color: white;
            padding: 1rem;
            border-radius: 12px 12px 0 0;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #chat-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        #chat-close-btn:hover {
            opacity: 0.8;
        }

        #chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            background: white;
        }

        .chat-msg {
            display: flex;
            margin-bottom: 0;
            gap: 0.5rem;
            animation: fadeIn 0.3s ease-out;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-user {
            justify-content: flex-end;
        }

        .chat-user .chat-bubble {
            background: var(--chat-green);
            color: white;
            border-radius: 18px 18px 4px 18px;
        }

        .chat-bot {
            justify-content: flex-start;
        }

        .chat-bot .chat-avatar {
            width: 32px;
            height: 32px;
            background: var(--chat-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .chat-bot .chat-bubble {
            background: var(--neutral-100);
            color: var(--neutral-800);
            border-radius: 18px 18px 18px 4px;
        }

        .chat-bubble {
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
            line-height: 1.5;
            word-wrap: break-word;
            max-width: 260px;
        }

        #chat-quick-replies {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
        }

        .quick-reply-btn {
            background: var(--neutral-100);
            border: 1px solid var(--neutral-300);
            color: var(--primary);
            padding: 0.6rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: var(--transition);
            font-weight: 500;
        }

        .quick-reply-btn:hover {
            background: var(--chat-green);
            color: white;
            border-color: var(--chat-green);
        }

        #chat-input-row {
            display: flex;
            gap: 0.5rem;
            padding: 1rem;
            background: white;
            border-top: 1px solid var(--neutral-200);
            border-radius: 0 0 12px 12px;
        }

        #chat-text {
            flex: 1;
            border: 1px solid var(--neutral-300);
            padding: 0.75rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-family: inherit;
            transition: var(--transition);
        }

        #chat-text:focus {
            outline: none;
            border-color: var(--chat-green);
            box-shadow: 0 0 0 3px rgba(6, 176, 91, 0.1);
        }

        #chat-text::placeholder {
            color: var(--neutral-400);
        }

        #chat-send-btn {
            background: var(--chat-green);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-weight: 600;
        }

        #chat-send-btn:hover {
            background: #059052;
            transform: scale(1.05);
        }

        #chat-send-btn:active {
            transform: scale(0.95);
        }

        /* Mobile adjustments */
        @media (max-width: 640px) {
            #chat-widget-wrapper {
                bottom: 80px;
                right: 16px;
            }

            #chat-box {
                max-width: calc(100vw - 32px);
                max-height: 70vh;
                height: auto;
            }

            .chat-bubble {
                max-width: 220px;
            }

            #chat-text {
                font-size: 16px;
            }
        }

        @media (max-height: 700px) {
            #chat-box {
                max-height: 60vh;
            }

            #chat-messages {
                max-height: 50vh;
            }
        }
    