/* ===============================
        GLOBAL RESET
=============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    margin: 0;
    overflow-x: hidden;
}

body {
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===============================
        HEADER - ALL PAGES
=============================== */

header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-grid {
    max-width: 1200px;
    margin: auto;
    padding: 8px 40px 12px;
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: start;
    column-gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: flex-start;
}

.logo {
    height: 95px;
    display: block;
}

.right-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone {
    background: #ec252f;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px 0 0 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    margin-top: 4px;
    margin-bottom: 18px;
}

.phone img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.hidden-number {
    display: none !important;
}

.menu {
    display: flex;
    list-style: none;
    gap: 34px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Century Gothic", Arial, sans-serif;
    align-items: center;
    justify-content: flex-end;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
}

.menu a:hover {
    color: #ec252f;
}

.menu a.active {
    color: #ec252f;
    font-weight: 600;
}

/* ===============================
        SHARED BUTTON
=============================== */

.btn-black {
    margin-top: 35px;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background: #222;
    color: #fff;
}

/* ===============================
        RED BANNER - ALL PAGES
=============================== */

.banner {
    background: #ec252f;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Montserrat", Arial, sans-serif;
}

.banner h2 {
    font-family: "Montserrat", Arial, sans-serif;
}

/* ===============================
        CONTACT STRIP - ALL PAGES
=============================== */

.contact-strip {
    background: #ec252f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 35px 20px;
}

.contact-strip div {
    font-size: 16px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-box img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.contact-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.contact-box p {
    font-size: 14px;
}

/* ===============================
        BRANDS - ALL PAGES
=============================== */

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #fff;
}

.brands img {
    width: 100%;
    max-width: 1100px;
    height: auto;
}

/* ===============================
        FOOTER - ALL PAGES
=============================== */

.site-footer{
    background:#071a33;
    color:#fff;
}

.footer-main{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
    padding:70px 0 55px;
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.2fr;
    gap:55px;
    align-items:start;
}

.footer-brand{
    max-width:300px;
}

.footer-logo{
    display:inline-block;
    margin-bottom:24px;
}

.footer-logo img{
    width:210px;
    height:auto;
    display:block;
}

.footer-brand > p{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.8;
}

.footer-licences{
    margin-top:22px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.14);
}

.footer-licences p{
    margin:0 0 7px;
    color:rgba(255,255,255,.58);
    font-size:12px;
    line-height:1.55;
}

.footer-column h3{
    position:relative;
    margin:0 0 28px;
    padding-bottom:12px;
    color:#fff;
    font-size:17px;
    font-weight:700;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:3px;
    background:#ec252f;
}

.footer-column ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-column li{
    margin-bottom:13px;
}

.footer-column a{
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.6;
    text-decoration:none;
    transition:color .25s ease, padding-left .25s ease;
}

.footer-column li a::before{
    content:"›";
    margin-right:9px;
    color:#ec252f;
    font-weight:700;
}

.footer-column li a:hover{
    color:#fff;
    padding-left:4px;
}

.footer-contact p{
    margin:0 0 14px;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.7;
}

.footer-contact strong{
    color:#fff;
}

.footer-contact p a{
    color:rgba(255,255,255,.72);
}

.footer-contact p a:hover{
    color:#ec252f;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:22px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    transition:background .25s ease, transform .25s ease, border-color .25s ease;
}

.footer-social a:hover{
    padding-left:0;
    background:#ec252f;
    border-color:#ec252f;
    transform:translateY(-3px);
}

.footer-social img{
    width:21px;
    height:21px;
    display:block;
    object-fit:contain;
}

.footer-bottom{
    padding:25px 20px 28px;
    border-top:1px solid rgba(255,255,255,.14);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.58);
    font-size:13px;
    line-height:1.7;
}

.footer-legal{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:10px 0;
}

.footer-legal a{
    color:rgba(255,255,255,.68);
    font-size:13px;
    text-decoration:none;
    transition:color .25s ease;
}

.footer-legal a:hover{
    color:#fff;
}

.footer-legal span{
    color:rgba(255,255,255,.28);
}

.footer-credit{
    font-size:12px !important;
    color:rgba(255,255,255,.42) !important;
}

/* ===============================
            TABLET
=============================== */

@media (max-width:950px){

    .footer-main{
        grid-template-columns:repeat(2, 1fr);
        gap:50px 45px;
    }

    .footer-brand{
        max-width:100%;
    }

}

@media (max-width:650px){

    .footer-main{
        width:min(100%, calc(100% - 40px));
        padding:55px 0 45px;
        grid-template-columns:1fr;
        gap:42px;
    }

    .footer-logo img{
        width:180px;
    }

    .footer-column h3{
        margin-bottom:22px;
    }

    .footer-bottom{
        padding:23px 20px 26px;
    }

    .footer-legal{
        flex-direction:column;
        gap:6px;
        margin:12px 0;
    }

    .footer-legal span{
        display:none;
    }
}

/* ===============================
        RESPONSIVE - GLOBAL
=============================== */

@media (max-width: 1024px) {
    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .contact-strip {
        gap: 50px;
    }

    .brands {
        gap: 35px;
    }

    .brands img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .nav-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr auto;
        padding: 10px 14px;
        align-items: center;
        column-gap: 12px;
        row-gap: 8px;
    }

    .logo-wrap {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .logo {
        height: 44px;
    }

    .right-wrap {
        display: contents;
    }

    .phone {
        justify-self: end;
        max-width: 120px;
        overflow: hidden;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 12px;
        margin: 0;
        line-height: 1;
    }

    .menu {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 14px;
        margin: 4px 0 0;
        padding: 0;
        font-size: 12px;
    }

    .menu li {
        list-style: none;
    }

    .btn-black {
        margin-top: 30px;
        padding: 12px 22px;
        font-size: 14px;
    }

    .banner {
        font-size: 16px;
        padding: 14px 12px;
    }

    .contact-strip {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .contact-strip div {
        font-size: 15px;
    }

    .contact-box:not(:last-child)::after {
        display: none;
    }

    .brands {
        gap: 25px;
        padding: 30px 20px;
    }

    .brands img {
        width: 100%;
        height: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px 30px;
    }

    .footer-links {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-copy {
        max-width: 500px;
        margin: auto;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-bottom {
        padding: 18px 16px 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}
