/* ==================================================
   1. RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ns-blue);
    background: var(--ns-light);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

a[x-apple-data-detectors],
a[x-apple-data-detectors] * {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

/* ==================================================
   2. BRAND VARIABLES
================================================== */

:root {
    --ns-blue: #2f3976;
    --ns-blue-dark: #202858;
    --ns-red: #b62c32;
    --ns-red-dark: #9f232b;
    --ns-white: #ffffff;
    --ns-light: #f7f7f7;
    --ns-soft: #eef0f7;
    --ns-shadow: 0 12px 30px rgba(0,0,0,0.18);
    --ns-container: 1200px;
}

/* ==================================================
   3. GLOBAL TOP STRIP
================================================== */

.top-strip {
    width: 100%;
    height: 38px;
    background: var(--ns-red);
    color: var(--ns-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.top-strip-track {
    display: flex;
    width: max-content;
    animation: topStripMove 32s linear infinite;
}

.top-strip-track span {
    flex-shrink: 0;
    padding-right: 80px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

@keyframes topStripMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==================================================
   4. GLOBAL BUTTONS
================================================== */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.btn-primary {
    background: var(--ns-red);
    color: var(--ns-white);
}

.btn-primary:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--ns-blue);
    color: var(--ns-blue);
}

.btn-secondary:hover {
    background: var(--ns-blue);
    color: var(--ns-white);
}

/* ==================================================
   5. GLOBAL HEADER / MENU
================================================== */

.container {
    width: 90%;
    max-width: var(--ns-container);
    margin: 0 auto;
}

.site-header {
    width: 100%;
    background: rgba(47,57,118,0.97);
    color: var(--ns-white);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--ns-shadow);
}

.site-nav {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: auto;
    height: 92px;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.site-menu a {
    color: var(--ns-white);
    font-size: 15px;
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.site-menu a:hover,
.site-menu a.active {
    border-bottom-color: var(--ns-white);
}

.site-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-red);
    color: var(--ns-white);
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-call:hover {
    background: var(--ns-red-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ns-white);
    font-size: 32px;
    line-height: 1;
}

.mobile-call{
    display:none;
}

/* ==================================================
   6.GLOBAL BRANDS
================================================== */

.global-brands {
    padding: 80px 0;
    background: var(--ns-white);
    overflow: hidden;
}

.global-brands-header {
    text-align: center;
    margin-bottom: 55px;
}

.global-brands-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    margin-bottom: 18px;
}

.global-brands-header p {
    color: var(--ns-blue);
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
}

.brands-track img {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: .55;
    transition: .35s ease;
}

.brands-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollBrands {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==================================================
   7. GLOBAL FOOTER
================================================== */

.site-footer {
    background: var(--ns-blue-dark);
    color: var(--ns-white);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-logo img {
    width: 140px;
    height: auto;
    margin: 0 0 18px 18px;
}

.footer-about p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    max-width: 340px;
}

.footer-column h3 {
    font-size: 16px;
    color: var(--ns-white);
    margin-bottom: 18px;
}

.footer-column a,
.footer-column p,
.footer-column li {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column a:hover {
    color: var(--ns-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.16);
    padding-top: 18px;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.footer-licences p {
    color: rgba(255,255,255,.82);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social img {
    width: 26px;
    height: 26px;
    display: block;
    transition: .25s ease;
}

.footer-social a:hover img {
    transform: translateY(-2px);
    opacity: .8;
}

/* ==================================================
   8. FORM MESSAGES
================================================== */

.form-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.form-message-success {
    background: #eef8f1;
    color: #2d6a39;
    border: 1px solid #b9dfc2;
}

.form-message-error {
    background: #fff2f2;
    color: #b62c32;
    border: 1px solid #efb3b3;
}

/* ==================================================
   9. GLOBAL RESPONSIVE
================================================== */

@media (max-width: 900px) {

    /* Header */

    .site-nav {
        min-height: 82px;
        position: relative;
    }

    .site-logo img {
        height: 76px;
    }

    .menu-toggle {
        display: block;
    }

    .site-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(47,57,118,0.98);
        box-shadow: var(--ns-shadow);
        padding: 12px 0;
        z-index: 30;
    }

    .site-menu.active {
        display: flex;
    }

    .site-menu a {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-bottom: none;
    }

    .site-call {
        padding: 11px 16px;
        font-size: 13px;
    }
	
	.mobile-call {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-white);
    font-size: 27px;
    line-height: 1;
    text-decoration: none;
}

    /* Brands */

    .global-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    /* Top Strip */

    .top-strip {
        height: 34px;
    }

    .top-strip-track span {
        font-size: 12px;
        padding-right: 48px;
    }

    /* Header */

    .site-nav {
        min-height: 74px;
    }

    .site-logo img {
        height: 64px;
    }

    .site-call {
        display: none;
    }

    /* Brands */

    .global-brands {
        padding: 55px 0;
    }

    .global-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .global-brands-header h2 {
        font-size: 28px;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}