* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
}

.site-header {
    width: 100%;
}

/* TOP RED BAR */
.top-bar {
    background: #e31e24;
    color: #fff;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.6);
}

.top-right span {
    margin-left: 20px;
}

/* MAIN BLACK BAR */
.main-bar {
    background: #000;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 18px;
    font-size: 16px;
}

.nav-links a:hover {
    color: #e31e24;
}

.contact-btn {
    background: #e31e24;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.contact-btn:hover {
    background: #c9181d;
}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 992px) {

    .top-bar {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-right span {
        margin-left: 10px;
    }

    .main-bar {
    flex-direction: row;          /* KEEP ROW */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}


    .nav-links {
        display: none; /* hidden for mobile */
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width: 576px) {

    .top-bar {
        font-size: 13px;
    }

    .top-left {
        gap: 10px;
    }

    .logo img {
        height: 34px;
    }

    .main-bar {
    padding: 12px 15px;
}

.contact-btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}
}
