/* Basic Reset and Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Color Variables for easy theme change */
:root {
    --dark-blue: #0f1c48; /* Main background color from flyer */
    --yellow: #ffc107; /* Accent color for text and icons */
    --white: #ffffff;
}

/* Header/Hero Section - Replicating the Flyer's Look */
.hero {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 200px; /* Space for the truck image that would overlap */
    position: relative;
    overflow: hidden; /* To contain the truck visual element */
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Truck Image Placeholder (To simulate the visual placement) */
.truck-image-placeholder {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    height: 300px; /* Placeholder height */
    background: url('truck_image.jpg') no-repeat center bottom / contain; /* Replace with actual image path */
    background-color: rgba(255, 255, 255, 0.1); /* Visible placeholder */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-style: italic;
    font-size: 0.9em;
}


/* Services List (Icons) */
.services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Ensure it's over the truck image */
}

.service-item {
    display: flex;
    align-items: center;
    color: var(--yellow); /* Icons are yellow */
    text-align: left;
}

.service-item i {
    font-size: 2.5em;
    margin-right: 15px;
    width: 40px; /* Standardize icon width */
}

.service-item p {
    color: var(--white); /* Text is white */
    font-size: 1.1em;
    font-weight: 700;
}

/* Call to Action Button/Link */
.call-to-action {
    margin-bottom: 20px;
}

.phone-link {
    background-color: var(--dark-blue); /* Matches background, but can be changed */
    color: var(--white);
    font-size: 2.2em;
    font-weight: 900;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    border: 2px solid var(--yellow); /* Adding an outline for pop */
    margin-top: 10px;
}

.phone-link:hover {
    background-color: var(--yellow);
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Inquiry Box (Main Focus of the Request) */
.inquiry-form-section {
    background-color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.inquiry-form-section h2 {
    color: var(--dark-blue);
    font-size: 2em;
    margin-bottom: 25px;
}

.inquiry-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #ffd84f;
}

/* Footer Section */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

footer .company-name {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--yellow);
}

footer p {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.copyright {
    margin-top: 10px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-bottom: 40px; /* Less space needed on mobile */
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .phone-link {
        font-size: 1.5em;
        padding: 8px 15px;
    }

    /* Stack services vertically below the truck area */
    .services {
        position: static;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        gap: 10px 20px;
    }
    
    .service-item {
        flex-basis: 45%; /* Two items per row */
        justify-content: center;
    }

    .service-item i {
        font-size: 1.8em;
    }

    .service-item p {
        font-size: 1em;
    }

    .truck-image-placeholder {
        position: static;
        transform: none;
        margin: 20px auto 0 auto;
        height: 150px; /* Smaller placeholder on mobile */
    }

    .inquiry-box {
        padding: 20px;
    }
}