:root {
    --primary: #8B0000;
    --accent: #FFD700;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --border: #e1e5e9;
    --border-light: #f0f0f0;
    
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
}

.brand-logo {
    height: 64px;
    width: auto;
}

.brand-name {
    font-family: var(--font-mono);
    letter-spacing: -0.5px;
    font-size: 20px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-top: 0;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.highlight::after {
    display: none;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 0;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--primary);
    padding: 18px 36px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.primary-button:hover {
    background: #6d0000;
    transform: translateY(-2px);
}

.button-arrow {
    font-size: 18px;
    transition: var(--transition);
}

.primary-button:hover .button-arrow {
    transform: translateX(4px);
}

.phone-display {
    font-family: var(--font-mono);
    font-size: 18px;
    color: white;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-tile {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
    flex: 1;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-tile:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

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

.tile-number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-light);
}

.tile-icon {
    font-size: 24px;
}

.service-tile h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.service-tile p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.tile-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 32px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature {
    text-align: left;
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.feature-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feature-value {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contact-info p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

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

/* Service Link Cards */
.service-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.service-link-card:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.service-number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-light);
    width: 24px;
}

.service-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.link-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--text-light);
    transition: var(--transition);
}

.service-link-card:hover .link-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Footer */
.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand .brand-name {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        border-top: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.nav-menu-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.nav-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.nav-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .services-grid {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Fleet Section */
.fleet-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.fleet-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.fleet-container p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.fleet-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.video-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

.video-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 400;
    opacity: 0.9;
}

.company-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -2px;
}

.video-play-button {
    cursor: pointer;
    transition: var(--transition);
}

.play-button-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.play-button-circle:hover {
    background: #a00000;
    transform: scale(1.1);
}

.play-button-circle i {
    font-size: 24px;
    color: white;
    margin-left: 4px;
}

.youtube-background-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.youtube-background-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.background-video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.video-modal-content {
    position: relative;
    width: 95vw;
    max-width: 1400px;
    height: 80vh;
    margin: 0 auto;
}

.video-close-button {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.video-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .truck-image {
        max-width: 100%;
    }
    
    .company-title {
        font-size: 2rem;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
    
    .play-button-circle {
        width: 60px;
        height: 60px;
    }
    
    .video-modal-content {
        width: 95vw;
        height: 70vh;
        margin: 0 10px;
        min-height: 400px;
    }
    
    .video-close-button {
        top: -30px;
        right: 10px;
        font-size: 20px;
    }
    
    .play-button-circle i {
        font-size: 18px;
    }
    
    .fleet-container h2 {
        font-size: 2rem;
    }
    
    .fleet-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fleet-image {
        height: 250px;
    }
    
    .testimonials-container h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    padding: 16px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    display: inline-flex;
}

.google-guarantee i {
    font-size: 20px;
    color: #4285f4;
}

.google-guarantee span {
    font-size: 15px;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stars {
    margin-bottom: 16px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.customer-info {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.customer-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.customer-location {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.customer-project {
    font-size: 13px;
    color: var(--text-light);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Area Section */
.service-area-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.service-area-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-area-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.benefit-icon i {
    font-size: 20px;
    color: white;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-background {
    position: absolute;
