/*
Theme Name: HEARTLAND Relocation Services
Theme URI: https://heartlandmoving.com
Description: Professional moving services website - Modern design with glassmorphism effects
Author: HEARTLAND
Version: 3.0.0
Text Domain: heartland
*/

/*
 * Main Stylesheet
 * Modern moving company design with Heartland brand colors
 */

/* --- 1. VARIABLES & RESET --- */
:root {
    /* Heartland Brand Colors - Brightened */
    --color-primary: #3D5A8F; /* Lighter Navy */
    --color-primary-hover: #4A6BA5;
    --color-secondary: #4FB8D9; /* Brighter Cyan */
    --color-secondary-light: #A8D8EA;
    --color-bg-tint: #F8FCFF;
    
    /* Accent: Heartland Burgundy - Brightened */
    --color-accent: #C93D5A;
    --color-accent-hover: #B82D4A;
    
    /* Tertiary: Gold for numbers and decorative elements */
    --color-tertiary: #D4AF37;
    --color-tertiary-light: #E8D08A;
    
    --bg-white: #FFFFFF;
    --text-main: #2D4A6F; /* Lighter Navy for text */
    --text-body: #5A6B7A; /* Lighter gray */
    --border-color: #E8F0F5;
    --nav-height: 90px;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(61, 90, 143, 0.12);
    --shadow-hover: 0 20px 50px -12px rgba(61, 90, 143, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--text-main); line-height: 1.15; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, button { font-family: inherit; }

/* --- 2. UTILITY CLASSES --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 50px 0; }

/* Standardized section spacing */
section {
    margin: 0;
    padding: 0;
}

section.section-padding {
    padding: 50px 0;
}
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; gap: 30px; }

.section-tag {
    background-color: rgba(169, 29, 58, 0.1);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    border: 1px solid rgba(169, 29, 58, 0.2);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.text-highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
    font-style: italic;
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
}

/* --- 3. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(169, 29, 58, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 29, 58, 0.4);
    filter: brightness(1.05);
}

.btn-explore-services {
    padding: 12px 16px !important;
    font-size: 18px !important;
    width: fit-content !important;
    min-width: auto !important;
    display: inline-flex !important;
}

/* Hide WordPress emoji conversion for arrow */
.btn-cta img.emoji,
.btn-explore-services img.emoji,
.btn-cta .emoji,
.btn-explore-services .emoji {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

/* Add white arrow using CSS ::after instead of text character */
.btn-cta::after,
.btn-explore-services::after {
    content: '↗';
    display: inline-block;
    margin-left: 6px;
    color: white;
    font-size: 1em;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    vertical-align: baseline;
}

/* Ensure buttons with arrow class get the arrow */
.btn-cta:not(.btn-nav):not(.btn-nav-mobile)::after {
    content: '↗';
    display: inline-block;
    margin-left: 6px;
    color: white;
    font-size: 1em;
    line-height: 1;
}

/* Also add arrow to btn-outline buttons */
.btn-outline::after {
    content: '↗';
    display: inline-block;
    margin-left: 6px;
    color: inherit;
    font-size: 1em;
    line-height: 1;
}


.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a4a7a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(31, 58, 95, 0.3);
    transform: translateY(-2px);
}

/* --- 4. HEADER & MENU --- */
.top-bar {
    background: var(--color-bg-tint);
    color: var(--text-body);
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar-content { 
    display: flex; 
    justify-content: flex-end; 
    gap: 25px; 
    font-weight: 600; 
}

.top-bar-content i { 
    color: var(--color-accent); 
    margin-right: 8px; 
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.brand-logo {
    display: block;
    height: 45px;
}

.brand-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    align-items: center;
    justify-content: center;
}

.nav-links li { 
    position: relative; 
}

.nav-links li a { 
    position: relative; 
    padding: 5px 0; 
    color: var(--text-main); 
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.nav-links li a:hover { 
    color: var(--color-accent); 
}

.nav-links li a.active { 
    color: var(--color-accent); 
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle i,
.nav-item.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--color-bg-tint);
    color: var(--color-accent);
    padding-left: 25px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Navigation Button */
.btn-nav {
    font-weight: 700;
    color: white !important;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%);
    padding: 12px 24px !important;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(169, 29, 58, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #c91d3a 0%, var(--color-accent) 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 29, 58, 0.4);
}

.btn-nav-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
    padding: 5px;
}

.contact-cta {
    font-weight: 700;
    color: white !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a4a7a 100%);
    padding: 12px 24px !important;
    border-radius: 8px;
    display: block;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(31, 58, 95, 0.3);
    transition: all 0.3s ease;
}

.contact-cta:hover { 
    background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%) !important; 
    color: white !important; 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 29, 58, 0.4);
}

.mobile-toggle { 
    display: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    color: var(--color-primary); 
}

/* --- 5. HERO SECTION --- */
.hero {
    background: radial-gradient(circle at 50% 50%, rgba(61, 90, 143, 0.05) 0%, rgba(33, 158, 188, 0.03) 50%, transparent 100%);
    padding: 50px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%233D5A8F' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(33, 158, 188, 0.1) 0%, rgba(79, 184, 217, 0.05) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}


.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.1;
}

.hero p { 
    font-size: 1.3rem; 
    max-width: 650px; 
    margin: 0 auto 50px; 
    color: var(--text-body); 
    font-weight: 400; 
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-img-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 40px auto -31px;
    background: rgba(61, 90, 143, 0.95);
    backdrop-filter: blur(12px);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(61, 90, 143, 0.4);
    border: none;
    overflow: visible;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.135) 0%, rgba(255,255,255,0.105) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(33, 158, 188, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

/* Mobile: Ensure hero image stays below quote form */
@media (max-width: 768px) {
    .hero-img-wrapper {
        z-index: 5;
        width: calc(100% - 30px);
        max-width: 100%;
        margin: 50px 15px -40px 15px;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-img-wrapper::before {
        border-radius: 0;
    }
    
    .hero-img-wrapper img {
        z-index: 0;
        height: 250px;
        object-fit: cover;
        border-radius: 0 0 20px 20px;
    }
    
    .quote-bar-container {
        z-index: 10;
        position: relative;
        margin: -60px auto 0;
    }
}

/* --- 6. GLASSMORPHISM QUOTE WIDGET --- */
.quote-bar-container {
    background: rgba(61, 90, 143, 0.95);
    backdrop-filter: blur(12px);
    padding: 30px 0;
    position: relative;
    z-index: 10;
    margin: -50px auto 0;
    box-shadow: 0 25px 50px -12px rgba(61, 90, 143, 0.4);
    border-radius: 20px;
    max-width: 1240px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.hero-img-wrapper img {
    position: relative;
    z-index: 0;
}

.quote-bar-container::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 100%;
    background: radial-gradient(circle, rgba(33, 158, 188, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.quote-bar-container .container,
.quote-bar-container .quote-form {
    position: relative;
    z-index: 1;
}

.quote-bar-container .container { width: 100%; }

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: flex-end;
    padding: 0 40px;
}

.input-group label { 
    display: block; 
    color: rgba(255,255,255,0.8); 
    font-size: 0.75rem; 
    margin-bottom: 10px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group select:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-accent);
}

.input-group input::placeholder { color: rgba(255,255,255,0.4); }
.input-group select option { color: #333; }

/* --- 7. SERVICES SECTION --- */
.services-section { 
    background: #FFFFFF;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 20px 20px;
    position: relative;
    padding: 50px 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 8%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.07'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 12%;
    width: 220px;
    height: 220px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.05'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    gap: 30px;
}

.service-card {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.service-card::before {
    display: none;
}

.service-icon {
    font-size: 2.5rem;
    color: #A91D3A;
    margin-bottom: 20px;
    background: transparent;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0; 
    color: #000000; 
    font-weight: 600; 
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* --- 8. EXPLORE SERVICES SECTION --- */
.explore-services-section {
    background: var(--bg-white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.explore-services-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 140px;
    height: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.05'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.explore-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.explore-services-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.explore-services-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.explore-services-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.explore-services-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.explore-services-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    padding: 40px;
}

.explore-illustration-svg {
    width: 100%;
    height: 100%;
    color: var(--color-primary);
    opacity: 0.95;
}

.explore-services-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.explore-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.explore-services-subtitle {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.explore-services-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
    max-width: 550px;
}


/* --- 9. LOGO SLIDER --- */
/* --- BRAND SLIDESHOW --- */
.logo-slider {
    padding: 50px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.logo-container::before,
.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: logoScroll 25s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex-shrink: 0;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-body);
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- 9. FAST FACTS --- */
.fast-facts {
    background-color: var(--color-primary);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.fast-facts::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 8%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23FFFFFF' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.fast-facts::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 170px;
    height: 170px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23FFFFFF' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}
    position: relative;
    overflow: hidden;
}


.fast-facts::after {
    content: '';
    position: absolute;
    top: -50%; left: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(33, 158, 188, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
    z-index: 1;
}

.fact-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 20px;
}

.fact-item:last-child { border-right: none; }

.fact-item h3 { 
    font-size: 3.5rem; 
    color: white; 
    margin-bottom: 5px; 
    font-weight: 800; 
    line-height: 1; 
}

.fact-item p { 
    font-size: 0.85rem; 
    opacity: 0.7; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--color-secondary-light); 
    font-weight: 700;
}

/* --- 10. PROCESS SECTION --- */
/* --- PROCESS STEPS --- */
.process-steps-container {
    margin-top: 60px;
    position: relative;
}

.process-steps-container::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 15%;
    width: 160px;
    height: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.process-steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.process-step-item {
    flex: 1;
    max-width: 320px;
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.process-step-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(31, 58, 95, 0.15);
    border-color: var(--color-accent);
}

.step-number-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Source Serif 4', serif;
    box-shadow: 0 4px 15px rgba(169, 29, 58, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step-item:hover .step-number-badge {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(169, 29, 58, 0.5);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(169, 29, 58, 0.1) 0%, rgba(169, 29, 58, 0.15) 100%);
    border-radius: 50%;
    border: 3px solid rgba(169, 29, 58, 0.2);
    transition: all 0.4s ease;
}

.process-step-item:hover .step-icon-circle {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    border-color: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(169, 29, 58, 0.3);
}

.step-icon-circle i {
    font-size: 2.2rem;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.process-step-item:hover .step-icon-circle i {
    color: white;
    transform: scale(1.1);
}

.process-step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

.process-step-item p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.process-connector {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin: 0 -20px;
    z-index: 0;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent) 0%, rgba(169, 29, 58, 0.3) 100%);
    border-radius: 2px;
}

.connector-arrow {
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.6;
}

/* --- 11. TRUCK BANNER --- */
.truck-banner-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: transparent;
    overflow: visible;
    padding: 50px 20px;
}

/* Desktop Truck Banner */
.truck-banner-desktop {
    display: block;
}

/* Mobile Truck Banner */
.truck-banner-mobile {
    display: block;
    padding: 50px 20px;
    position: relative;
}

/* Desktop: Show mobile version, hide desktop */
@media (min-width: 1025px) {
    .truck-banner-desktop {
        display: none !important;
    }
    .truck-banner-mobile {
        display: block !important;
        padding: 50px 20px;
    }
    
    .truck-banner-mobile-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: none;
        background-color: var(--bg-white);
        min-height: 400px;
    }
    
    .truck-banner-mobile-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: 1;
    }
    
    .truck-banner-mobile-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    }
    
    .truck-banner-mobile-content {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 10;
        padding: 0 40px;
        width: 100%;
        max-width: 50%;
    }
    
    .truck-banner-mobile-content h2 {
        width: auto;
        max-width: 500px;
        font-size: 3rem;
        line-height: 1.2;
        color: var(--color-primary);
        margin-bottom: 30px;
        font-weight: 800;
    }
    
    .truck-banner-mobile-content .btn-cta {
        background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%);
        color: white;
        border: none;
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(169, 29, 58, 0.3);
    }
}

.truck-banner-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-white);
    min-height: 400px;
    box-shadow: none;
}

.truck-banner-section .container .truck-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.truck-banner-section .container .truck-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
}

.truck-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: url('/wp-content/themes/heartland/truck1.svg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.truck-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 45%, rgba(255,255,255,0) 100%);
}

.truck-banner-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(33, 158, 188, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    display: none;
}

.truck-banner-section .container .truck-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    margin-left: 0;
    margin-right: auto;
    padding: 50px 40px;
}

.truck-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.truck-text-box { 
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 40px;
}

.truck-text-box .btn-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(169, 29, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.truck-text-box .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 29, 58, 0.4);
    filter: brightness(1.05);
}

.truck-text-box h2 {
    max-width: 500px;
    width: auto;
    font-size: 3.08rem;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 11;
}

/* --- 12. FAQ SECTION --- */
.faq-section { 
    background-color: var(--bg-white); 
    padding: 50px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

details {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    margin-bottom: 0;
}

details[open] {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-soft);
}

summary {
    padding: 25px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.1rem;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s;
}

details[open] summary::after { 
    content: '-'; 
    transform: rotate(0deg); 
    color: var(--color-primary); 
}

.faq-content {
    padding: 0 25px 30px 25px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- 13. BLOG SECTION --- */
.blog-section { 
    padding: 50px 0; 
    background: var(--bg-white); 
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
    border: 1px solid var(--border-color);
}

.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.blog-img {
    height: 240px;
    background: #ccc;
    position: relative;
    overflow: hidden;
}

.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-text { padding: 30px; }

.blog-date {
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.blog-text h3 { 
    font-size: 1.2rem; 
    margin-bottom: 20px; 
    line-height: 1.4; 
    color: var(--color-primary); 
    font-weight: 700;
}

.read-more { 
    font-size: 0.9rem; 
    font-weight: 700; 
    color: var(--color-primary); 
    display: flex; 
    align-items: center; 
    gap: 5px;
}

.read-more:hover { color: var(--color-accent); }
.read-more i { font-size: 0.8rem; transition: 0.3s; }
.read-more:hover i { transform: translateX(3px); }

/* --- 14. TESTIMONIALS --- */
.testimonials { 
    background: transparent; 
    padding: 50px 0; 
}

.testimonial-split {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: center;
}

.rating-box { border-right: 1px solid var(--border-color); padding-right: 40px; }

.rating-score { 
    font-size: 5rem; 
    font-weight: 800; 
    color: var(--color-primary); 
    line-height: 1; 
    margin-bottom: 10px; 
    letter-spacing: -2px;
}

.quote-box p { 
    font-style: italic; 
    font-size: 1.5rem; 
    margin-bottom: 30px; 
    color: var(--text-main); 
    font-weight: 500; 
    line-height: 1.5; 
}

.user-profile { display: flex; align-items: center; gap: 20px; }

.avatar { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid white; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.star-rating { color: var(--color-accent); margin-top: 5px; font-size: 1rem; }

/* --- 15. CTA SECTION --- */
.cta-section {
    background-color: var(--color-primary);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 100%;
    background: radial-gradient(circle, rgba(79, 184, 217, 0.25) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168, 216, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(33, 158, 188, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Star Blob Decorations - Universal */
.star-blob-top {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%233D5A8F' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.star-blob-bottom {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* CTA Section Star Blobs (White for dark background) */
.cta-section .star-blob-top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23FFFFFF' opacity='0.1'/%3E%3C/svg%3E");
}

.cta-section .star-blob-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23FFFFFF' opacity='0.08'/%3E%3C/svg%3E");
}

.cta-container { position: relative; z-index: 2; }
.cta-section h2 { color: white; margin-bottom: 20px; font-size: 3rem; letter-spacing: -1px;}
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin-bottom: 40px; }

/* --- 16. BLOG PAGE STYLES --- */
.blog-hero {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

/* Blog Search Bar */
.blog-search-container {
    max-width: 600px;
    margin: 30px auto 40px;
}

.blog-search-form {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.blog-search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background: transparent;
}

.blog-search-input::placeholder {
    color: var(--text-body);
    opacity: 0.6;
}

.blog-search-input:focus {
    outline: none;
}

.blog-search-btn {
    padding: 16px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-search-btn:hover {
    background: var(--color-primary-hover);
}

.blog-search-btn i {
    font-size: 1.1rem;
}

/* Category Filters */
.blog-category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.category-filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.category-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Featured Post Section */
.featured-post-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.featured-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.featured-post-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-category {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.featured-post-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-post-content h2 a {
    color: inherit;
    transition: color 0.3s ease;
}

.featured-post-content h2 a:hover {
    color: var(--color-accent);
}

.featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.featured-post-date {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 600;
}

/* Blog CTA Strip */
.blog-cta-strip {
    background: var(--color-bg-tint);
    padding: 40px 0;
    margin: 50px 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: none;
}

.blog-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 184, 217, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.blog-cta-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    flex: 1;
}

.blog-cta-content .btn-cta {
    flex-shrink: 0;
}

/* Sticky Bottom Bar (Mobile) */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 12px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

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

.sticky-bar-content {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-call-btn,
.sticky-quote-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-call-btn {
    background: var(--color-primary);
    color: white;
}

.sticky-call-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.sticky-quote-btn {
    background: var(--color-accent);
    color: white;
}

.sticky-quote-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

.sticky-call-btn i {
    font-size: 1.1rem;
}

.sticky-quote-btn i {
    font-size: 0.9rem;
}

.blog-route-finder {
    margin: -50px auto 0;
}

/* Featured Route Guides Section - Completely Separate */
.featured-route-guides-section {
    background: var(--color-bg-tint);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.featured-route-guides-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%233D5A8F' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.featured-route-guides-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 130px;
    height: 130px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.featured-route-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.featured-route-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    border: 1px solid var(--border-color);
}

.featured-route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.featured-route-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.featured-route-card .route-distance {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-route-card .route-distance i {
    color: var(--color-primary);
}

.featured-route-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.featured-route-card .route-cta {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.featured-route-card:hover .route-cta {
    color: var(--color-accent-hover);
}

@media (max-width: 768px) {
    .featured-route-guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-route-card {
        padding: 25px 20px;
    }
    
    .featured-route-card h3 {
        font-size: 1.2rem;
    }
}

.route-guides-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.route-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.route-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.route-card-header {
    margin-bottom: 20px;
}

.route-states-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.route-state-code {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.route-arrow {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.route-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.route-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.route-distance,
.route-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 600;
}

.route-distance i,
.route-time i {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.route-card-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    margin: 0;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--text-body);
    background: transparent;
    border: none;
    transition: color 0.2s ease;
    min-width: 36px;
    text-align: center;
}

.blog-pagination a:hover {
    color: var(--color-primary);
}

.blog-pagination .current {
    color: var(--color-primary);
    font-weight: 600;
}

.blog-pagination .prev,
.blog-pagination .next {
    color: var(--text-body);
    font-size: 1.1rem;
}

.blog-pagination .prev:hover,
.blog-pagination .next:hover {
    color: var(--color-primary);
}

.blog-pagination .dots {
    padding: 8px 4px;
    color: var(--text-body);
}

/* --- 16.5. WHERE WE OPERATE SECTION --- */
.where-we-operate-section {
    background: var(--bg-white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.where-we-operate-section::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.states-list-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.states-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Make Iowa (last card) span full width */
.states-list .state-list-item:nth-child(5) {
    grid-column: span 2;
}

.state-list-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 35px 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

.state-list-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.state-list-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 2px;
}

.state-marker-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    position: relative;
    animation: pulse-marker 2s ease-in-out infinite;
}

.state-marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.3;
    animation: ripple 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.state-list-content {
    flex: 1;
    width: 100%;
}

.state-list-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.state-list-content .state-abbr {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    opacity: 0.7;
}

.state-list-content p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.state-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.state-link:hover {
    color: var(--color-primary);
    gap: 12px;
}

.state-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.state-link:hover i {
    transform: translateX(4px);
}

/* --- 17. FOOTER --- */
footer { 
    background-color: #011D2B; 
    color: white; 
    padding: 80px 0 60px; 
    font-size: 0.95rem; 
}

.footer-grid { 
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    align-items: start; 
    gap: 50px;
}

.footer-company {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 35px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 0.9;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: block;
    text-align: left;
}

.footer-contact-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
    display: inline-block;
}

.footer-contact-value:hover {
    color: var(--color-accent);
}

.footer-email {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.footer-col h4 { 
    color: white; 
    text-transform: uppercase; 
    margin-bottom: 25px; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    font-weight: 800; 
    opacity: 0.8; 
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li { 
    margin-bottom: 0;
}

.footer-col ul li a { 
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease; 
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-col ul li a:hover { 
    color: white; 
    opacity: 1;
    transform: translateX(3px);
}



/* --- 17. MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .quote-form { grid-template-columns: 1fr 1fr; padding: 0 20px;}
    .quote-bar-container { 
        width: calc(100% - 40px); 
        margin: -60px 20px 0; 
        padding: 30px 20px;
        box-sizing: border-box;
    }
    .quote-form button { grid-column: span 2; margin-top: 10px;}
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .states-list { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .process-steps-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .process-steps-wrapper {
        display: flex;
        gap: 20px;
        width: max-content;
    }
    
    .process-step-item {
        flex: 0 0 calc(100vw - 80px);
        max-width: 400px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 40px 25px;
    }
    
    .process-connector {
        display: none;
    }
    .facts-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .route-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .featured-post-card { grid-template-columns: 1fr; }
    .testimonial-split { grid-template-columns: 1fr; gap: 40px; }
    .rating-box { border-right: none; border-bottom: 1px solid #ccc; padding-bottom: 30px; margin-bottom: 0; padding-right: 0;}
    .faq-grid { grid-template-columns: 1fr; gap: 20px;}
    .faq-col { gap: 20px; }
    .explore-services-grid { grid-template-columns: 1fr; gap: 50px; }
    .explore-services-visual { min-height: 400px; }
    .explore-services-image-wrapper { min-height: 400px; }
    .explore-services-subtitle { font-size: 2.5rem; }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 40px; 
    }
    
    .footer-company {
        max-width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 30px;
        text-align: left;
    }
    
    .footer-contact-info {
        text-align: left;
    }
    .truck-text-box h2 { 
        font-size: 2.31rem;
        max-width: 100%;
    }
    .truck-bg { width: 100%; opacity: 0.1; }
    .truck-overlay { background: none; }
}

/* Tablet styles for truck banner */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Hide desktop version on tablet */
    .truck-banner-desktop {
        display: none !important;
    }
    
    /* Show mobile version on tablet */
    .truck-banner-mobile {
        display: block !important;
        padding: 30px 20px;
        min-height: 380px;
    }
    
    .truck-banner-mobile-container {
        min-height: 340px;
    }
    
    .truck-banner-mobile-overlay {
        width: 50%;
    }
    
    .truck-banner-mobile-content {
        padding: 40px 30px;
        max-width: 85%;
    }
    
    .truck-banner-mobile-content h2 {
        font-size: 1.8rem;
    }
    
    .truck-banner-mobile-content .btn-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        display: grid;
        grid-template-columns: 40px 1fr auto;
        align-items: center;
        gap: 12px;
        position: relative;
        padding: 0 15px;
        width: 100%;
    }
    
    .mobile-toggle { 
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        cursor: pointer;
        order: 1;
    }
    
    .brand-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        order: 2;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .brand-logo img {
        height: 100%;
        max-height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .btn-nav-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 12px 18px !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: auto;
        width: auto;
        max-width: none;
        height: 38px;
        line-height: 1;
        margin: 0;
        order: 3;
    }
    
    .btn-nav {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom: 1px solid #eee;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }
    
    .nav-links.active { 
        max-height: 100vh;
        padding: 0;
        overflow-y: auto;
    }
    
    .nav-links li { 
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: left;
    }
    
    .nav-links li a { 
        display: flex; 
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px; 
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05); 
        color: var(--text-main);
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobile Dropdown Styles */
    .nav-item.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background: var(--color-bg-tint);
        width: 100%;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0;
    }
    
    .nav-item.dropdown .dropdown-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-item.dropdown .dropdown-menu li a {
        padding: 12px 20px 12px 40px;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    
    .contact-cta { display: none; }
    .quote-bar-container {
        padding: 30px 20px !important;
        margin: -60px 20px 0 !important;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        box-sizing: border-box;
    }
    
    .quote-bar-container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    .quote-form { 
        grid-template-columns: 1fr;
        padding: 0;
        margin: 0;
    }
    .quote-form button { 
        grid-column: span 1; 
        width: 100%;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(169, 29, 58, 0.4);
        transition: all 0.3s ease;
    }
    
    .quote-form button:active {
        transform: translateY(1px);
        box-shadow: 0 4px 15px rgba(169, 29, 58, 0.3);
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .section-padding {
        padding: 60px 0;
    }
    
    .step-icon-circle {
        width: 80px;
        height: 80px;
    }
    .step-icon-circle i {
        font-size: 2rem;
    }
    .process-step-item h3 {
        font-size: 1.3rem;
    }
    .step-number-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .explore-services-section {
        padding: 50px 0;
    }
    
    .fast-facts {
        padding: 50px 0;
    }
    
    .services-section {
        padding: 50px 0;
    }
    
    .truck-banner-section {
        padding: 50px 0;
    }
    
    .blog-section {
        padding: 50px 0;
    }
    
    .testimonials {
        padding: 50px 0;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .quote-bar-container {
        padding: 30px 20px !important;
        margin: -60px 20px 0 !important;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        box-sizing: border-box;
    }
    
    .quote-bar-container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    .quote-bar-container .quote-form {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    .facts-grid, .blog-grid { grid-template-columns: 1fr; }
    .fact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 30px 0; }
    .fact-item:last-child { border-bottom: none; }
    
    /* Where We Operate Mobile */
    .where-we-operate-section .container {
        max-width: 420px !important;
        padding: 0 15px;
        width: 100%;
    }
    .states-list-wrapper {
        max-width: 390px !important;
        margin: 0 auto;
        width: 390px !important;
    }
    .states-list { 
        grid-template-columns: 1fr !important; 
        gap: 25px;
        width: 390px !important;
        max-width: 390px !important;
        margin: 0 auto;
        justify-items: center;
    }
    /* Reset grid column spans on mobile */
    .states-list .state-list-item:nth-child(1),
    .states-list .state-list-item:nth-child(2),
    .states-list .state-list-item:nth-child(3),
    .states-list .state-list-item:nth-child(4),
    .states-list .state-list-item:nth-child(5) {
        grid-column: 1 !important;
    }
    .state-list-item { 
        width: 390px !important;
        height: 220px !important;
        min-width: 390px !important;
        min-height: 220px !important;
        max-width: 390px !important;
        max-height: 220px !important;
        padding: 35px 28px !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    .state-list-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
    .state-list-content h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    .state-list-content .state-abbr {
        font-size: 0.95rem;
    }
    .state-list-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
        flex-grow: 1;
    }
    .state-link {
        margin-top: auto;
    }
    .state-list-marker { width: 40px; height: 40px; }
    .state-marker-dot { width: 14px; height: 14px; }
    
    /* Blog Page Mobile */
    .route-cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .route-card { padding: 20px; }
    .blog-route-finder { margin: -50px 15px 0; }
    .blog-pagination ul { flex-wrap: wrap; gap: 8px; }
    .blog-pagination a, .blog-pagination span { padding: 8px 12px; font-size: 0.85rem; }
    .route-states-badge { flex-wrap: wrap; gap: 10px; }
    .route-meta { flex-direction: column; gap: 10px; }
    
    /* Blog Hero Mobile */
    .blog-search-container { margin: 20px 15px 30px; }
    .blog-category-filters { padding: 0 15px; gap: 8px; }
    .category-filter-btn { padding: 10px 16px; font-size: 0.85rem; }
    
    /* Featured Post Mobile */
    .featured-post-card { grid-template-columns: 1fr; }
    .featured-post-image { min-height: 300px; }
    .featured-post-content { padding: 30px 20px; }
    .featured-post-content h2 { font-size: 1.6rem; }
    .featured-post-meta { flex-direction: column; align-items: flex-start; gap: 15px; }
    
    /* Blog CTA Strip Mobile */
    .blog-cta-content { flex-direction: column; text-align: center; gap: 20px; }
    .blog-cta-text { font-size: 1.2rem; }
    
    /* Sticky Bottom Bar - Show on Mobile */
    .sticky-bottom-bar { display: block; }
    
    /* Add padding to body to prevent content from being hidden behind sticky bar */
    .blog-index { padding-bottom: 0; }
    .explore-services-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .explore-services-visual { 
        min-height: 350px; 
        order: 1;
        width: 100%;
    }
    
    .explore-services-image-wrapper { 
        min-height: 350px; 
        width: 100%;
    }
    
    .explore-services-content { 
        order: 2;
        text-align: left;
        width: 100%;
    }
    
    .explore-services-title { 
        font-size: 2rem; 
    }
    
    .explore-services-subtitle { 
        font-size: 2.2rem; 
    }
    
    .explore-services-description { 
        max-width: 100%;
        text-align: left;
    }
    
    .btn-explore-services { 
        margin: 0;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .fact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 30px 0;
    }
    
    .fact-item:last-child {
        border-bottom: none;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: left;
    }
    
    .footer-logo {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .footer-contact-info {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-col {
        text-align: left;
    }
    /* Hide desktop version on mobile */
    .truck-banner-desktop {
        display: none !important;
    }
    
    /* Show mobile version */
    .truck-banner-mobile {
        display: block !important;
        padding: 20px 15px;
        min-height: 300px;
    }
    
    /* Mobile Truck Banner - Side overlay design */
    .truck-banner-mobile-container {
        position: relative;
        max-width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: none;
        background-color: var(--bg-white);
        min-height: 280px;
    }
    
    .truck-banner-mobile-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-radius: 16px;
        z-index: 1;
    }
    
    .truck-banner-mobile-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    }
    
    .truck-banner-mobile-content {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 10;
        padding: 0 25px;
        width: 100%;
        max-width: 90%;
    }
    
    .truck-banner-mobile-content h2 {
        width: 200px;
        max-width: 200px;
        font-size: 30px;
        line-height: 1.2;
        color: var(--color-primary);
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        z-index: 11;
    }
    
    .truck-banner-mobile-content .btn-cta {
        background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%);
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(169, 29, 58, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: auto;
        max-width: none;
        position: relative;
        z-index: 11;
    }
    
    .truck-banner-mobile-content .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(169, 29, 58, 0.4);
        filter: brightness(1.05);
    }
    .hero { padding-top: 40px; }
    .hero h1 { font-size: 2.5rem; }
}

/* --- 18. SERVICES PAGE STYLES --- */
.services-page {
    background: var(--bg-white);
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--color-bg-tint) 0%, rgba(79, 184, 217, 0.05) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%233D5A8F' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}


.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-description {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* All Services Grid */
.services-all-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Service Category Filters */
.services-category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0;
}

.category-filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.service-card-full {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-full.hidden {
    display: none;
}

.services-all-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-all-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 160px;
    height: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%233D5A8F' opacity='0.05'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-all-section .container {
    position: relative;
    z-index: 1;
}

.services-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card-full {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card-full:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--color-bg-tint);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.service-card-full:hover .service-image img {
    transform: scale(1.1);
}

.service-card-full .service-icon {
    display: none;
}

.service-card-full h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 25px 30px 15px;
    line-height: 1.3;
}

.service-card-full p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0 30px 20px;
    flex-grow: 1;
}

.service-cta-question {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 30px 25px;
    padding: 10px 15px;
    background: transparent;
    border-radius: 6px;
    border: 1px solid rgba(61, 90, 143, 0.15);
}

.service-card-full:hover .service-cta-question {
    color: var(--color-accent);
    border-color: rgba(169, 29, 58, 0.3);
}

/* SEO Content Section */
.services-seo-section {
    background: var(--color-bg-tint);
    position: relative;
    overflow: hidden;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.services-seo-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 140px;
    height: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%233D5A8F' opacity='0.07'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-seo-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 4%;
    width: 130px;
    height: 130px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-seo-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-seo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.services-seo-intro {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

/* Single block layout for service pages */
.services-seo-grid:has(.seo-content-block:only-child) {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content-block {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.seo-content-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.seo-content-block p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.seo-content-block a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(61, 90, 143, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.seo-content-block a:hover {
    color: var(--color-accent);
    text-decoration-color: rgba(169, 29, 58, 0.4);
}

.services-seo-cta {
    background: white;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.services-seo-cta p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.seo-cta-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.seo-cta-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}


/* How It Works Section */
.services-how-it-works-section {
    background: var(--color-bg-tint);
    position: relative;
    overflow: hidden;
}

.services-how-it-works-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-how-it-works-section .container {
    position: relative;
    z-index: 1;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-tertiary);
    line-height: 1;
    opacity: 0.12;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.how-it-works-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.how-it-works-step p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}


/* Single Service Page Styles */
/* Service Hero - Styled like quote-bar-container */
.service-hero {
    background: none !important;
    background-image: none !important;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.05'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 3%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.05'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.service-hero .hero-img-wrapper {
    position: relative;
    z-index: 5;
    width: 1000px;
    max-width: 1000px;
    margin: 40px 100px 0 100px;
    background: rgba(61, 90, 143, 0.95);
    backdrop-filter: blur(12px);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(61, 90, 143, 0.4);
    border: none;
    overflow: visible;
    margin-bottom: -31px;
}

.service-hero .hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 2;
}

.service-hero .hero-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 100%;
    background: radial-gradient(circle, rgba(33, 158, 188, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.service-hero .hero-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

.service-features-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--color-bg-tint) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 50px !important;
}

.service-features-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.04'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.service-features-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.service-features-intro {
    max-width: 800px;
    margin: 25px auto 0;
    color: var(--text-body);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(201, 61, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Feature number removed */

/* Icon hover animation removed */

.feature-icon i {
    display: block;
}

.service-feature-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.service-process-section {
    background: var(--color-bg-tint);
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-tertiary);
    line-height: 1;
    opacity: 0.12;
    margin-bottom: 20px;
}

.service-process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.service-process-step p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Service Image Section (Replaces Pricing) */
.service-image-section {
    background: var(--bg-white);
}

.service-image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-image-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-section-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-image-text {
    padding: 20px 0;
}

.service-image-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-image-description {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-image-note {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

.service-areas-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.service-areas-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.04'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.service-areas-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.service-areas-intro {
    max-width: 900px;
    margin: 25px auto 0;
    color: var(--text-body);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}

.service-areas-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-area-item {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.service-area-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(31, 58, 95, 0.15);
}

.service-area-item:hover::before {
    transform: scaleX(1);
}

.service-area-badge {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.area-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(31, 58, 95, 0.25);
    transition: all 0.3s ease;
}

.service-area-item:hover .area-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(31, 58, 95, 0.35);
}

.service-area-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-area-description {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-area-cta {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
}

.service-area-cta::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.service-area-cta:hover {
    color: var(--color-accent-hover);
}

.service-area-cta:hover::after {
    width: 100%;
}

/* SEO Content Section */
.service-seo-content-section {
    background: linear-gradient(180deg, var(--color-bg-tint) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.service-seo-content-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23A91D3A' opacity='0.04'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.service-seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-seo-text {
    text-align: center;
}

.service-seo-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 35px;
    line-height: 1.2;
}

.service-seo-description {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-seo-description p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 25px;
}

.seo-internal-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.seo-internal-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.service-seo-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.service-seo-cta-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c91d3a 100%);
    color: white !important;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(169, 29, 58, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.service-seo-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 29, 58, 0.45);
    filter: brightness(1.05);
}

.service-seo-secondary-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.seo-secondary-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.seo-secondary-link::after {
    content: '→';
    color: var(--color-accent);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.seo-secondary-link:hover {
    color: var(--color-accent);
}

.service-seo-description p:last-child {
    margin-bottom: 0;
}

/* Services Page CTA */

/* Services Page Mobile Responsiveness */
@media (max-width: 1024px) {
    .services-all-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-seo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .how-it-works-step:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
        margin: 0;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .how-it-works-step h3 {
        font-size: 1.2rem;
    }
    
    .how-it-works-step p {
        font-size: 0.95rem;
    }
    
    .service-hero {
        min-height: 500px;
    }
    
    .service-hero .hero-img-wrapper {
        width: calc(100% - 30px);
        max-width: 100%;
        margin: 30px 15px -20px 15px;
    }
    
    .service-hero .hero-img-wrapper img {
        height: 300px;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-feature-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .service-areas-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-area-item {
        padding: 30px 20px;
    }
    
    .service-areas-intro {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .service-seo-text {
        text-align: left;
        padding: 0 20px;
    }
    
    .service-seo-text .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .service-seo-description {
        padding: 0;
        margin: 0 auto 30px;
        text-align: left;
    }
    
    .service-seo-description p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .seo-internal-link {
        word-break: break-word;
    }
    
    .service-seo-cta-wrapper {
        align-items: stretch;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-seo-cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1rem;
        white-space: normal;
        display: block;
    }
    
    .service-seo-secondary-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .seo-secondary-link {
        display: inline-flex;
        align-items: center;
        text-align: left;
        padding: 12px 0;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .seo-secondary-link::after {
        content: '→';
        color: var(--color-accent);
        font-weight: 700;
    }
    
    .service-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-image-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-section-image {
        height: 350px;
    }
    
    .service-image-text .section-title {
        font-size: 2rem;
    }
    
    .service-image-description {
        font-size: 1.05rem;
    }
    
    .service-image-note {
        font-size: 1rem;
    }
    
}

@media (max-width: 768px) {
    .service-hero .hero-img-wrapper {
        width: calc(100% - 30px);
        max-width: 100%;
        margin: 30px 15px -20px 15px;
    }
    
    .service-hero .hero-img-wrapper img {
        height: 250px;
    }
    
    .services-hero {
        padding: 60px 0 40px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
    }
    
    .services-all-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-full {
        padding: 35px 25px;
    }
    
    .service-card-full .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card-full h3 {
        font-size: 1.2rem;
    }
    
    .service-categories-grid {
        gap: 25px;
    }
    
    .service-category-card {
        padding: 30px 25px;
    }
    
    
    .services-page .cta-title {
        font-size: 2rem;
    }
    
    .services-page .cta-description {
        font-size: 1.1rem;
    }
    
    .services-page .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-page .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-seo-title {
        font-size: 2rem;
    }
    
    .services-seo-intro {
        font-size: 1rem;
    }
    
    .seo-content-block {
        padding: 25px;
    }
    
    .seo-content-block h3 {
        font-size: 1.2rem;
    }
    
    .services-seo-cta {
        padding: 25px;
    }
    
    .services-seo-cta p {
        font-size: 1rem;
    }
    
    
    
    .services-category-filters {
        gap: 10px;
    }
    
    .category-filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .how-it-works-step h3 {
        font-size: 1.2rem;
    }
    
    /* Blog Sidebar */
    .blog-index .container[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .blog-sidebar {
        display: none;
    }
}

/* Blog Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-question-flow {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(61, 90, 143, 0.4);
    padding: 50px 40px !important;
    position: sticky;
    top: 100px;
}

.blog-question-flow .question-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.blog-question-flow .question-step.active {
    display: block;
}

.blog-question-flow .question-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.4;
}

.blog-question-flow .state-selection-btn,
.blog-question-flow .service-selection-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 18px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-question-flow .state-selection-btn:hover,
.blog-question-flow .service-selection-btn:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.blog-question-flow .state-selection-btn.selected,
.blog-question-flow .service-selection-btn.selected {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-hover);
}

.blog-question-flow .state-selection-btn.selected .state-name,
.blog-question-flow .state-selection-btn.selected .state-abbr,
.blog-question-flow .service-selection-btn.selected .service-name {
    color: white;
}

@media (max-width: 1024px) {
    .blog-index .container[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .blog-sidebar {
        display: none;
    }
}

/* ========================================
   LOCATION PAGE STYLES
   ======================================== */

.location-page {
    background: var(--bg-white);
}

/* Blog Hero Section - Rebuilt */
.blog-hero-section {
    padding: 50px 0 35px;
    background: radial-gradient(circle at 50% 50%, rgba(33, 158, 188, 0.1) 0%, rgba(79, 184, 217, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-body);
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.blog-hero-section .blog-search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-hero-section .blog-search-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    background: transparent;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-hero-section .blog-search-input::placeholder {
    color: var(--text-body);
    opacity: 0.6;
}

.blog-hero-section .blog-search-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-section .blog-search-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.blog-hero-section .blog-category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.blog-hero-section .blog-category-filters .category-filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.blog-hero-section .blog-category-filters .category-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.blog-hero-section .blog-category-filters .category-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Location Hero (for location pages) */
.location-hero,
.route-hero-section {
    padding: 100px 0 80px;
    background: radial-gradient(circle at 50% 50%, rgba(33, 158, 188, 0.1) 0%, rgba(79, 184, 217, 0.05) 50%, transparent 100%);
    position: relative;
    width: 100%;
}

.location-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.location-hero p {
    font-size: 1.3rem;
    color: var(--text-body);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Question Flow Widget */
.location-question-flow,
.route-question-flow {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(61, 90, 143, 0.4);
    padding: 50px 40px;
    position: relative;
    z-index: 10;
}

.question-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.question-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

/* State Selection Grid */
.state-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.state-selection-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.state-selection-btn:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.state-selection-btn.selected {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-hover);
}

.state-abbr {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.state-selection-btn.selected .state-abbr {
    color: white;
}

.state-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.state-selection-btn.selected .state-name {
    color: white;
}

/* Service Selection Grid */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.service-selection-grid::-webkit-scrollbar {
    width: 8px;
}

.service-selection-grid::-webkit-scrollbar-track {
    background: var(--color-bg-tint);
    border-radius: 4px;
}

.service-selection-grid::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.service-selection-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-selection-btn:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.service-selection-btn.selected {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    border-color: var(--color-accent);
    color: white;
    box-shadow: var(--shadow-hover);
}

.service-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.service-selection-btn.selected .service-name {
    color: white;
}

/* Question Summary */
.question-summary {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--color-bg-tint);
    border-radius: 12px;
}

.summary-text {
    font-size: 1.2rem;
    color: var(--text-body);
    line-height: 1.8;
}

.summary-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

#locationGetStartedBtn {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.city-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.city-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.city-item strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Location Page Responsive */
@media (max-width: 768px) {
    .blog-hero-section {
        padding: 40px 0 30px;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .blog-hero-section .blog-search-form {
        margin: 0 15px 15px;
    }
    
    .blog-hero-section .blog-category-filters {
        gap: 8px;
        padding: 0 15px;
    }
    
    .blog-hero-section .blog-category-filters .category-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .location-hero,
    .route-hero-section {
        padding: 80px 0 60px;
    }
    
    .location-hero h1,
    .route-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .location-hero p,
    .route-hero-section p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .location-question-flow,
    .route-question-flow {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .question-title {
        font-size: 1.4rem;
    }
    
    .state-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .state-selection-btn {
        padding: 20px 15px;
    }
    
    .state-abbr {
        font-size: 1.5rem;
    }
    
    .service-selection-grid {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
    
    .question-summary {
        padding: 20px;
    }
    
    .summary-text {
        font-size: 1rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .city-item {
        padding: 12px 15px;
    }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

.about-hero {
    background: radial-gradient(circle at 50% 50%, rgba(33, 158, 188, 0.1) 0%, rgba(79, 184, 217, 0.05) 50%, transparent 100%);
    padding: 80px 0 60px;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Story Section */
.about-story-section {
    background: white;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.about-story-visual {
    position: relative;
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Us Section */
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-why-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.about-why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about-why-card p {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 1rem;
}

/* Our Values Section */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-value-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.about-value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about-value-item p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 1rem;
}

/* Service Areas Section */
.about-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-area-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-area-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about-area-card p {
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-area-link {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.about-area-link:hover {
    color: var(--color-accent-hover);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    background: radial-gradient(circle at 50% 50%, rgba(33, 158, 188, 0.1) 0%, rgba(79, 184, 217, 0.05) 50%, transparent 100%);
    padding: 80px 0 60px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.contact-info-card p {
    color: var(--color-primary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--color-accent);
}

.contact-info-note {
    font-size: 0.85rem;
    color: var(--text-body);
    opacity: 0.7;
    text-align: right;
    margin-top: auto;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 18px;
        gap: 15px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
    }
    
    .contact-info-note {
        font-size: 0.8rem;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(61, 90, 143, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Business Hours Section */
.contact-hours-section {
    background: var(--color-bg-tint);
}

.contact-hours-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-hours-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.contact-hours-description {
    color: var(--text-body);
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hours {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
}

.hours-time {
    color: var(--text-body);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-story-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-why-grid,
    .about-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .about-value-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .value-number {
        min-width: auto;
    }
}

/* ============================================
   SINGLE BLOG POST PAGE STYLES
   ============================================ */

/* Hero Section */
.single-post-hero {
    position: relative;
    min-height: 400px;
    margin-bottom: 0;
}

.single-post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.single-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(61, 90, 143, 0.7) 0%, rgba(61, 90, 143, 0.5) 50%, rgba(61, 90, 143, 0.3) 100%);
    z-index: 1;
}

.single-post-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    color: white;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category-badge {
    background: var(--color-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.post-date,
.post-read-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.single-post-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    max-width: 900px;
}

/* Star blobs for hero */
.single-post-hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23FFFFFF' opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.single-post-hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 70 L20 90 L30 60 L10 40 L40 40 Z' fill='%23FFFFFF' opacity='0.08'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* Breadcrumbs */
.single-post-breadcrumbs {
    background: var(--color-bg-tint);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--color-accent);
}

.breadcrumb-separator {
    color: var(--text-body);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--text-body);
    font-weight: 600;
}

/* Main Content Layout */
.single-post-content-section {
    background: white;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: start;
}

.single-post-main {
    min-width: 0; /* Prevents grid overflow */
}

.single-post-article {
    background: white;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 40px 0 20px;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 30px 0 15px;
    line-height: 1.4;
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 25px 0 12px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--shadow-soft);
}

.post-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-body);
    background: var(--color-bg-tint);
    padding: 20px;
    border-radius: 8px;
}

.post-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.post-content a:hover {
    color: var(--color-accent);
}

/* Table of Contents */
.post-toc {
    background: var(--color-bg-tint);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.toc-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.toc-toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s;
    font-size: 1rem;
}

.toc-toggle.active {
    transform: rotate(180deg);
}

.toc-nav {
    max-height: 500px;
    overflow-y: auto;
    transition: max-height 0.3s ease;
}

.toc-nav.collapsed {
    max-height: 0;
    overflow: hidden;
}

.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav li {
    margin-bottom: 8px;
}

.toc-nav a {
    display: block;
    padding: 8px 12px;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toc-nav a:hover {
    background: white;
    color: var(--color-primary);
    padding-left: 16px;
}

.toc-nav a.toc-active {
    background: white;
    color: var(--color-primary);
    font-weight: 600;
    border-left: 3px solid var(--color-accent);
    padding-left: 13px;
}

.toc-nav ul ul {
    margin-left: 20px;
    margin-top: 5px;
}

.toc-nav ul ul a {
    font-size: 0.9rem;
    padding: 6px 12px;
}

/* Social Share */
.post-social-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-body);
}

.share-btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.share-linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: white;
}

.share-copy:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Sidebar */
.single-post-sidebar {
    position: sticky;
    top: 100px;
}

.blog-question-flow-wrapper {
    margin-bottom: 30px;
}

.sidebar-related-services {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--color-bg-tint);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.sidebar-service-link:hover {
    background: white;
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateX(5px);
}

.sidebar-service-link i {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.sidebar-cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-radius: 16px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.sidebar-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.sidebar-cta-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Related Sections */
.related-services-section,
.related-posts-section {
    position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-post-sidebar {
        position: static;
    }
    
    .single-post-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .single-post-hero {
        min-height: 300px;
    }
    
    .single-post-hero-content {
        padding: 60px 0 40px;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-meta {
        gap: 10px;
        font-size: 0.85rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.75rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .post-social-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumb-nav {
        font-size: 0.85rem;
    }
}

