@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary-red: #8B0000;
    --charcoal-grey: #36454F;
    --light-grey: #D3D3D3;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal-grey);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal-grey);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--light-grey);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(54, 69, 79, 0.7), rgba(54, 69, 79, 0.5)), url('../images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-logo img {
    height: 100px;
    width: auto;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-truck-icon {
    display: inline-block;
    animation: truckIdle 2s ease-in-out infinite;
    margin-bottom: 15px;
}

.hero-truck-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-red);
}

.hero p {
    font-size: 20px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-trust {
    font-size: 16px;
    color: var(--light-grey);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.7s both;
}

/* Primary CTA Button */
.primary-cta {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 4px;
    transition: all var(--transition-base);
    animation: fadeInUp 1s ease 0.9s both;
    cursor: pointer;
    border: none;
}

.primary-cta:hover {
    background-color: #6B0000;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
}

.primary-cta:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

/* Sections Common */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--charcoal-grey);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0;
}

/* Services Section */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(54, 69, 79, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--charcoal-grey);
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-base);
}

.service-link:hover {
    color: #6B0000;
}

/* About Section */
.about {
    background-color: var(--light-grey);
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(54, 69, 79, 0.2);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--charcoal-grey);
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

/* Process Section */
.process {
    background-color: var(--white);
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    padding: 10px;
    background-color: var(--white);
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--charcoal-grey);
}

.process-step p {
    font-size: 14px;
    color: #666;
}

.process-step .step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--charcoal-grey);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.testimonials .section-title {
    color: var(--white);
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin-right: 15px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-info .date {
    font-size: 13px;
    color: var(--light-grey);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--light-grey);
    font-style: italic;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    background-color: var(--white);
}

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

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(54, 69, 79, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--charcoal-grey);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section */
.contact {
    background-color: var(--light-grey);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--charcoal-grey);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--charcoal-grey);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: var(--primary-red);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(54, 69, 79, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal-grey);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-grey);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-base);
}

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

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

.contact-form .primary-cta {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--charcoal-grey);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-grey);
    font-size: 14px;
    transition: color var(--transition-base);
}

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

.footer-contact p {
    font-size: 14px;
    color: var(--light-grey);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--light-grey);
}

/* Gallery Page */
.gallery-hero {
    background-image: linear-gradient(rgba(54, 69, 79, 0.7), rgba(54, 69, 79, 0.5)), url('../images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.gallery-hero h1 {
    font-size: 48px;
    color: var(--white);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 50px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 14px;
}

/* Page Header */
.page-header {
    background-color: var(--charcoal-grey);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--light-grey);
}

/* Services Page */
.services-hero {
    background-image: linear-gradient(rgba(54, 69, 79, 0.7), rgba(54, 69, 79, 0.5)), url('../images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.services-hero h1 {
    font-size: 48px;
    color: var(--white);
    text-align: center;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(54, 69, 79, 0.15);
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--charcoal-grey);
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--charcoal-grey);
}

.service-features li::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    margin-right: 12px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-red);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .primary-cta {
    background-color: var(--white);
    color: var(--primary-red);
}

.cta-section .primary-cta:hover {
    background-color: var(--light-grey);
}

/* About Page */
.about-hero {
    background-image: linear-gradient(rgba(54, 69, 79, 0.7), rgba(54, 69, 79, 0.5)), url('../images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 48px;
    color: var(--white);
    text-align: center;
}

.about-content-section {
    padding: 80px 0;
}

.about-content-section .about-content {
    margin-bottom: 60px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--light-grey);
    border-radius: 8px;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-heading);
}

.stat-item .label {
    font-size: 16px;
    color: var(--charcoal-grey);
    margin-top: 10px;
}

/* Contact Page */
.contact-hero {
    background-image: linear-gradient(rgba(54, 69, 79, 0.7), rgba(54, 69, 79, 0.5)), url('../images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--white);
    text-align: center;
}

.contact-content {
    padding: 80px 0;
}

.contact-content .contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item:nth-child(even) .service-detail-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--charcoal-grey);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-item .number {
        font-size: 36px;
    }
    
    .page-header h1,
    .hero h1,
    .gallery-hero h1,
    .services-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
