:root {
    --ns-bg: #ffffff;
    --ns-text: #111111;
    --ns-muted: #666666;
    --ns-border: #191a22;
    --ns-yellow: #f7d73b;
    --ns-yellow-dark: #b48b00;
    --ns-footer-bg: #222222;
    --ns-radius-lg: 24px;
    --ns-radius-md: 18px;
    --ns-radius-sm: 10px;
}

/* RESET / BASE
   ---------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ns-text);
    background-color: var(--ns-bg);
}

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

a {
    color: inherit;
}

/* GLAVNI CONTAINER */

.ns-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.ns-main {
    padding-top: 40px;
}

/* HEADER
   ---------------------------------------------- */

.ns-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ns-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
}

.ns-logo {
    display: inline-flex;
    align-items: center;
}

.ns-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ns-nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.ns-nav-menu a {
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
}

.ns-nav-menu .current-menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.ns-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #000;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.ns-nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.ns-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
}

/* BUTTONS & LABELS
   ---------------------------------------------- */

.ns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.ns-btn--yellow {
    background: var(--ns-yellow);
    border: 1px solid #e0b800;
}

.ns-btn--dark {
    background: #111111;
    color: #ffffff;
}

.ns-section-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 18px;
}

.ns-section-label--yellow {
    background: var(--ns-yellow);
}

.ns-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
}

.ns-chip--yellow {
    background: var(--ns-yellow);
}

.ns-chip--small {
    padding: 4px 10px;
}

/* ===================================================== */
/* HERO – jednostavno: levo tekst, desno slika           */
/* ===================================================== */

.ns-hero {
    padding: 40px 0 40px;
}

.ns-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Tekst levo */
.ns-hero-text {
    flex: 1 1 50%;
    max-width: 590px;
}

.ns-hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 24px;
}

.ns-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ns-muted);
    margin: 0 0 32px;
}

/* Slika desno */
.ns-hero-visual {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
}

.ns-hero-visual img {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
}

/* TABLET & MOBILE – stack, normalne margine, bez cropa */
@media (max-width: 960px) {
    .ns-hero {
        padding: 30px 0 30px;
    }

    .ns-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 26px;
    }

    .ns-hero-text {
        max-width: 100%;
    }

    .ns-hero-visual {
        justify-content: center;
        width: 100%;
    }

    .ns-hero-visual img {
        max-width: 100%;
    }
}

/* GENERIC SECTION WRAPPER
   ---------------------------------------------- */

.ns-section {
    padding: 56px 0;
}

.ns-section--divider {
    border-top: 1px solid #dddddd;
}

.ns-section-heading {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
}

.ns-section-heading--contact {
    justify-content: space-between;
}

.ns-section-subtitle {
    font-size: 13px;
    color: var(--ns-muted);
}

/* NEWS CARDS GRID (Info servis vesti)
   ---------------------------------------------- */

.ns-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ns-news-card {
    border-radius: var(--ns-radius-lg);
    border: 1px solid var(--ns-border);
    padding: 20px 22px;
    background: #ffffff;
}

.ns-news-card--highlight {
    background: #fff4f3;
    border-color: #f7c2bd;
}

.ns-news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 12px;
}

.ns-news-card-date {
    color: var(--ns-muted);
}

.ns-news-card-title {
    font-size: 15px;
    margin: 0 0 10px;
}

.ns-news-card-excerpt {
    font-size: 13px;
    color: var(--ns-muted);
    margin-bottom: 18px;
}

.ns-news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    text-decoration: none;
}

.ns-news-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
	background-color: #191a22;
	color: var(--ns-yellow);
}

.ns-news-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 22px;
    margin-top: 18px;
}

.ns-news-arrow {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.ns-news-arrow:focus {
    outline: none;
}

.ns-news-arrows {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

/* ===================================================== */
/* VIRTUELNI ŠALTER */
/* ===================================================== */

.ns-virtual {
    padding: 100px 0;
}

.ns-virtual-wrapper {
    display: flex;
    border-radius: 38px;
    overflow: hidden;
}

/* LEVA STRANA (žuti blok) */
.ns-virtual-left {
    flex: 1;
    background: #f4d43c;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ns-virtual-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
}

.ns-virtual-text {
    font-size: 18px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 35px;
}

/* CTA dugmad */
.ns-virtual-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ns-virtual-actions .ns-link {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

/* DESNA STRANA (siva kartica) */
.ns-virtual-right {
    flex: 1;
    background: #f3f3f3;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-virtual-phone img {
    max-width: 360px;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ns-virtual-wrapper {
        flex-direction: column;
    }

    .ns-virtual-left,
    .ns-virtual-right {
        padding: 50px 30px;
    }

    .ns-virtual-phone img {
        max-width: 300px;
    }
}

/* KONTAKT SEKCIJA (kartica sa sivim / pattern backgroundom)
   ---------------------------------------------- */

.ns-contact-section .ns-contact-card {
    border-radius: var(--ns-radius-lg);
    background-color: #f5f5f5;
    padding: 40px 48px;
    background-image: radial-gradient(circle at 0 0, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 48px 48px;
    background-repeat: repeat;
}

/* ako postoji uploadovan pattern, inline style ce zameniti background-image,
   a ovde samo kontrolišemo repeat/size */
.ns-contact-card--pattern {
    background-repeat: repeat;
    background-size: auto;
}

.ns-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
}

.ns-contact-address,
.ns-contact-phone {
    font-size: 14px;
    margin: 10px 0;
}

.ns-contact-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.ns-contact-pill p {
    margin: 8px 0 0;
    font-size: 14px;
}


/* FOOTER
   ---------------------------------------------- */

.ns-footer {
    background: var(--ns-footer-bg);
    color: #ffffff;
    padding: 40px 0 24px;
    margin-top: 40px;
}

.ns-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ns-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: flex-start;
}

.ns-footer-contact p {
    font-size: 13px;
    margin: 4px 0;
}

.ns-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.ns-footer-menu a {
    text-decoration: none;
}

.ns-footer-social {
    display: flex;
    gap: 10px;
}

.ns-footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #f7d73b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
}

.ns-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* RESPONSIVE
   ---------------------------------------------- */

@media (max-width: 992px) {
    .ns-virtual-inner {
        grid-template-columns: 1fr;
    }
    .ns-virtual-visual {
        padding: 40px 20px;
    }
}

@media (max-width: 960px) {

    .ns-header-inner {
        min-height: 72px;
    }

    .ns-nav-toggle {
        display: flex;
    }

    .ns-nav {
        position: absolute;
        inset-inline: 0;
        top: 72px;
        background: #ffffff;
        border-bottom: 1px solid #ececec;
        display: none;
    }

    .ns-nav-menu {
        flex-direction: column;
        padding: 12px 20px 16px;
    }

    .ns-nav-cta {
        display: none;
    }

    .ns-main {
        padding-top: 80px;
    }

    .ns-news-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ns-contact-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .ns-footer-top {
        grid-template-columns: minmax(0, 1fr);
    }

    .ns-footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}
