/* FontAwesome font-display swap override to solve FOIT (Flash of Invisible Text) */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/* ============================================
   Move Smooth — Global Design System
   Modern • Clean • Professional • Mobile-First
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #0F2B4C;
    --primary-light: #1A4175;
    --primary-lighter: #E8EFF7;
    --primary-50: #F0F5FB;

    /* Accent Colors */
    --accent: #F26B3A;
    --accent-hover: #D85A2D;
    --accent-light: #FFF0EB;
    --accent-glow: rgba(242, 107, 58, 0.15);

    /* Neutral Palette */
    --bg-color: #FAFBFD;
    --bg-white: #FFFFFF;
    --bg-section: #F5F7FA;
    --text-main: #2D3748;
    --text-body: #4A5568;
    --text-light: #526071;
    --text-muted: #576575;
    --border-color: #E2E8F0;
    --border-light: #EDF2F7;

    /* Success / Info */
    --success: #38A169;
    --success-light: #F0FFF4;
    --info: #3182CE;
    --warning: #DD6B20;

    /* Spacing & Sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-accent: 0 8px 24px rgba(242,107,58,0.25);
    --shadow-primary: 0 8px 24px rgba(15,43,76,0.2);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   Base Styles
   ============================================ */
html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--accent-light);
    color: var(--primary);
}

/* ============================================
   Typography Utilities
   ============================================ */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-body { color: var(--text-body) !important; }
.text-light { color: var(--text-light) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-section { background-color: var(--bg-section) !important; }
.bg-primary-lighter { background-color: var(--primary-lighter) !important; }
.bg-accent-light { background-color: var(--accent-light) !important; }

.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

.font-poppins { font-family: 'Outfit', sans-serif !important; }
.font-roboto { font-family: 'Roboto', sans-serif !important; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-outline-accent {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-outline-gray {
    border: 1px solid var(--border-color);
    color: var(--text-main);
    background: white;
}
.btn-outline-gray:hover, .btn-outline-gray.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}
.btn-white:hover {
    background: var(--bg-section);
    color: var(--primary);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-pill {
    border-radius: var(--radius-pill) !important;
}

/* ============================================
   Navbar
   ============================================ */
.navbar-glass {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}
.navbar-glass.scrolled {
    padding: 8px 0 !important;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-main) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition-base);
    font-size: 0.92rem;
}
.nav-link:hover {
    color: var(--accent) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover::after {
    width: 24px;
}

.nav-phone {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-phone:hover {
    color: var(--accent);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) !important;
    padding: 0.5rem;
    animation: fadeInDown 0.2s ease;
}
.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary);
}
.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* ============================================
   Cards
   ============================================ */
.card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-smooth);
    background: white;
    overflow: hidden;
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all var(--transition-base);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
}

/* Company Card */
.company-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}
.company-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.company-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 8px;
}

.featured-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.rating-bubble {
    background: var(--success-light);
    color: var(--success);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.82rem;
}

/* ============================================
   Layout Utilities
   ============================================ */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

/* ============================================
   Hero Sections
   ============================================ */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4175 50%, #0d2240 100%);
    display: flex;
    align-items: center;
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,107,58,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.25rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4175 100%);
    padding: 100px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242,107,58,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   Glassmorphism
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumb-nav {
    padding: 12px 0;
    background: transparent;
}
.breadcrumb-nav ol {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}
.breadcrumb-nav li {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
}
.breadcrumb-nav li a {
    color: var(--text-light);
    transition: color var(--transition-fast);
}
.breadcrumb-nav li a:hover {
    color: var(--accent);
}
.breadcrumb-nav .separator {
    color: var(--text-muted);
    margin: 0 0.25rem;
}
.breadcrumb-nav li:last-child {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}
.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}
.trust-item span {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition-base);
}
.faq-accordion .accordion-item:hover {
    border-color: var(--primary-lighter);
}
.faq-accordion .accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    background: white;
    box-shadow: none;
    padding: 1.1rem 1.25rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-50);
    color: var(--primary);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform var(--transition-base);
}
.faq-accordion .accordion-body {
    color: var(--text-body);
    line-height: 1.8;
    padding: 0.5rem 1.25rem 1.25rem;
}

/* ============================================
   Process Steps
   ============================================ */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-accent);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
}
.stat-item {
    text-align: center;
}
.stat-item h2, .stat-item .stat-number {
    color: var(--accent);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}
.stat-item p, .stat-item .stat-label {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

/* ============================================
   Global Quick Quote Form
   ============================================ */
.global-quote-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4175 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.global-quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242,107,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-form-inline {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}
.quote-form-inline .form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: var(--bg-section);
}
.quote-form-inline .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,43,76,0.1);
    background: white;
}

/* Zip Autocomplete */
.zip-input-wrapper {
    position: relative;
}
.zip-input-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 2;
    font-size: 0.9rem;
}
.zip-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    max-height: 240px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
}
.zip-autocomplete-dropdown.show {
    display: block;
    animation: fadeInDown 0.15s ease;
}
.zip-autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}
.zip-autocomplete-item:last-child {
    border-bottom: none;
}
.zip-autocomplete-item:hover,
.zip-autocomplete-item.active {
    background: var(--primary-50);
}
.zip-autocomplete-item .zip-code {
    font-weight: 700;
    color: var(--primary);
    font-family: 'Roboto Mono', 'Roboto', monospace;
    min-width: 48px;
}
.zip-autocomplete-item .zip-location {
    color: var(--text-body);
}
.zip-autocomplete-item .zip-state {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    margin-left: auto;
}

/* ============================================
   Sticky Quote Button
   ============================================ */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-accent), 0 4px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.sticky-quote-btn:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242,107,58,0.35);
}

/* Click-to-Call (Mobile) */
.click-to-call {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1040;
    background: var(--success);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(56,161,105,0.3);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}
.click-to-call:hover {
    background: #2F855A;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .click-to-call {
        display: flex;
    }
}

/* ============================================
   Form Styles
   ============================================ */
.form-control, .form-select {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    transition: all var(--transition-fast);
    color: var(--text-main);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,43,76,0.08);
}
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.input-group-text {
    background: var(--bg-section);
    border: 2px solid var(--border-light);
    border-right: none;
    color: var(--text-muted);
}

/* ============================================
   Filter & Listing Styles
   ============================================ */
.filter-bar {
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
    z-index: 900;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.listing-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    border-left: 4px solid transparent;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}
.listing-card:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.listing-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

.service-tag {
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    display: inline-block;
}

/* ============================================
   Map
   ============================================ */
.map-sticky {
    position: sticky;
    top: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: calc(100vh - 120px);
    background: var(--border-light);
}

/* ============================================
   Scrollable Cards
   ============================================ */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}
.horizontal-scroll::-webkit-scrollbar { height: 6px; }
.horizontal-scroll::-webkit-scrollbar-track { background: transparent; }
.horizontal-scroll::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
.horizontal-scroll .card { min-width: 260px; flex-shrink: 0; }

/* ============================================
   Pagination
   ============================================ */
.pagination { gap: 0.4rem; }
.page-item .page-link {
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}
.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}
.page-item .page-link:hover {
    background-color: var(--primary-50);
    color: var(--primary);
    border-color: var(--primary-lighter);
}
.page-item.disabled .page-link {
    background-color: var(--bg-section);
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: #0B1929;
    color: white;
    padding: 80px 0 30px;
}
.site-footer a {
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}
.site-footer a:hover {
    color: white;
}
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 1.25rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(242,107,58,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(242,107,58,0); }
}

.animate-fadeIn { animation: fadeIn 0.6s ease; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease; }
.animate-fadeInDown { animation: fadeInDown 0.4s ease; }
.animate-slideInRight { animation: slideInRight 0.5s ease; }
.animate-pulse-glow { animation: pulseGlow 2s infinite; }

/* ============================================
   Schema-rich content
   ============================================ */
.seo-content {
    line-height: 1.9;
    color: var(--text-body);
    font-size: 1.05rem;
}
.seo-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
.seo-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}
.seo-content p {
    margin-bottom: 1rem;
}
.seo-content ul, .seo-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.seo-content li {
    margin-bottom: 0.4rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 80px 0 60px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .stat-item h2, .stat-item .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .page-hero h1 {
        font-size: 1.7rem;
    }
    .section-padding {
        padding: 40px 0;
    }
    .service-card {
        padding: 28px 20px;
    }
    .sticky-quote-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 0.82rem;
    }
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* ============================================
   Misc Utilities
   ============================================ */
.hover-white:hover { color: white !important; }
.extra-small { font-size: 0.75rem; }
.z-index-1 { z-index: 1; position: relative; }
.rounded-4 { border-radius: var(--radius-xl) !important; }
.rounded-3 { border-radius: var(--radius-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }
.border-accent { border-color: var(--accent) !important; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary) 0%, #1a4175 100%); }
.bg-gradient-accent { background: linear-gradient(135deg, var(--accent) 0%, #e0522a 100%); }
.opacity-75 { opacity: 0.75; }
.letter-spacing-wide { letter-spacing: 1px; }

/* ============================================
   Luxury Multi-Step Modal Form Styling
   ============================================ */
#quoteModal .modal-content {
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}
#quoteModal .modal-header {
    background-color: transparent;
    border-bottom: none;
    padding-bottom: 0;
}
#quoteModal .modal-body {
    padding-top: 8px;
}

/* Stepper Tracker */
.stepper-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.stepper-line {
    background-color: #e2e8f0;
    transition: all 0.3s ease;
}
.stepper-line-progress {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step-node .node-circle {
    width: 44px;
    height: 44px;
    border: 2px solid #cbd5e1;
    background-color: #ffffff;
    color: #94a3b8;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}
.step-node .node-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    margin-top: 6px;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.step-node.active .node-circle {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 4px rgba(242, 107, 58, 0.18);
    transform: scale(1.05);
}
.step-node.active .node-text {
    color: var(--primary);
    font-weight: 800;
}
.step-node.completed .node-circle {
    border-color: #10b981;
    background-color: #10b981;
    color: #ffffff;
}
.step-node.completed .node-text {
    color: #10b981;
}

/* Choices/Move Size Cards */
.move-size-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.move-size-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.move-size-card i {
    font-size: 1.3rem;
    color: #94a3b8;
    transition: all 0.25s ease;
}
.move-size-card.active {
    border-color: var(--accent);
    background-color: #fffaf7;
}
.move-size-card.active i {
    color: var(--accent);
    transform: scale(1.1);
}
.move-size-card.active .card-label {
    color: var(--accent) !important;
}

/* Inputs and Forms */
.modal-step-section label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.modal-step-section input, 
.modal-step-section select {
    border-radius: 12px !important;
    padding: 12px 16px 12px 42px !important; /* Extra padding for input icons */
    font-size: 0.9rem;
    font-weight: 500;
    border: 1.5px solid #e2e8f0;
    background-color: #ffffff;
    color: var(--text-body);
    transition: all 0.25s ease;
}
.modal-step-section input.no-icon {
    padding-left: 16px !important;
}
.modal-step-section input:focus, 
.modal-step-section select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(242, 107, 58, 0.15);
    background-color: #ffffff;
}

/* Input Icon Custom Positioning */
.modal-step-section .zip-input-wrapper {
    position: relative;
}
.modal-step-section .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 10;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}
.modal-step-section input:focus + .input-icon,
.modal-step-section input:focus ~ .input-icon {
    color: var(--accent);
}

/* Animations */
.modal-step-section {
    animation: slideFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Navigation Buttons */
.step-nav-buttons .btn {
    border-radius: 12px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.step-nav-buttons .btn-back {
    background-color: #f8fafc;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
}
.step-nav-buttons .btn-back:hover {
    background-color: #f1f5f9;
    color: var(--text-dark);
    transform: translateX(-2px);
}
.step-nav-buttons .btn-next {
    background: linear-gradient(135deg, var(--accent) 0%, #e0522a 100%);
    color: #ffffff;
    border: none;
}
.step-nav-buttons .btn-next:hover {
    background: linear-gradient(135deg, #e0522a 0%, #c8411b 100%);
    color: #ffffff;
    transform: translateX(2px);
    box-shadow: 0 8px 20px rgba(242, 107, 58, 0.25);
}
#btn-submit {
    background: linear-gradient(135deg, var(--accent) 0%, #e0522a 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(242, 107, 58, 0.2);
}
#btn-submit:hover {
    background: linear-gradient(135deg, #e0522a 0%, #c8411b 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 107, 58, 0.3);
}

