/* === GLOBAL SETTINGS === */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0b0b0b;
    color: #f1f1f1;
    scroll-behavior: smooth;
}

a {
    color: #f7c600;
    text-decoration: none;
}

a:hover {
    color: #ff2a2a;
}

/* === HEADER & NAVIGATION === */
header {
    background: linear-gradient(90deg, #111 0%, #b30000 50%, #111 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

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

.logo img {
    height: 60px;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px #ff2a2a);
}

.logo h1 {
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f7c600;
    text-shadow: 0 0 10px #f7c600;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('truck-bg.jpg') center/cover no-repeat;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1.5s ease;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #f7c600;
    text-shadow: 0 0 20px #b30000;
}

.hero-content p {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #ddd;
}

button {
    margin-top: 1.5rem;
    background: linear-gradient(90deg, #e30000, #b30000);
    border: none;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

button:hover {
    background: linear-gradient(90deg, #f7c600, #ff2a2a);
    transform: scale(1.05);
}

/* === SECTIONS === */
section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

section h2 {
    color: #f7c600;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}


section p {
    text-align: center;
    color: #ddd;
}

.info-section {
    background: #141414;
    border-radius: 10px;
    margin: 3rem auto;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    padding: 2.5rem;
}

/* === SERVICE GRID === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 1.5rem;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(247, 198, 0, 0.5);
}

.service-item h3 {
    color: #f7c600;
    margin-bottom: 0.8rem;
}

.service-item p {
    color: #ccc;
}

/* === CONTACT FORM === */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 2rem auto;
}

input, textarea {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    border: 1px solid #f7c600;
    outline: none;
}

/* === FOOTER === */
footer {
    background: #111;
    text-align: center;
    padding: 1.5rem 0;
    border-top: 3px solid #e30000;
    color: #bbb;
}

footer a {
    color: #f7c600;
    margin: 0 5px;
}

footer a:hover {
    color: #ff2a2a;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide the honeypot field from human users */
.honeypot {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    height: 0;
    width: 0;
    left: -5000px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
    nav ul {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        border-top: 2px solid #f7c600;
        padding-top: 1rem;
    }

    .hero {
        height: 70vh;
        padding: 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    form {
        width: 90%;
    }

    footer {
        font-size: 0.9rem;
    }
}