/* Start custom CSS for html, class: .elementor-element-09de319 *//* ============================================
   FLEXBOX-POWERED RESPONSIVE CSS
   For Elementor Pro - Production Ready
   Mobile-First Approach
   ============================================ */

/* ============================================
   CSS VARIABLES (Custom Properties)
   Centralized color & spacing system
   ============================================ */
:root {
    /* Brand Colors */
    --primary-blue: #1296f5;
    --accent-yellow: #fbb805;
    --black: #000000;
    --dark-gray: #2c3e50;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --hover-blue: #0d7dd1;
    --hover-yellow: #e0a604;
    
    /* Spacing System */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 50px;
    --spacing-xxxl: 70px;
    
    /* Typography */
    --font-heading: 'Oswald', Arial, sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ============================================
   MAIN PAGE WRAPPER
   Flexbox: Vertical stacking of sections
   ============================================ */
.page-wrapper {
    /* Flex container for vertical layout */
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    width: 100%;
    min-height: 100vh;
}

/* ============================================
   FLEX CONTAINER - Reusable Container
   Centers content with max-width constraint
   ============================================ */
.flex-container {
    /* Flex container for centering content */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* CTA container special centering */
.cta-container {
    align-items: center; /* Center all children horizontally */
    text-align: center;
}

/* ============================================
   FLEX SECTION - Base Section Styling
   ============================================ */
.flex-section {
    /* Each section is a flex item in page-wrapper */
    width: 100%;
    padding: var(--spacing-xxxl) var(--spacing-md);
}

/* Section-specific backgrounds */
.process-section {
    background: var(--white);
    padding-top: 80px; /* First section needs extra top padding */
}

.benefits-section {
    background: var(--primary-blue);
    color: var(--white);
}

.commercial-section {
    background: var(--white);
}

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

.final-cta-section {
    background: var(--accent-yellow);
    color: var(--black);
}

/* ============================================
   SECTION HEADER
   Flexbox: Centered text content
   ============================================ */
.section-header {
    /* Flex container for header content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 2rem; /* Mobile-first: Start smaller */
    color: var(--black);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    position: relative;
    padding-bottom: var(--spacing-md);
}

/* Yellow underline accent */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
}

/* White title for blue background */
.benefits-section .section-title {
    color: var(--white);
}

.section-intro {
    font-size: 1rem;
    max-width: 800px;
    color: #555;
    line-height: 1.8;
}

.benefits-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FLEX GRID - Universal Grid System
   Flexbox: Responsive card layouts
   ============================================ */
.flex-grid {
    /* Flex container with wrapping */
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to new rows */
    gap: var(--spacing-lg); /* Modern gap property for spacing */
    width: 100%;
}

/* Mobile-first: Single column by default */
.flex-grid > * {
    flex: 1 1 100%; /* Grow, shrink, 100% width on mobile */
    min-width: 0; /* Prevent flex item overflow */
}

/* ============================================
   PROCESS GRID - 8 Steps Layout
   ============================================ */
.process-grid {
    margin-top: var(--spacing-xxl);
}

.step-card {
    /* Flex container for card content */
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 35px 25px;
    border-radius: 10px;
    border-top: 4px solid var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    /* Flex item - self-positioned */
    display: inline-flex; /* Flex container for centering number */
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.step-title {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ============================================
   BENEFITS GRID - 6 Benefits Layout
   ============================================ */
.benefits-grid {
    margin-top: var(--spacing-xxl);
}

.benefit-card {
    /* Flex container for card content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.benefit-description {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ============================================
   TWO-COLUMN FLEX LAYOUT
   Flexbox: Side-by-side columns on desktop
   ============================================ */
.flex-two-column {
    /* Flex container for 2-column layout */
    display: flex;
    flex-direction: column; /* Mobile-first: Stack vertically */
    gap: var(--spacing-xxl);
    margin: var(--spacing-xl) 0;
}

.flex-column {
    /* Each column is a flex item */
    flex: 1; /* Equal width distribution */
    min-width: 0; /* Prevent overflow */
}

.column-title {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.column-text {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Visual Box Styling */
.visual-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-yellow);
}

.box-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.box-list {
    list-style: none;
}

.box-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.box-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ============================================
   PROPERTY TYPES SECTION
   ============================================ */
.property-types {
    margin-top: var(--spacing-xxl);
}

.subsection-title {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.property-grid {
    margin-top: var(--spacing-lg);
}

.property-card {
    /* Reuses step-card styling but without number */
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 35px 25px;
    border-radius: 10px;
    border-top: 4px solid var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-title {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.property-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ============================================
   SERVICE AREA - Location Content
   ============================================ */
.location-content-box {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Areas Grid - Flexbox */
.areas-grid {
    margin-top: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.area-tag {
    /* Flex item in areas grid */
    flex: 1 1 auto; /* Grow to fill, shrink if needed, auto width */
    min-width: 150px; /* Minimum width before wrapping */
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px var(--spacing-md);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

/* Clickable area tag links */
.area-link {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-link:hover {
    background: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 150, 245, 0.4);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    color: var(--black);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--black);
}

.phone-link {
    /* Inline-flex for self-sizing */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--black);
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.phone-link:hover {
    background: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   Mobile-First Approach
   ============================================ */

/* ============================================
   TABLET: 768px and up
   2-column layouts start appearing
   ============================================ */
@media (min-width: 768px) {
    /* Typography scales up */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-intro {
        font-size: 1.15rem;
    }
    
    /* Process Grid: 2 columns on tablet */
    .process-grid > .step-card {
        flex: 1 1 calc(50% - var(--spacing-lg)); /* 2 columns with gap */
        max-width: calc(50% - var(--spacing-lg));
    }
    
    /* Benefits Grid: 2 columns on tablet */
    .benefits-grid > .benefit-card {
        flex: 1 1 calc(50% - var(--spacing-lg));
        max-width: calc(50% - var(--spacing-lg));
    }
    
    /* Property Grid: 2 columns on tablet */
    .property-grid > .property-card {
        flex: 1 1 calc(50% - var(--spacing-lg));
        max-width: calc(50% - var(--spacing-lg));
    }
    
    /* Areas Grid: 4 per row */
    .areas-grid > .area-tag {
        flex: 1 1 calc(25% - var(--spacing-sm));
        max-width: calc(25% - var(--spacing-sm));
    }
    
    /* Two-column layout activates */
    .flex-two-column {
        flex-direction: row; /* Side-by-side columns */
        align-items: flex-start; /* Align to top */
    }
    
    /* Phone link scales up */
    .phone-link {
        font-size: 2.5rem;
    }
}

/* ============================================
   DESKTOP: 1024px and up
   3-column layouts and full spacing
   ============================================ */
@media (min-width: 1024px) {
    /* Typography scales to desktop size */
    .section-title {
        font-size: 2.8rem;
    }
    
    /* Process Grid: 4 columns on desktop (2x4 layout) */
    .process-grid > .step-card {
        flex: 1 1 calc(25% - var(--spacing-lg)); /* 4 columns */
        max-width: calc(25% - var(--spacing-lg));
    }
    
    /* Benefits Grid: 3 columns on desktop */
    .benefits-grid > .benefit-card {
        flex: 1 1 calc(33.333% - var(--spacing-lg)); /* 3 columns */
        max-width: calc(33.333% - var(--spacing-lg));
    }
    
    /* Property Grid: 4 columns on desktop */
    .property-grid > .property-card {
        flex: 1 1 calc(25% - var(--spacing-lg)); /* 4 columns */
        max-width: calc(25% - var(--spacing-lg));
    }
    
    /* Increase section padding */
    .flex-section {
        padding: var(--spacing-xxxl) var(--spacing-md);
    }
    
    /* Phone link at full size */
    .phone-link {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
}

/* ============================================
   LARGE DESKTOP: 1200px and up
   Maximum spacing and optimal layout
   ============================================ */
@media (min-width: 1200px) {
    /* Larger gaps for spacious feel */
    .flex-grid {
        gap: var(--spacing-xl);
    }
    
    /* Container gets more breathing room */
    .flex-container {
        padding: 0 var(--spacing-lg);
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus states for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .step-card,
    .benefit-card,
    .property-card {
        border: 2px solid var(--black);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .phone-link {
        color: var(--black);
        text-decoration: underline;
    }
    
    .step-card,
    .benefit-card,
    .property-card {
        break-inside: avoid;
    }
}/* End custom CSS */