.elementor-widget-section > .uael-party-propz-wrap i{color:var( --e-global-color-primary );}.elementor-widget-section > .uael-party-propz-wrap svg{fill:var( --e-global-color-primary );}.elementor-widget-column > .uael-party-propz-wrap i{color:var( --e-global-color-primary );}.elementor-widget-column > .uael-party-propz-wrap svg{fill:var( --e-global-color-primary );}.elementor-widget-html .uael-party-propz-widget-wrap i{color:var( --e-global-color-primary );}.elementor-widget-html .uael-party-propz-widget-wrap svg{fill:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS *//* =============================================================================
   LEX AIR CONDITIONING - BASE STYLES & BRAND VARIABLES
   Version: 1.0
   
   USAGE: Include this CSS on all LEX pages for consistent branding.
   Add to WordPress via: Appearance > Customize > Additional CSS
   Or include in Elementor Custom CSS
   ============================================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* =============================================================================
   CSS CUSTOM PROPERTIES (Brand Colors & Design Tokens)
   ============================================================================= */
:root {
    /* Primary Brand Colors - Blue Palette */
    --lex-blue-dark: #0c2342;
    --lex-blue: #133865;
    --lex-blue-light: #1a4a7a;
    --lex-blue-accent: #2563a8;
    
    /* Accent Colors - Gold Palette */
    --lex-gold: #d4a03e;
    --lex-gold-light: #e8b84a;
    --lex-gold-dark: #b8860b;
    
    /* Status/Utility Colors */
    --lex-red: #c62828;
    --lex-green: #2E8B57;
    
    /* Neutral Colors */
    --lex-gray-dark: #2d3436;
    --lex-gray: #636e72;
    --lex-gray-light: #f8f9fa;
    --lex-white: #ffffff;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(12, 35, 66, 0.08);
    --shadow-medium: 0 8px 30px rgba(12, 35, 66, 0.12);
    --shadow-strong: 0 12px 40px rgba(12, 35, 66, 0.18);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 24px;
    --section-padding-mobile: 50px 20px;
    --container-max: 1200px;
}

/* =============================================================================
   BASE RESET & TYPOGRAPHY
   ============================================================================= */
.lex-page {
    font-family: var(--font-body);
    color: var(--lex-gray-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lex-page *,
.lex-page *::before,
.lex-page *::after {
    box-sizing: border-box;
}

.lex-page h1,
.lex-page h2,
.lex-page h3,
.lex-page h4,
.lex-page h5,
.lex-page h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px 0;
    color: var(--lex-blue-dark);
}

.lex-page h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; }
.lex-page h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.lex-page h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
.lex-page h4 { font-size: 1.125rem; }

.lex-page p {
    margin: 0 0 16px 0;
}

.lex-page p:last-child {
    margin-bottom: 0;
}

/* Gold highlight for H1 spans */
.lex-page h1 span,
.lex-page .lex-gold-text {
    color: var(--lex-gold-light);
}

/* =============================================================================
   LAYOUT UTILITIES
   ============================================================================= */
.lex-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.lex-section {
    padding: var(--section-padding);
}

/* Section Color Variants */
.lex-section--white {
    background: var(--lex-white);
}

.lex-section--gray {
    background: var(--lex-gray-light);
}

.lex-section--blue {
    background: linear-gradient(135deg, var(--lex-blue-dark) 0%, var(--lex-blue) 100%);
    color: var(--lex-white);
}

.lex-section--blue h2,
.lex-section--blue h3,
.lex-section--blue h4 {
    color: var(--lex-white);
}

.lex-section--blue p {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Header */
.lex-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.lex-section-header p {
    font-size: 1.125rem;
    color: var(--lex-gray);
    max-width: 650px;
    margin: 0 auto;
}

.lex-section--blue .lex-section-header p {
    color: rgba(255, 255, 255, 0.85);
}

/* =============================================================================
   GRID LAYOUTS
   ============================================================================= */
.lex-grid {
    display: grid;
    gap: 32px;
}

.lex-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lex-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lex-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 968px) {
    .lex-grid--3,
    .lex-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .lex-grid--2,
    .lex-grid--3,
    .lex-grid--4 { grid-template-columns: 1fr; }
    
    .lex-section {
        padding: var(--section-padding-mobile);
    }
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.lex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.4;
}

/* Primary Button - Gold (use for main CTAs) */
.lex-btn--gold {
    background: linear-gradient(180deg, var(--lex-gold-light) 0%, var(--lex-gold) 50%, var(--lex-gold-dark) 100%);
    color: #211511 !important;
    box-shadow: 0 4px 20px rgba(212, 160, 62, 0.4);
}

.lex-btn--gold:hover,
.lex-btn--gold:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 160, 62, 0.5);
    background: linear-gradient(180deg, #f0c45a 0%, var(--lex-gold-light) 50%, #c9972f 100%);
    color: #211511 !important;
}

/* Secondary Button - Blue */
.lex-btn--blue {
    background: var(--lex-blue);
    color: var(--lex-white) !important;
    box-shadow: 0 4px 20px rgba(19, 56, 101, 0.25);
}

.lex-btn--blue:hover,
.lex-btn--blue:focus {
    background: var(--lex-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(19, 56, 101, 0.35);
    color: var(--lex-white) !important;
}

/* Outline Button (for dark/blue backgrounds) */
.lex-btn--outline {
    background: transparent !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lex-btn--outline:hover,
.lex-btn--outline:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Button Sizes */
.lex-btn--sm { padding: 12px 24px; font-size: 0.9rem; }
.lex-btn--lg { padding: 20px 40px; font-size: 1.1rem; }
.lex-btn--full { width: 100%; }

/* Button with Icon */
.lex-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* =============================================================================
   CARDS
   ============================================================================= */
.lex-card {
    background: var(--lex-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

/* Card with gold bottom border */
.lex-card--accent {
    border-bottom: 4px solid var(--lex-gold);
}

/* Blue card (for dark backgrounds or standalone) */
.lex-card--blue {
    background: linear-gradient(135deg, var(--lex-blue-dark) 0%, var(--lex-blue) 100%);
    color: var(--lex-white);
}

.lex-card--blue h3,
.lex-card--blue h4 {
    color: var(--lex-white);
}

.lex-card--blue p {
    color: rgba(255, 255, 255, 0.9);
}

/* Card Icon */
.lex-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lex-blue) 0%, var(--lex-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lex-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--lex-white);
    stroke: var(--lex-white);
}

.lex-card__icon--gold {
    background: linear-gradient(180deg, var(--lex-gold-light) 0%, var(--lex-gold) 50%, var(--lex-gold-dark) 100%);
}

.lex-card__icon--gold svg {
    color: #211511;
    stroke: #211511;
}

/* =============================================================================
   BADGE / EYEBROW TEXT
   ============================================================================= */
.lex-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 56, 101, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lex-blue);
    margin-bottom: 16px;
}

.lex-badge svg {
    width: 18px;
    height: 18px;
}

.lex-section--blue .lex-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--lex-white);
}

/* Badge in hero - more visible */
.lex-hero .lex-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =============================================================================
   FEATURE / CHECK LISTS
   ============================================================================= */
.lex-features {
    display: grid;
    gap: 16px;
}

.lex-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lex-feature__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--lex-green);
}

.lex-section--blue .lex-feature__icon {
    color: var(--lex-gold-light);
}

/* =============================================================================
   FAQ ACCORDION
   ============================================================================= */
.lex-faq {
    max-width: 800px;
    margin: 0 auto;
}

.lex-faq__item {
    background: var(--lex-white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.lex-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--lex-blue-dark);
    background: var(--lex-white);
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

.lex-faq__question:hover {
    background: var(--lex-gray-light);
}

.lex-faq__question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--lex-blue);
}

.lex-faq__item.active .lex-faq__question svg {
    transform: rotate(180deg);
}

.lex-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--lex-gray);
}

.lex-faq__item.active .lex-faq__answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* =============================================================================
   CTA BOX
   ============================================================================= */
.lex-cta-box {
    background: linear-gradient(135deg, var(--lex-gray-light) 0%, #e8f4fc 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    border: 2px solid rgba(19, 56, 101, 0.08);
}

.lex-cta-box h2 {
    margin-bottom: 12px;
}

.lex-cta-box > p {
    color: var(--lex-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

.lex-cta-box__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blue CTA Box */
.lex-cta-box--blue {
    background: linear-gradient(135deg, var(--lex-blue-dark) 0%, var(--lex-blue) 100%);
    border: none;
}

.lex-cta-box--blue h2 {
    color: var(--lex-white);
}

.lex-cta-box--blue > p {
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================================================
   PHONE NUMBER DISPLAY
   ============================================================================= */
.lex-phone {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--lex-blue-dark);
}

.lex-phone a {
    color: inherit !important;
    text-decoration: none !important;
}

.lex-phone a:hover {
    color: var(--lex-blue) !important;
}

.lex-phone--white,
.lex-phone--white a {
    color: var(--lex-white) !important;
}

/* =============================================================================
   TESTIMONIAL
   ============================================================================= */
.lex-testimonial {
    background: var(--lex-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
}

.lex-testimonial::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--lex-gold);
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
    opacity: 0.25;
}

.lex-testimonial__stars {
    color: var(--lex-gold);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.lex-testimonial__text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--lex-gray-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lex-testimonial__author {
    font-weight: 600;
    color: var(--lex-blue-dark);
}

/* =============================================================================
   ZIP CODE / AREA TAGS
   ============================================================================= */
.lex-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lex-area-tag {
    background: var(--lex-gray-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--lex-gray-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.lex-area-tag:hover {
    background: var(--lex-blue);
    color: var(--lex-white);
}

/* =============================================================================
   TRUST INDICATORS / BADGES ROW
   ============================================================================= */
.lex-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.lex-trust-badges img {
    height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.lex-trust-badges img:hover {
    opacity: 1;
}

/* =============================================================================
   RESPONSIVE UTILITIES
   ============================================================================= */
.lex-text-center { text-align: center; }
.lex-text-left { text-align: left; }

@media (max-width: 768px) {
    .lex-hide-mobile { display: none !important; }
    
    .lex-cta-box {
        padding: 32px 24px;
    }
    
    .lex-testimonial {
        padding: 32px 24px;
    }
    
    .lex-testimonial::before {
        font-size: 3rem;
        top: 10px;
        left: 15px;
    }
}

@media (min-width: 769px) {
    .lex-hide-desktop { display: none !important; }
}
/* =============================================================================
   LEX AIR - SERVICE + LOCATION PAGE STYLES
   
   Include this CSS along with lex-base-styles.css for service+location pages
   ============================================================================= */

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.lex-hero {
    position: relative;
    z-index: 1;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--lex-blue-dark) 0%, var(--lex-blue) 50%, var(--lex-blue-light) 100%);
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Subtle pattern overlay */
.lex-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* Bottom angle */
.lex-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--lex-white);
    transform: skewY(-1.5deg);
    transform-origin: bottom left;
    z-index: 1;
}

.lex-hero__content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 120px 24px;
    width: 100%;
}

.lex-hero__text {
    max-width: 750px;
    color: var(--lex-white);
}

.lex-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--lex-white);
    animation: lexFadeInUp 0.6s ease-out 0.1s both;
}

.lex-hero h1 span {
    color: var(--lex-gold-light);
}

.lex-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
    animation: lexFadeInUp 0.6s ease-out 0.2s both;
}

/* Hero Feature List */
.lex-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 32px;
    animation: lexFadeInUp 0.6s ease-out 0.3s both;
}

.lex-hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.lex-hero__feature svg {
    width: 22px;
    height: 22px;
    color: var(--lex-green);
    flex-shrink: 0;
}

/* Hero CTA Buttons */
.lex-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: lexFadeInUp 0.6s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

/* Ensure outline button is visible in hero */
.lex-hero__cta .lex-btn--outline {
    background: transparent !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.lex-hero__cta .lex-btn--outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: #ffffff !important;
}

/* =============================================================================
   TWO COLUMN LAYOUT
   ============================================================================= */
.lex-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lex-two-col__content h2 {
    margin-bottom: 16px;
}

.lex-two-col__content > p {
    color: var(--lex-gray);
    margin-bottom: 24px;
}

.lex-two-col__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.lex-two-col__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================================================
   SERVICE PAGE CARD OVERRIDES
   ============================================================================= */
.lex-service-page .lex-card--blue {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.lex-service-page .lex-card--blue h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.lex-service-page .lex-card--blue p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes lexFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lexFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 968px) {
    .lex-hero {
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .lex-hero__content {
        padding: 60px 24px;
    }
    
    .lex-hero h1 {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }
    
    .lex-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lex-two-col__image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .lex-hero__content {
        padding: 40px 20px;
    }
    
    .lex-hero__features {
        flex-direction: column;
        gap: 12px;
    }
    
    .lex-hero__cta {
        flex-direction: column;
    }
    
    .lex-hero__cta .lex-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lex-hero::after {
        height: 50px;
    }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */
@media print {
    .lex-hero {
        background: #133865 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .lex-btn {
        border: 2px solid currentColor !important;
    }
}/* End custom CSS */