:root {
    /* --- 2026 Luxury Palette --- */
    /* Deep, rich backgrounds */
    --bg-color: #050505;
    /* Almost black */
    --bg-dark: #000000;
    --surface-color: #111111;
    --surface-hover: #1a1a1a;

    /* Elegant Accents */
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --accent-hover: #F2C94C;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    /* Cool gray */
    --text-muted: #52525B;
    --text-accent: #050505;

    /* Borders & Glass */
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(12px);

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;
    /* Massive section spacing */

    /* Typography */
    --font-main: 'Manrope', sans-serif;
    --font-display: 'Manrope', sans-serif;
    /* Could be changed to a serif if desired */

    --font-size-hero: clamp(3.5rem, 5vw, 6rem);
    --font-size-h1: clamp(2.5rem, 4vw, 4rem);
    --font-size-h2: clamp(2rem, 3vw, 3rem);
    --font-size-h3: 1.5rem;
    --font-size-body: 1.125rem;

    /* Components */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}

/* Utilities */
.container {
    max-width: 1400px;
    /* Wider for modern feel */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-color);
}

/* --- Buttons with "Glow" Effect --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-color);
    background: linear-gradient(135deg, #F2C94C 0%, #D4AF37 100%);
    color: var(--text-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF 0%, transparent 100%);
    opacity: 0.2;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::before {
    opacity: 0.4;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: inset 0 0 0 0 var(--accent-color);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #FFF;
    border-color: #FFF;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* --- Glass Header --- */
.site-header {
    position: fixed;
    /* Always fixed for sticky behavior */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Slightly larger */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.desktop-nav {
    display: flex;
    gap: 3rem;
    /* More breathing room */
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.desktop-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text-primary);
}

/* Underline animation for nav */
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.sm-hidden {
    display: none;
}

@media (min-width: 768px) {
    .sm-hidden {
        display: inline-block;
    }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 200;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu nav a {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 900px) {

    .desktop-nav,
    .sm-hidden {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* --- Hero Section --- */
/* --- Luxury Hero --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            var(--bg-color) 100%);
    z-index: 1;
}

/* Diagonal slice overlay for style */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin-top: 6rem;
}

.hero-content h1 {
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    /* Larger */
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        text-align: center;
    }
}

/* --- Trust Strip --- */
.trust-strip {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    position: relative;
    z-index: 20;
    margin-top: -80px;
    /* Pull up into hero */
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.trust-item i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 5rem;
    position: relative;
}

.text-gold-sm {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    /* Very tracked out */
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.section-header h3 {
    font-size: var(--font-size-h2);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-size-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--surface-color) 0%, #0a0a0a 100%);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: rotateY(180deg);
}

.service-card:hover .card-icon i {
    color: #000;
    transform: rotateY(-180deg);
    /* Counter for icon */
}

.card-icon i {
    color: var(--accent-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.card-link {
    color: var(--text-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.card-link:hover {
    color: var(--accent-color);
    gap: 1rem;
}

/* Delay classes */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* --- Why Choose Us --- */
.bg-surface {
    background-color: var(--surface-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-image {
        order: -1;
    }
}

.why-list {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-list i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.why-list strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.why-list p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.why-us-image {
    position: relative;
    z-index: 1;
}

.why-us-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.why-us-image:hover img {
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    top: 3rem;
    right: -3rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    z-index: 1;
    transition: all 0.5s ease;
}

.why-us-image:hover .image-accent {
    top: 2rem;
    right: -2rem;
    border-color: var(--accent-color);
}

/* --- Featured Work --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.25rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    display: block;
}

.mt-2 {
    margin-top: 2rem;
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
}

.stars {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--accent-color);
}

.review-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.reviewer {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviewer::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent-color);
}

/* --- Process --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

.step-item {
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    margin-bottom: -2.5rem;
    position: relative;
    z-index: -1;
    font-family: var(--font-display);
}

.step-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 250px;
    margin: 0 auto;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../assets/google_photos/photo_02.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    padding: 8rem 1rem;
    position: relative;
}

.cta-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item h4 {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 300;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* --- Footer --- */
.site-footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   NEW DEMO FEATURES & PREMIUM COMPONENTS
   ========================================= */

/* --- Mobile Sticky Action Bar --- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    display: none;
    /* Hidden on desktop */
    padding: 0.75rem 1rem;
}

.sticky-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 0.75rem;
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    gap: 0.25rem;
}

.sticky-btn i {
    font-size: 1.25rem;
    color: #fff;
}

.sticky-btn.primary {
    background: var(--accent-color);
    color: var(--text-accent);
    border-radius: var(--radius-sm);
    flex-direction: row;
    font-weight: 700;
    font-size: 0.9rem;
}

.sticky-btn.primary i {
    color: var(--text-accent);
    font-size: 1rem;
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
    }

    /* Add padding to body so content isn't hidden */
    body {
        padding-bottom: 70px;
    }
}

/* --- Zip Checker --- */
.zip-checker-section {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.zip-checker-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .zip-checker-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.zip-input-group {
    display: flex;
    gap: 0.5rem;
}

.zip-input-group input {
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: #fff;
    width: 140px;
}

.zip-result {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.zip-result.success {
    color: #4ade80;
    opacity: 1;
}

.zip-result.error {
    color: #f87171;
    opacity: 1;
}

/* --- Quote Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--surface-color);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

/* --- Exit Intent Popup --- */
.exit-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 350px;
    background: var(--surface-color);
    border: 1px solid var(--accent-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    z-index: 2100;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-popup.visible {
    transform: translateY(0);
}

/* --- Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-bubble i {
    color: var(--text-accent);
    font-size: 1.5rem;
}

.chat-tooltip {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: #fff;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    width: 200px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.chat-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Estimate Tool --- */
.estimate-tool {
    background: var(--surface-hover);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

.estimate-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 700;
    display: none;
    /* hidden by default */
}