* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f8;
    color: #071827;
}

header {
    background: #06192c;
    color: white;
    padding: 14px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    .logo div {
    line-height: 1;
}

.logo h2 {
    margin-bottom: 4px;
}

..logo span {
    display: block;
    margin-top: -10px;
}

}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.logo h2 {
    font-size: 24px;
    text-transform: uppercase;
}

.logo span {
    color: #d99a28;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 28px;
    font-weight: bold;
}

nav a:hover {
    color: #d99a28;
}

.hero {
    min-height: 88vh;
    background: linear-gradient(90deg, #ffffff 0%, #f1f1f1 55%, #e6e6e6 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 7%;
}

.hero-text {
    max-width: 650px;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero h1 span {
    color: #d99a28;
    display: block;
}

.hero h3 {
    font-size: 30px;
    margin: 20px 0;
    color: #071827;
}

.hero h3::after {
    content: "";
    display: block;
    width: 180px;
    height: 3px;
    background: #d99a28;
    margin-top: 12px;
}

.hero p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-bg-truck {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 58%;
    opacity: 0.28;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 8px 8px 8px 0;
}

.red {
    background: #df2b2b;
}

.green {
    background: #20c461;
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.services,
.gallery,
.contact {
    padding: 70px 7%;
    text-align: center;
}

h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #d99a28;
    margin: 12px auto 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    border-bottom: 5px solid #d99a28;
}

.card h3 {
    color: #df2b2b;
    margin-bottom: 15px;
}

.card p {
    line-height: 1.7;
}

.regions {
    background: #06192c;
    color: white;
    padding: 65px 7%;
    text-align: center;
}

.regions h2 {
    color: #d99a28;
    margin-bottom: 12px;
}

.regions h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.regions p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
    margin: auto;
}

.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.contact {
    background: #06192c;
    color: white;
}

.contact h2 {
    color: white;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.contact-boxes div {
    background: rgba(255,255,255,.08);
    padding: 25px;
    border-radius: 15px;
}

.contact-boxes h3 {
    color: #d99a28;
    margin-bottom: 12px;
}

footer {
    background: #0b0b0b;
    color: white;
    padding: 50px 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

footer img {
    width: 85px;
    border-radius: 50%;
    margin-bottom: 15px;
}

footer h3 {
    color: #d99a28;
    margin-bottom: 15px;
}

footer p,
footer a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.copy {
    background: #050505;
    color: #aaa;
    text-align: center;
    padding: 16px;
}

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: white;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    text-align: center;
    line-height: 62px;
    font-size: 32px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
}

@media(max-width: 900px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h3 {
        font-size: 23px;
    }

    .hero-bg-truck {
        width: 100%;
        opacity: 0.18;
    }

    .cards,
    .gallery-grid,
    .contact-boxes,
    footer {
        grid-template-columns: 1fr;
    }
}.creator{
    text-align:center;
    padding:15px;
    font-size:13px;
    color:#bdbdbd;
    background:#071426;
}

.creator a{
    color:#d4a017;
    text-decoration:none;
    font-weight:600;
}

.creator a:hover{
    color:white;
}   