/* ==========================================================================
   UX ENHANCEMENTS CSS
   Based on UX Analysis Report - March 2026
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Font Sizes - Fluid Typography */
    --h1-size: clamp(36px, 5vw, 56px);
    --h2-size: clamp(32px, 4vw, 42px);
    --h3-size: clamp(24px, 3vw, 32px);
    --h4-size: clamp(20px, 2.5vw, 28px);
    --body-size: 18px;
    --body-small: 16px;

    /* Colors */
    --color-primary: #D26F50;
    --color-primary-dark: #b85a3e;
    --color-primary-light: #ff7043;
    --color-dark: #1a2332;
    --color-dark-bg: #152C34;
    --color-body: #4a5568;
    --color-body-light: #718096;
    --color-muted: #9ca3af;
    --color-border: #D9D9D9;
    --color-white: #ffffff;
    --color-bg-light: #FAF9F6;
    --color-bg-section: #F5F5F5;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-form: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 4px 12px rgba(210, 111, 80, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ==========================================================================
   1. GLOBAL TYPOGRAPHY IMPROVEMENTS
   ========================================================================== */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Consistent paragraph spacing */
.default-css p,
.about-content p,
.banner-caption p {
    margin-bottom: 1.5em;
}

/* ==========================================================================
   2. HEADER PHONE CTA ENHANCEMENT
   ========================================================================== */

.head-call-now {
    position: relative;
    background: rgba(210, 111, 80, 0.06);
    padding: 8px 20px;
    border-radius: 45px;
    transition: var(--transition-normal);
}

.head-call-now:hover {
    background: rgba(210, 111, 80, 0.12);
}

/* Pulse animation on phone icon */
.head-call-now figure {
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Financing badge in header */
.header-financing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(210, 111, 80, 0.1);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 15px;
    font-family: var(--font-body);
    white-space: nowrap;
}

.header-financing-badge i,
.header-financing-badge .fa {
    font-size: 14px;
}

/* ==========================================================================
   2b. LOGO SIZE OVERRIDE
   ========================================================================== */

.top-logo img {
    max-width: 220px !important;
    max-height: 100px;
}

.top-logo {
    margin-bottom: -15px;
}

@media (max-width: 1499px) {
    .top-logo img {
        max-width: 190px !important;
    }
}

@media (max-width: 1199px) {
    .top-logo img {
        max-width: 100px !important;
    }
    .top-logo {
        margin-bottom: -10px;
    }
}

@media (max-width: 575px) {
    .top-logo img {
        max-width: 80px !important;
    }
    .top-logo {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   3. STICKY NAVIGATION WITH BACKDROP BLUR
   ========================================================================== */

.header-section.sticky {
    position: fixed;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Scroll indicator in hero */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator a {
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.scroll-indicator a:hover {
    opacity: 1;
    color: #fff;
}

.scroll-indicator .arrow-down {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   4. HERO SECTION ENHANCEMENTS
   ========================================================================== */

.home-banner {
    position: relative;
    overflow: hidden;
}

.home-banner .banner-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Hero form enhancements - trust signals */
.banner-main-form-div .form-hero {
    box-shadow: var(--shadow-form);
    border-radius: 12px !important;
}

.form-trust-signals {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-body-light);
    font-family: var(--font-body);
    font-weight: 500;
}

.form-trust-item i,
.form-trust-item .fa {
    color: var(--color-primary);
    font-size: 14px;
}

/* Hero form subtitle */
.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--color-body-light);
    margin-bottom: 15px;
    font-family: var(--font-body);
}

/* Form security notice */
.form-security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 10px;
    font-family: var(--font-body);
}

/* Hero subheading */
.banner-subheading {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-family: var(--font-body);
    margin-bottom: 20px;
}

.banner-subheading span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.banner-subheading .separator {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
}

/* ==========================================================================
   5. CTA BUTTON ENHANCEMENTS
   Only enhance — do NOT break existing styles on dark backgrounds
   ========================================================================== */

/* Primary CTA - gradient + lift on hover */
.theme-btn.btn-orange {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border: 2px solid var(--color-primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
}

.theme-btn.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 111, 80, 0.4);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)) !important;
    color: #fff !important;
}

/* Secondary CTA on LIGHT backgrounds only (about section, inner pages) */
.about-btns .theme-btn.btn-white {
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    background: #fff !important;
}

.about-btns .theme-btn.btn-white:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* White button on DARK backgrounds - preserve original styling, only add hover lift */
.banner-btns .theme-btn.btn-white {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

.banner-btns .theme-btn.btn-white:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Services bottom buttons - white bg, orange border (preserve original) */
.services-btns .theme-btn.btn-white {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid var(--color-primary) !important;
}

.services-btns .theme-btn.btn-white:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.services-btns .theme-btn.btn-white:hover strong {
    color: #fff !important;
}

/* CTA section buttons - white bg on dark */
.cta-btns .theme-btn.btn-white {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

.cta-btns .theme-btn.btn-white:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Tertiary CTA - text link with arrow */
.btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: none;
    background: none;
    padding: 8px 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-tertiary:hover {
    color: var(--color-primary-dark);
    gap: 12px;
}

/* Form submit button enhancement */
.form-hero input.button.gform_button,
.form-hero input.gform_button.button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) !important;
    color: #fff !important;
    box-shadow: var(--shadow-orange) !important;
    transition: all 0.3s ease !important;
}

.form-hero input.button.gform_button:hover,
.form-hero input.gform_button.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(210, 111, 80, 0.4) !important;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)) !important;
    color: #fff !important;
}

/* ==========================================================================
   6. BIG EASY LIFE SECTION - ENHANCED
   ========================================================================== */

section.big-easy-life-section {
    padding: 100px 0;
    background: url('/wp-content/uploads/2025/06/what-we-build-image.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

section.big-easy-life-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(21, 44, 52, 0.92) 0%, rgba(21, 44, 52, 0.88) 50%, rgba(21, 44, 52, 0.94) 100%);
    z-index: 0;
}

section.big-easy-life-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    z-index: 1;
}

section.big-easy-life-section .container {
    position: relative;
    z-index: 1;
}

section.big-easy-life-section .section-heading {
    max-width: 1000px;
    margin: 0 auto;
}

section.big-easy-life-section .heading-title {
    margin-bottom: 8px;
    color: #fff;
}

section.big-easy-life-section .heading-title strong {
    color: var(--color-primary) !important;
}

section.big-easy-life-section h2 {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

section.big-easy-life-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
}

section.big-easy-life-section h2 strong {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

section.big-easy-life-section .default-css {
    columns: 2;
    column-gap: 50px;
    text-align: left;
}

section.big-easy-life-section .default-css p {
    break-inside: avoid;
    margin-bottom: 1.2em;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    max-width: none;
}

section.big-easy-life-section .default-css p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Big Easy CTA Row */
.big-easy-cta-row {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.big-easy-cta-row .theme-btn.btn-white {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.big-easy-cta-row .theme-btn.btn-white:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--color-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ==========================================================================
   6b. NAVIGATION FIXES & POLISH
   ========================================================================== */

/* Desktop nav — cleaner spacing and active state */
@media (min-width: 1200px) {
    .navbar-collapse .menu-top-menu-container > ul > li > a {
        padding: 12px 0;
        transition: color 0.3s ease;
    }

    /* Smoother dropdown animation */
    .menu-item-has-children ul {
        border-radius: 0 0 10px 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.35s ease;
    }


    .menu-item-has-children ul li:first-child a {
        border-radius: 0;
    }

    .menu-item-has-children ul li:last-child a {
        border-radius: 0 0 10px 10px;
    }
}

/* Mobile nav — polish the slide-out drawer */
@media (max-width: 1199px) {
    div#myNavbar {
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-collapse ul > li > a {
        padding: 12px 20px !important;
        font-size: 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-collapse ul > li > a:hover,
    .navbar-collapse ul > li.current-menu-item > a {
        background: var(--color-primary) !important;
        padding-left: 25px !important;
    }

    /* Hamburger icon — cleaner */
    .navbar-toggle.collapsed .icon-bar {
        background-color: var(--color-primary) !important;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Mobile submenu styling */
    .navbar-collapse .menu-item-has-children ul li a {
        padding-left: 30px !important;
        font-size: 15px !important;
    }
}

/* Sticky header — nav CTA button for desktop */
.header-section .nav-cta-btn {
    display: none;
}

@media (min-width: 1200px) {
    .header-section .nav-cta-btn {
        display: inline-block;
        margin-left: 20px;
        padding: 10px 22px;
        background: var(--color-primary);
        color: #fff !important;
        border-radius: 45px;
        font-size: 14px;
        font-weight: 600;
        font-family: var(--font-body);
        transition: all 0.3s ease;
        white-space: nowrap;
        text-decoration: none;
    }

    .header-section .nav-cta-btn:hover {
        background: var(--color-primary-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-orange);
        color: #fff !important;
    }
}

/* ==========================================================================
   7. STATS SECTION ENHANCEMENTS
   ========================================================================== */

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

.count-digit-row {
    justify-content: center;
    align-items: baseline;
}

/* Stats plus symbol */
.count-plus {
    font-weight: 400;
    font-size: 0.6em;
    opacity: 0.7;
    margin-left: 4px;
}

/* Stats labels */
.count-bx p {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Stats CTA */
.stats-cta {
    text-align: center;
    margin-top: 40px;
}

.stats-cta .theme-btn.btn-white {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    background: transparent !important;
}

.stats-cta .theme-btn.btn-white:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   8. ABOUT SECTION - TRUST ICONS
   ========================================================================== */

.about-trust-icons {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.about-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-body);
}

.about-trust-item .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(210, 111, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   9. GALLERY SECTION - FILTERING
   ========================================================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.gallery-filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--color-border);
    border-radius: 45px;
    background: transparent;
    color: var(--color-body);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Gallery vehicle info overlay */
.gallery-vehicle-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-items:hover .gallery-vehicle-info {
    opacity: 1;
}

.gallery-vehicle-info h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Gallery category label */
.gallery-category-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 20px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.gallery-items:hover .gallery-category-label {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery show/hide rows */
.gallery-hidden {
    display: none;
}

.gallery-show-more-wrap {
    margin-top: 30px;
}

/* Gallery items enhanced styling */
.gallery-items {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-items .project-item-images {
    transition: transform 0.5s ease;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-items:hover .project-item-images {
    transform: scale(1.06);
}

@media (max-width: 575px) {
    .gallery-items .project-item-images {
        height: 220px;
    }
}

/* ==========================================================================
   10. FAQ SECTION IMPROVEMENTS
   ========================================================================== */

.faq-box .card {
    margin-bottom: 8px !important;
}

.faq-box .card-header-title:not(.collapsed) {
    color: var(--color-primary);
}

/* ==========================================================================
   11. CTA SECTION - TRUST LINE & FINANCING
   ========================================================================== */

.cta-trust-line {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.cta-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: var(--font-body);
}

.cta-trust-line span i,
.cta-trust-line span .fa {
    color: var(--color-primary);
}

.cta-financing-teaser {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-muted);
    text-align: center;
    font-family: var(--font-body);
}

/* ==========================================================================
   12. TESTIMONIAL SECTION OVERHAUL
   ========================================================================== */

.client-say-box::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
}

.client-say-box {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   13. EXIT-INTENT POPUP
   ========================================================================== */

.exit-intent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.exit-intent-overlay.active {
    display: flex;
}

.exit-intent-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    overflow: hidden;
    position: relative;
    animation: exitModalSlideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes exitModalSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-intent-header {
    background: linear-gradient(135deg, var(--color-dark-bg), #1a3a44);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.exit-intent-header h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.exit-intent-header h3 span {
    color: var(--color-primary);
}

.exit-intent-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
    max-width: none;
}

.exit-intent-body {
    padding: 30px;
}

.exit-intent-body .exit-form-group {
    margin-bottom: 15px;
}

.exit-intent-body input[type="email"],
.exit-intent-body input[type="tel"] {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 45px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.exit-intent-body input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(210, 111, 80, 0.1);
}

.exit-intent-body .exit-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border: none;
    border-radius: 45px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.exit-intent-body .exit-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 111, 80, 0.4);
}

.exit-intent-dismiss {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--color-muted);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    transition: color 0.3s ease;
    width: 100%;
}

.exit-intent-dismiss:hover {
    color: var(--color-body);
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.exit-intent-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   14. STICKY ESTIMATE BUTTONS
   ========================================================================== */

/* Hide old floating-icon — replaced by sticky-estimate-corner */
.floating-icon {
    display: none !important;
}

/* Mobile: Bottom bar */
.sticky-estimate-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 999;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-estimate-bar.visible {
    transform: translateY(0);
}

.sticky-estimate-bar .sticky-btn-phone,
.sticky-estimate-bar .sticky-btn-estimate {
    flex: 1;
    padding: 12px 15px;
    border-radius: 45px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-body);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: none;
}

.sticky-btn-phone {
    background: var(--color-dark);
    color: #fff !important;
}

.sticky-btn-phone:hover {
    color: #fff !important;
}

.sticky-btn-estimate {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff !important;
}

.sticky-btn-estimate:hover {
    color: #fff !important;
}

/* Desktop: Corner button */
.sticky-estimate-corner {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-estimate-corner.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-estimate-corner a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff !important;
    border-radius: 45px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(210, 111, 80, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-estimate-corner a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(210, 111, 80, 0.5);
    color: #fff !important;
}

/* ==========================================================================
   15. RESPONSE TIME INDICATOR
   ========================================================================== */

.response-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-body-light);
    font-family: var(--font-body);
}

.response-time-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.response-time-badge .pulse-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.cta-response-time {
    margin-top: 12px;
}

/* ==========================================================================
   16. PROCESS SECTION - ENHANCED DESIGN
   ========================================================================== */

/* Process badge */
.process-badge {
    display: inline-block;
    background: rgba(210, 111, 80, 0.12);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
}

/* Subtitle below heading */
.process-subtitle {
    max-width: 580px;
    margin: 0 auto;
    color: var(--color-body-light);
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Process box card */
.our-process-box {
    padding: 30px 25px;
    border-radius: 16px;
    transition: var(--transition-normal);
    border: 1px solid var(--color-border);
    background: #fff;
    position: relative;
    height: 100%;
}

.our-process-box:hover {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(210, 111, 80, 0.12);
    transform: translateY(-6px);
}

.our-process-box p {
    text-align: left;
    color: var(--color-body);
    line-height: 1.7;
}

/* Large background step number */
.process-step-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: rgba(210, 111, 80, 0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.our-process-box:hover .process-step-number {
    color: rgba(210, 111, 80, 0.12);
}

/* Connector arrow between steps */
.process-connector {
    display: none;
}

@media (min-width: 992px) {
    .process-connector {
        display: block;
        position: absolute;
        right: -28px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 44px;
        height: 44px;
        background: var(--color-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(210, 111, 80, 0.3);
    }

    .process-connector i {
        color: #fff;
        font-size: 18px;
    }
}

/* Process CTA at bottom */
.process-cta {
    margin-top: 45px;
    padding-top: 10px;
}

/* Counter badge refinement */
.our-process-section .counter {
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 14px;
    letter-spacing: 0.5px;
}

/* Process section background */
section.our-process-section {
    background: var(--color-bg-light);
    position: relative;
}

section.our-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .process-step-number {
        font-size: 56px;
    }

    .our-process-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .process-cta {
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .process-badge {
        font-size: 12px;
        padding: 6px 18px;
        margin-bottom: 15px;
    }

    .process-subtitle {
        font-size: 15px;
    }

    .process-step-number {
        font-size: 48px;
    }

    .our-process-box {
        padding: 20px 15px;
    }

    .process-cta {
        margin-top: 20px;
    }
}

/* ==========================================================================
   17. WHAT WE BUILD - IMPROVEMENTS
   ========================================================================== */

section.what-we-build-section .section-heading.default-css ul li {
    transition: transform 0.2s ease;
}

section.what-we-build-section .section-heading.default-css ul li:hover {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE - Desktop First (matching custom.css breakpoint pattern)
   ========================================================================== */

@media (max-width: 1499px) {
    section.big-easy-life-section {
        padding: 60px 0;
    }

    section.big-easy-life-section .default-css {
        column-gap: 35px;
    }

    .about-trust-icons {
        gap: 20px;
    }

    .stats-cta {
        margin-top: 30px;
    }
}

@media (max-width: 1199px) {
    section.big-easy-life-section {
        padding: 40px 0;
    }

    section.big-easy-life-section .default-css {
        column-gap: 30px;
    }

    section.big-easy-life-section .default-css p {
        font-size: 15px;
        line-height: 1.65;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter-btn {
        padding: 6px 18px;
        font-size: 14px;
    }

    .cta-trust-line {
        gap: 12px;
    }

    .cta-trust-line span {
        font-size: 13px;
    }

    .header-financing-badge {
        display: none;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-indicator a span {
        display: none;
    }
}

@media (max-width: 991px) {
    .form-trust-signals {
        gap: 10px;
    }

    .form-trust-item {
        font-size: 11px;
    }

    .about-trust-icons {
        gap: 15px;
    }

    .about-trust-item {
        font-size: 14px;
    }

    .about-trust-item .trust-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    section.big-easy-life-section {
        background-attachment: scroll;
    }

    section.big-easy-life-section .default-css {
        columns: 1;
    }

    .big-easy-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        padding-top: 20px;
    }

    .big-easy-cta-row .theme-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .gallery-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .cta-trust-line {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .stats-cta {
        margin-top: 20px;
    }

    .stats-cta .theme-btn {
        font-size: 14px;
        padding: 10px 20px;
        min-width: auto;
    }
}

@media (max-width: 812px) {
    .about-trust-icons {
        flex-direction: column;
        gap: 12px;
    }

    .banner-subheading {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    section.big-easy-life-section h2::after {
        width: 50px;
        height: 2px;
    }

    .client-say-box::before {
        font-size: 80px;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 767px) {
    .sticky-estimate-bar {
        display: flex;
    }

    /* Add bottom padding to body so sticky bar doesn't cover content */
    body {
        padding-bottom: 70px;
    }

    .exit-intent-header {
        padding: 30px 20px 25px;
    }

    .exit-intent-header h3 {
        font-size: 22px;
    }

    .exit-intent-body {
        padding: 20px;
    }

    .cta-financing-teaser {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .sticky-estimate-corner {
        display: block;
    }
}

@media (max-width: 575px) {
    .form-trust-signals {
        gap: 6px;
    }

    .form-trust-item {
        font-size: 10px;
        gap: 3px;
    }

    .form-trust-item .fa {
        font-size: 12px;
    }

    .form-subtitle {
        font-size: 12px;
    }

    .banner-subheading {
        font-size: 12px;
        gap: 6px;
    }

    .banner-subheading .separator {
        width: 3px;
        height: 3px;
    }

    .response-time-badge {
        font-size: 11px;
    }

    .gallery-filter-btn {
        padding: 5px 14px;
        font-size: 13px;
    }

    .about-trust-item {
        font-size: 13px;
    }

    .about-trust-item .trust-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .exit-intent-header h3 {
        font-size: 20px;
    }

    .exit-intent-body input[type="email"],
    .exit-intent-body input[type="tel"] {
        padding: 12px 16px;
        font-size: 15px;
    }

    .exit-intent-body .exit-submit-btn {
        padding: 14px;
        font-size: 14px;
    }

    .head-call-now {
        padding: 5px 10px;
    }
}
