:root {
    /* PRIMARY BRAND COLORS */
    --junk-blue: #87DEF9;              /* Light blue accent - icons, highlights, action buttons */
    --core-blue: #0047BA;              /* Core brand blue - buttons, links, CTAs, focus rings */
    --deep-navy: #002A6E;              /* Deep navy - hover states, underlines, card accents */
    --footer-blue: #022465;            /* Footer background blue */
    --cta-hover-blue: #56D1F7;         /* CTA hover light blue */
    
    /* GRAYSCALE SYSTEM */
    --white: #FFFFFF;
    --off-white: #F5F5F5;              /* Modal backgrounds, text areas, footer text */
    --ultra-light-gray: #EBEBEB;       /* Disabled states, hover backgrounds, table borders */
    --medium-gray: #D2D2D2;            /* Text, placeholders */
    --medium-dark-gray: #848484;       /* Medium-dark gray */
    --dark-gray: #464646;              /* Dark gray */
    --very-dark-gray: #333333;         /* Bullets, blockquote captions, code backgrounds */
    --almost-black: #222222;            /* Footer background, card strip backgrounds */
    --black: #000000;                   /* Text base, buttons, max contrast */
    
    /* SEMANTIC COLORS */
    --error: #E70448;                  /* Error border, invalid fields */
    --error-bg: #FFF5F8;               /* Error highlight background */
    --warning: #E29700;                /* Warning color */
    --success: #73B355;                 /* Success color */
    
    /* LEGACY COMPATIBILITY (mapped to brand colors) */
    --primary-color: var(--core-blue);
    --secondary-color: var(--deep-navy);
    --accent-color: var(--junk-blue);
    --accent-hover: var(--cta-hover-blue);
    --text-dark: var(--black);
    --text-light: var(--medium-dark-gray);
    --bg-light: var(--off-white);
    --bg-white: var(--white);
    
    /* OVERLAYS & SHADOWS */
    --hero-overlay: rgba(0, 0, 0, 0.85);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 71, 186, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(0, 71, 186, 0.4);
    --focus-shadow: 0 0 0 3px rgba(0, 71, 186, 0.25);
    
    /* GRADIENTS */
    --gradient-primary: linear-gradient(135deg, var(--core-blue) 0%, var(--deep-navy) 100%);
    --gradient-accent: linear-gradient(135deg, var(--junk-blue) 0%, var(--cta-hover-blue) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 71, 186, 0.88) 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(135, 222, 249, 0.15) 0px, transparent 50%),
                      radial-gradient(at 100% 0%, rgba(0, 71, 186, 0.15) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, rgba(0, 42, 110, 0.15) 0px, transparent 50%),
                      radial-gradient(at 0% 100%, rgba(0, 0, 0, 0.1) 0px, transparent 50%);
    
    /* TRANSITIONS */
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Performance optimizations - GPU acceleration */
.btn-cta,
.btn-primary-cta,
.btn-secondary-cta,
.service-card,
.blog-post,
.testimonial-card,
.scroll-top,
.feature-box {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

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

/* Brand Typography - Futura PT with Arial fallback */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Futura PT font stack - using Arial as substitute when Futura PT not available */
:root {
    --font-primary: 'Futura PT', 'Futura', 'Arial', sans-serif;
    --font-body: 'Futura PT Book', 'Futura', 'Arial', sans-serif;
    --font-headline: 'Futura PT Condensed Extra Bold', 'Futura', 'Arial Black', 'Arial', sans-serif;
    --font-subhead: 'Futura PT Bold', 'Futura', 'Arial Black', 'Arial', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0;
}

/* Page Load Animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body.loaded {
    animation: pageLoad 0.6s ease-out;
}

/* Smooth fade-in for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Navbar */
.navbar {
    background: var(--black);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(135, 222, 249, 0.2);
    will-change: transform, padding;
    contain: layout style paint;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: var(--black);
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
    
    .hero {
        margin-top: 60px !important;
    }
}

.navbar-brand {
    font-weight: 800;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: var(--junk-blue) !important;
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--junk-blue);
}

.navbar-brand .logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-image {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .navbar-brand .logo-image {
        height: 40px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .navbar-brand .logo-image {
        height: 35px;
        max-width: 180px;
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.brand-name sup {
    font-size: 0.6em;
    vertical-align: super;
    font-weight: 400;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--junk-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.phone-number {
    margin-right: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1.1rem;
}

.phone-link:hover {
    color: var(--junk-blue) !important;
}

.phone-link i {
    color: var(--junk-blue);
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--white) !important;
    margin: 0 0.8rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0 !important;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--junk-blue);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: rgba(135, 222, 249, 0.5);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--junk-blue) !important;
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--junk-blue);
    color: var(--black);
    font-family: var(--font-subhead);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-bounce);
    border: 2px solid var(--junk-blue);
    box-shadow: 0 4px 20px rgba(135, 222, 249, 0.5), 0 0 0 0 rgba(135, 222, 249, 0.7);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease-out, height 0.8s ease-out;
    z-index: 0;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta:hover::after {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 71, 186, 0.6), 0 0 0 8px rgba(0, 71, 186, 0.1);
    color: white;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 71, 186, 0.4);
}

.btn-cta span,
.btn-cta i {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    position: relative;
    background: #f5f5f5;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 76px);
    position: relative;
}

.hero-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(2, 36, 101, 0.75) 100%);
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 100px rgba(135, 222, 249, 0.15);
    border-right: 4px solid var(--junk-blue);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 222, 249, 0.25) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.same-day-banner {
    background: var(--junk-blue);
    color: var(--black);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(135, 222, 249, 0.6), 0 0 0 0 rgba(135, 222, 249, 0.7);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite, floatBanner 3s ease-in-out infinite;
    transform-style: preserve-3d;
    border: 2px solid var(--junk-blue);
}

@keyframes floatBanner {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-8px) rotateX(2deg);
    }
}

.same-day-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.same-day-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.same-day-banner:hover::before {
    width: 300px;
    height: 300px;
}

.same-day-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 71, 186, 0.6), 0 0 0 8px rgba(0, 71, 186, 0.15);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(135, 222, 249, 0.6), 0 0 0 0 rgba(135, 222, 249, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(135, 222, 249, 0.8), 0 0 0 4px rgba(135, 222, 249, 0.4);
    }
}

.same-day-banner i {
    font-size: 1.2rem;
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.02em; /* Tracking -20 equivalent */
}

.hero-headline .line-1 {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-headline .line-2 {
    display: block;
    color: var(--accent-orange);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: var(--junk-blue);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 20px rgba(135, 222, 249, 0.5), 0 0 0 0 rgba(135, 222, 249, 0.7);
    border: 2px solid var(--junk-blue);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
    z-index: 0;
}

.btn-primary-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-cta:hover {
    background: var(--cta-hover-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(86, 209, 247, 0.6), 0 0 0 8px rgba(86, 209, 247, 0.15);
    color: var(--black);
}

.btn-primary-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary-cta span,
.btn-primary-cta i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover i {
    transform: translateX(4px);
}

.btn-secondary-cta {
    background: transparent !important;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.btn-secondary-cta,
.btn-secondary-cta * {
    color: white !important;
}

.btn-secondary-cta:hover {
    background: var(--white) !important;
    color: var(--core-blue) !important;
    transform: translateY(-4px) scale(1.05);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary-cta:hover,
.btn-secondary-cta:hover * {
    color: var(--core-blue) !important;
}

.btn-secondary-cta:hover i {
    transform: translateX(4px);
    color: var(--core-blue) !important;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: auto;
}

.feature-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-box i {
    font-size: 2rem;
    color: var(--junk-blue);
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: var(--font-subhead);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0;
}

.feature-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-image {
    position: relative;
    background: linear-gradient(135deg, rgba(135, 222, 249, 0.18) 0%, rgba(135, 222, 249, 0.25) 50%, rgba(135, 222, 249, 0.18) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(135, 222, 249, 0.3) 0%, rgba(135, 222, 249, 0.15) 70%, transparent 100%);
    z-index: 0;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    z-index: 1;
}

/* Truck illustration - top, centered */
.truck-illustration-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    order: 1;
}

/* Hand-drawn brand illustration - bottom, centered */
.brand-illustration-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    order: 2;
}

.hero-brand-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 30px rgba(135, 222, 249, 0.2));
    animation: floatBrandIllustration 6s ease-in-out infinite;
    opacity: 0.95;
}

@keyframes floatBrandIllustration {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

.truck-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 71, 186, 0.03) 10px, rgba(0, 71, 186, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 58, 154, 0.03) 10px, rgba(0, 58, 154, 0.03) 20px);
    opacity: 0.5;
}

.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s infinite ease-in-out;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-orange);
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Detailed Truck Illustration - right side */
.truck-illustration {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    animation: truckFloat 3s ease-in-out infinite;
}

.truck-body {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
}

.truck-cab {
    position: absolute;
    left: 0;
    width: 180px;
    height: 160px;
    background: linear-gradient(135deg, #0047ba 0%, #0056d6 100%);
    border-radius: 15px 15px 5px 5px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset -5px 0 10px rgba(0, 0, 0, 0.1);
}

.truck-windshield {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.6) 0%, rgba(135, 206, 250, 0.3) 100%);
    border-radius: 8px 8px 0 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.truck-door {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 60px;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.truck-handle {
    position: absolute;
    top: 60px;
    right: 5px;
    width: 8px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

.truck-bed {
    position: absolute;
    right: 0;
    width: 320px;
    height: 180px;
    background: linear-gradient(135deg, #0047ba 0%, #003a9a 100%);
    border-radius: 5px 15px 5px 5px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 -10px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.truck-bed-content {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.junk-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    animation: junkBounce 2s ease-in-out infinite;
}

.junk-item.item-1 {
    width: 40px;
    height: 50px;
    animation-delay: 0s;
}

.junk-item.item-2 {
    width: 50px;
    height: 60px;
    animation-delay: 0.3s;
}

.junk-item.item-3 {
    width: 45px;
    height: 55px;
    animation-delay: 0.6s;
}

@keyframes junkBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.truck-wheels {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 100px;
}

.wheel {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 50%;
    border: 8px solid #1a1a1a;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    animation: wheelRotate 2s linear infinite;
}

.wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #4a4a4a 0%, #2d2d2d 100%);
    border-radius: 50%;
}

.wheel-front {
    left: 50px;
}

.wheel-back {
    right: 50px;
}

@keyframes wheelRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.truck-logo {
    position: absolute;
    top: 30px;
    right: 20px;
    background: var(--core-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

@keyframes truckFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Hide truck illustration when actual image is used */
.truck-image-placeholder:has(.truck-image) .truck-illustration {
    display: none;
}

/* Responsive Hero */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 3rem 2rem;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero-image {
        min-height: 40vh;
        order: -1;
    }
    
    .hero-visual-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .brand-illustration-wrapper {
        padding: 1.5rem;
        order: 2;
    }
    
    .hero-brand-illustration {
        max-width: 350px;
        animation: none;
    }
    
    .truck-illustration-wrapper {
        padding: 1rem;
        order: 1;
    }
    
    .truck-illustration {
        width: 100%;
        max-width: 400px;
        height: 280px;
    }
    
    .truck-body {
        width: 100%;
        max-width: 400px;
        height: 160px;
        bottom: 60px;
    }
    
    .truck-cab {
        width: 35%;
        max-width: 140px;
        height: 120px;
    }
    
    .truck-windshield {
        top: 15px;
        left: 12px;
        width: 60px;
        height: 45px;
        border-width: 2px;
    }
    
    .truck-door {
        top: 15px;
        right: 12px;
        width: 45px;
        height: 75px;
    }
    
    .truck-handle {
        top: 45px;
        right: 4px;
        width: 6px;
        height: 15px;
    }
    
    .truck-bed {
        width: 65%;
        max-width: 260px;
        height: 140px;
    }
    
    .truck-bed-content {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 8px;
    }
    
    .junk-item.item-1 {
        width: 30px;
        height: 40px;
    }
    
    .junk-item.item-2 {
        width: 35px;
        height: 45px;
    }
    
    .junk-item.item-3 {
        width: 32px;
        height: 42px;
    }
    
    .truck-wheels {
        width: 100%;
        max-width: 400px;
        bottom: 45px;
        height: 80px;
    }
    
    .wheel {
        width: 70px;
        height: 70px;
        border-width: 6px;
    }
    
    .wheel::before {
        width: 35px;
        height: 35px;
    }
    
    .wheel-front {
        left: 40px;
    }
    
    .wheel-back {
        right: 40px;
    }
    
    .truck-logo {
        top: 20px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-headline {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .same-day-banner {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
    }
    
    .phone-link {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-box {
        padding: 1.25rem;
    }
    
    .hero-illustration-container {
        padding: 1.5rem 1rem;
    }
    
    .hero-illustration {
        max-width: 100%;
        animation: none; /* Disable animation on mobile for better performance */
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-light), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -0.02em; /* Tracking -20 equivalent */
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 71, 186, 0.4);
    animation: expandLine 1s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.service-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-elastic);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
    contain: layout style paint;
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at top right, rgba(0, 71, 186, 0.05) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 58, 154, 0.05) 0%, transparent 50%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 71, 186, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-lg);
    border-color: rgba(135, 222, 249, 0.2);
    background-image: 
        radial-gradient(circle at top right, rgba(135, 222, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 71, 186, 0.1) 0%, transparent 50%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--core-blue), var(--deep-navy));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--junk-blue), var(--core-blue));
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.2;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(135, 222, 249, 0.25);
}

.service-card h3 {
    font-family: var(--font-subhead);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--core-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
    position: relative;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section-header h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -0.02em; /* Tracking -20 equivalent */
}

.blog-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
}

.blog-post {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    will-change: transform;
    contain: layout style paint;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--core-blue), var(--deep-navy), var(--junk-blue));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.blog-post:hover::before {
    transform: scaleX(1);
}

.blog-post:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(135, 222, 249, 0.1);
}

.blog-post-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Different gradient patterns for each blog post */
.blog-post:nth-child(1) .blog-post-image {
    background: linear-gradient(135deg, var(--core-blue) 0%, var(--deep-navy) 50%, #001a4a 100%);
}

.blog-post:nth-child(2) .blog-post-image {
    background: linear-gradient(135deg, var(--core-blue) 0%, var(--junk-blue) 50%, var(--cta-hover-blue) 100%);
}

.blog-post:nth-child(3) .blog-post-image {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--core-blue) 50%, var(--junk-blue) 100%);
}

.blog-post:nth-child(4) .blog-post-image {
    background: linear-gradient(135deg, var(--core-blue) 0%, var(--junk-blue) 50%, var(--deep-navy) 100%);
}

.blog-post:nth-child(5) .blog-post-image {
    background: linear-gradient(135deg, var(--junk-blue) 0%, var(--core-blue) 50%, var(--cta-hover-blue) 100%);
}

.blog-post:nth-child(6) .blog-post-image {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--core-blue) 50%, var(--junk-blue) 100%);
}

.blog-post:nth-child(7) .blog-post-image {
    background: linear-gradient(135deg, #0047ba 0%, #003a9a 50%, #0056d6 100%);
}

.blog-post:nth-child(8) .blog-post-image {
    background: linear-gradient(135deg, #87def9 0%, #0047ba 50%, #003a9a 100%);
}

.blog-post:nth-child(9) .blog-post-image {
    background: linear-gradient(135deg, var(--core-blue) 0%, var(--junk-blue) 50%, var(--deep-navy) 100%);
}

.blog-post:nth-child(10) .blog-post-image {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--core-blue) 50%, var(--junk-blue) 100%);
}

.blog-post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(255, 255, 255, 0.08) 15px,
            rgba(255, 255, 255, 0.08) 30px
        );
    z-index: 1;
}

.blog-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    z-index: 2;
}

/* Add icon overlay to blog images */
.blog-post-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-image-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 3;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.blog-post-content {
    padding: 2.5rem;
}

.blog-post h2 {
    color: var(--core-blue);
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-post:hover h2 {
    color: var(--junk-blue);
}

.blog-post .meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-post .meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post .meta i {
    color: var(--accent-color);
    font-size: 1rem;
}

.blog-post p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-post-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-post .read-more {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post .read-more i {
    transition: transform 0.3s;
}

.blog-post .read-more:hover {
    gap: 1rem;
    color: var(--junk-blue);
}

.blog-post .read-more:hover i {
    transform: translateX(5px);
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.loading i {
    animation: spin 1s linear infinite;
}

#load-more-container {
    margin: 3rem 0;
    padding: 2rem;
}

#load-more-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 71, 186, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
    contain: layout style paint;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--junk-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 1;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-info h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
    scroll-margin-top: 80px; /* Offset for fixed navbar */
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-light), transparent);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--junk-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.contact-form:hover::before {
    transform: scaleX(1);
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    transition: var(--transition-smooth);
    font-size: 1rem;
    background: var(--bg-white);
    position: relative;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 71, 186, 0.1), 0 4px 12px rgba(0, 71, 186, 0.15);
    outline: none;
    background: var(--bg-white);
    transform: translateY(-2px);
}

.form-control:hover, .form-select:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 71, 186, 0.1);
}

.form-control:focus::placeholder, .form-select:focus::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--almost-black);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135, 222, 249, 0.5), transparent);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.footer a:hover {
    color: var(--junk-blue);
    transform: translateY(-2px);
}

.footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--junk-blue);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    z-index: 1000;
    box-shadow: var(--shadow-xl), 0 0 0 0 rgba(135, 222, 249, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    contain: layout style paint;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.scroll-top:hover::before {
    width: 200px;
    height: 200px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.5s ease-out;
}

.scroll-top:hover {
    background: var(--cta-hover-blue);
    transform: translateY(-8px) scale(1.15);
    box-shadow: var(--shadow-2xl), 0 0 0 8px rgba(135, 222, 249, 0.2);
}

.scroll-top i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 71, 186, 0.1);
    z-index: 9999;
    transform-origin: left;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--scroll-progress, 0%);
    background: linear-gradient(90deg, var(--junk-blue), var(--core-blue));
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(135, 222, 249, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Navbar mobile improvements */
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .phone-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .phone-link {
        justify-content: center;
        padding: 0.75rem 1rem;
        background: rgba(0, 71, 186, 0.1);
        border-radius: 8px;
        margin: 0.5rem 0;
    }
    
    .navbar-nav .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    /* Services section */
    .services-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 4rem 0;
    }
    
    /* Blog section */
    .blog-section {
        padding: 4rem 0;
    }
    
    .blog-section-header {
        margin-bottom: 3rem;
    }
    
    /* Contact section */
    .contact-section {
        padding: 4rem 0;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
    
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(0, 71, 186, 0.25);
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0;
        text-align: center;
    }
    
    .nav-item {
        margin-bottom: 0.25rem;
    }
    
    .hero {
        margin-top: 60px !important;
        padding: 1.5rem 0 2.5rem;
        min-height: auto;
    }
    
    .hero-container {
        min-height: auto;
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 1.5rem 1.25rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.25rem;
    }
    
    .feature-box i {
        font-size: 1.75rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .same-day-banner {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .same-day-banner i {
        font-size: 1rem;
    }
    
    /* Services */
    .services-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        aspect-ratio: 1 / 1;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-info p {
        font-size: 0.85rem;
    }
    
    /* Blog section */
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .blog-section-header h2 {
        font-size: 2rem;
    }
    
    .blog-section-header p {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    #load-more-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .blog-post {
        margin-bottom: 2rem;
    }
    
    .blog-post-image {
        height: 220px;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-post .meta {
        font-size: 0.85rem;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .blog-post p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    /* Contact form */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin: 0 1rem;
    }
    
    .contact-form .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    
    .contact-form .col-md-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-cta.btn-lg {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer a {
        display: block;
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.5rem;
    }
    
    .navbar-brand i {
        font-size: 1.25rem;
    }
    
    .hero {
        margin-top: 55px !important;
        padding: 1rem 0 2rem;
    }
    
    .hero-content {
        padding: 1.25rem 1rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .same-day-banner {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .feature-box {
        padding: 1rem;
    }
    
    .feature-box i {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 0.95rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
    
    .section-header h2,
    .blog-section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p,
    .blog-section-header p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        aspect-ratio: 1 / 1;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 1.25rem;
    }
    
    .blog-post h2 {
        font-size: 1.35rem;
    }
    
    .contact-form {
        padding: 1.5rem 1.25rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 1.25rem;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    .footer a {
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones in portrait, less than 576px) */
@media (max-width: 576px) {
    .truck-illustration {
        height: 180px;
    }
    
    .truck-body {
        max-width: 240px;
        height: 100px;
        bottom: 40px;
    }
    
    .truck-cab {
        max-width: 90px;
        height: 75px;
    }
    
    .truck-windshield {
        top: 10px;
        left: 8px;
        width: 35px;
        height: 28px;
    }
    
    .truck-door {
        top: 10px;
        right: 8px;
        width: 28px;
        height: 50px;
    }
    
    .truck-bed {
        max-width: 150px;
        height: 85px;
    }
    
    .truck-wheels {
        max-width: 240px;
        bottom: 30px;
        height: 50px;
    }
    
    .wheel {
        width: 40px;
        height: 40px;
        border-width: 4px;
    }
    
    .wheel::before {
        width: 20px;
        height: 20px;
    }
    
    .wheel-front {
        left: 25px;
    }
    
    .wheel-back {
        right: 25px;
    }
    
    .truck-logo {
        top: 10px;
        right: 8px;
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .junk-item {
        display: none; /* Hide junk items on very small screens */
    }
}

/* Medium devices (tablets in portrait, 992px to 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
    .truck-illustration {
        height: 320px;
    }
    
    .truck-body {
        max-width: 450px;
        height: 180px;
    }
    
    .truck-cab {
        max-width: 160px;
        height: 140px;
    }
    
    .truck-bed {
        max-width: 290px;
        height: 160px;
    }
    
    .wheel {
        width: 85px;
        height: 85px;
    }
}

