/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #eef6ff;
    color: #0f172a;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 75px 0;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

/* HEADER */
header {
    background: #ffffff;
    padding: 22px 0;
    border-bottom: 1px solid #dbeafe;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #2563eb;
}

nav a {
    color: #0f172a;
    text-decoration: none;
    margin-left: 24px;
    font-weight: bold;
}

nav a:hover {
    color: #2563eb;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #dbeafe, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 21px;
    color: #334155;
    margin-bottom: 30px;
}

.hero-points {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-points span {
    background: #ffffff;
    color: #2563eb;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

/* QUOTE FORM */
.quote-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
}

.quote-box h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 28px;
}

.quote-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-box input,
.quote-box select {
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 16px;
}

.quote-box button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.quote-box button:hover {
    background: #1d4ed8;
}

/* COVERAGE */
#coverage {
    background: #ffffff;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.coverage-grid div {
    background: #eff6ff;
    border-left: 5px solid #2563eb;
    padding: 22px;
    border-radius: 12px;
    font-weight: bold;
}

/* SERVICES */
.services-list {
    max-width: 850px;
    margin: auto;
}

.service-row {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.service-row h3 {
    color: #2563eb;
    margin-bottom: 8px;
}

/* PROCESS */
#process {
    background: #0f172a;
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.process-grid div {
    background: #1e293b;
    padding: 28px;
    border-radius: 18px;
}

.process-grid strong {
    display: inline-block;
    background: #2563eb;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    margin-bottom: 12px;
}

/* CONTACT */
.contact-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

/* FOOTER */
footer {
    background: #020617;
    color: #cbd5e1;
    text-align: center;
    padding: 35px 20px;
}

.hero-truck {
    margin-top: 35px;
}

.hero-truck img {
    width: 100%;
    max-width: 640px;
    height: 300px;
    object-fit: cover;
    object-position: right center;
    display: block;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
}

/* MAP */

#map {
    background: #ffffff;
}

.map-text {
    text-align: center;
    color: #475569;
    margin-bottom: 30px;
}

.map-wrapper {
    max-width: 1000px;
    margin: auto;
}

.map-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 8px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .coverage-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}